/*
Theme Name:kidsmoney
Template:blankslate
Version:0.0.1
*/

#header {
  display: none;
}

:root {
  --orange: #F5A623;
  --orange-dark: #E8900A;
  --orange-light: #FDE8C0;
  --green: #4CAF50;
  --green-light: #8BC34A;
  --teal: #26C6DA;
  --teal-bg: #B2EBF2;
  --pink: #F48FB1;
  --pink-light: #FCE4EC;
  --yellow: #FFD600;
  --blue-light: #B2EBF2;
  --bg-polka: #FAE5C7;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-mid: #555555;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --font-main: "fot-tsukuardgothic-std", "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
}

/* ============================================================
   RESET / COMMON
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section-inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  width: 100%;
  margin: 20px 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.underline-accent {
  width: 100%;
  height: 4px;
  margin-bottom: 24px;
  background: var(--orange);
  border-radius: 2px;
}

.underline-accent.green {
  background: var(--green);
}

.underline-accent.pink {
  background: var(--pink);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--orange);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(245,166,35,0.35);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 18px rgba(245,166,35,0.45);
  transform: translateY(-2px);
}

.btn-primary.btn-large {
  padding: 18px 56px;
  font-size: 18px;
}

.btn-contact {
  display: inline-block;
  padding: 10px 24px;
  background: var(--orange);
  border-radius: 50px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-orange-small {
  display: inline-block;
  margin: 0 auto;
  padding: 8px 20px;
  background: var(--orange);
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.btn-full {
  display: block;
  text-align: center;
}

.disabled,
.btn-primary.disabled,
.btn-primary.disabled:hover {
  background: #CCC;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: none;
  height: 200px;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 18px;
}

.header-logo img {
  width: auto;
  height: 65px;
}

.header-nav a:hover {
  color: var(--orange);
}

/* PC表示：メニュー部分を白い角丸カプセルにする */
@media screen and (min-width: 901px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    box-shadow: none;
  }

  .header-inner {
    max-width: none;
    height: 130px;
    padding: 0 4.5vw;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 260px;
    align-items: center;
    gap: 28px;
  }
}

.header-logo {
  position: relative;
  z-index: 3;
}

.header-logo img,
.header-logo .custom-logo {
  width: auto;
  height: 95px;
  max-height: 75px;
}

.header-nav {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 42px;
}

.header-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -188px;
  bottom: 0;
  z-index: -1;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.header-nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.header-nav a {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s;
}

.btn-contact:not(.sp-nav-btn) {
  position: relative;
  z-index: 2;
  width: 150px;
  min-width: 150px;
  height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff9418;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

/* PC幅が少し狭い時の調整 */
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 180px minmax(0, 1fr) 210px;
    gap: 18px;
    padding: 0 24px;
  }

  .header-logo img,
  .header-logo .custom-logo {
    height: 72px;
    max-height: 72px;
  }

  .header-nav {
    height: 68px;
    padding-left: 28px;
  }

  .header-nav::before {
    right: -232px;
  }

  .header-nav ul {
    gap: 22px;
  }

  .header-nav a {
    font-size: 1rem;
  }

  .btn-contact:not(.sp-nav-btn) {
    height: 52px;
    min-width: 150px;
    padding: 0 18px;
    font-size: 0.95rem;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* スマホ用ドロワーナビ */
.sp-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: transform 0.3s, opacity 0.3s;
}

.sp-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-nav-list li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #F5F5F5;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}

.sp-nav-list li a:hover {
  color: var(--orange);
}

.sp-nav-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
}

/* ============================================================
   HERO
   ※ 高さをスライダー画像に合わせて白い余白を解消
============================================================ */
.hero {
  position: relative;
  height: 720px;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
  background-image: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide,
.hero-slide picture {
  height: 100%;
  min-height: 0;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 120px 5rem 190px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.hero-text {
  max-width: 680px;
}

.hero-deco {
  margin-bottom: 16px;
}

.deco-flowers {
  width: 120px;
}

.hero-lead {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

.hero-title {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
}

.hero-title .highlight {
  position: relative;
  color: var(--orange);
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: var(--orange-light);
  border-radius: 2px;
}

.hero-desc {
  margin-bottom: 32px;
  color: var(--text-mid);
  font-size: 1.5rem;
}

.btn-hero {
  position: relative;
  z-index: 10;
  margin-top: 20px;
  font-size: 25px;
  border: 3px solid var(--white);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image > img:first-child {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-chara {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
}

.hero-slider .slick-dots {
  bottom: 70px;
  left: auto;
  right: 8%;
  z-index: 5;
  width: auto;
}

.hero-slider .slick-dots li button:before {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-slider .slick-dots li.slick-active button:before {
  color: #ff9418;
  opacity: 1;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  position: relative;
  padding: 40px 0;
  background-image: url('http://xs158740.xsrv.jp/kidsmoney/wp-content/uploads/2026/05/about_background_re.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kids_irasuto img {
  display: block;
  width: 400px;
  height: auto;
  margin: 0 auto;
}

.about-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.about-icons img {
  width: 64px;
}

.about-card {
  position: relative;
  margin-bottom: 48px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about_naiyou {
  display: grid;
  grid-template-columns: 7fr 3fr;
}

.about-card-text {
  width: 100%;
}

.about-card-text p {
  margin: 2rem 0 4rem 4rem;
  color: var(--text-mid);
  font-size: 1.2rem;
}

.about-card-text strong {
  color: var(--orange);
}

.about_waku_text {
  width: 80%;
  float: left;
}

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

.feature-card {
  padding: 2rem;
  border: 2px solid #f7931e;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.2s;
  background-color: #fffaf5;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card img {
  width: 15%;
}

.feature-card .card-image2,
.card-image2 {
  width: 50%;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 2rem;
  font-weight: 900;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 1.3rem;
}

.video-section {
  position: relative;
  margin-bottom: 40px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.video-embed {
  width: 480px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
}

.video-chara-left,
.video-chara-right {
  width: 200px;
  flex-shrink: 0;
}

/* ============================================================
   PROGRAM COMMON
============================================================ */
.program {
  position: relative;
}

.program-header {
  position: relative;
  padding: 60px 24px 40px;
  text-align: center;
}

.badge-free {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3F6AC4;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.program-title-img {
  max-width: 560px;
  margin: 0 auto;
}

.program-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 80px;
}

.program-point {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 24px;
  background: var(--white);
  border: 2px solid #EEE;
  border-radius: var(--radius-md);
}

.point-circle {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

#mark-orange {
  background-color: #E8900A;
}

.green-circle,
.orange-circle,
.blue-circle {
  border-radius: 50%;
}

.green-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7bc53b;
  color: white;
  flex-shrink: 0;
  font-weight: 500;
}

.orange-circle {
  background: var(--orange);
}

.blue-circle {
  background: var(--teal);
}

.point-text h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 900;
}

.point-text p {
  color: var(--text-mid);
  font-size: 18px;
}

.point-icon {
  width: 120px;
  flex-shrink: 0;
}

.mini-photos {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.program-text p {
  text-align: center;
}

.point-text img {
  width: 155px;
  height: 155px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.program-flyer img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

/* ============================================================
   PROGRAM 1
============================================================ */
.program-shop {
  background-image: url('http://xs158740.xsrv.jp/kidsmoney/wp-content/uploads/2026/05/omiseyasan_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shop-header {
  background: transparent;
}

.shop-header::before,
.shop-header::after {
  content: '✦';
  position: absolute;
  color: var(--white);
  font-size: 32px;
  opacity: 0.7;
}

.shop-header::before {
  top: 30px;
  left: 60px;
}

.shop-header::after {
  right: 60px;
  bottom: 20px;
  transform: scale(0.7);
}

/* ============================================================
   PROGRAM 2
============================================================ */
.program-shopping {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background-image: url('http://xs158740.xsrv.jp/kidsmoney/wp-content/uploads/2026/05/okaimono_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shopping-main {
  max-width: 98%;
  margin: 0 auto;
}

.shopping-logo {
  margin-bottom: 45px;
  text-align: center;
}

.shopping-logo img {
  width: 70%;
  max-width: 430px;
}

.shopping-boxes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}

.shopping-box {
  width: 30%;
  min-height: 300px;
  padding: 28px 30px;
  background: #fff;
  border: 2px solid #83c83d;
  border-radius: 24px;
}

.shopping-box.center {
  width: 42%;
  border-color: #ff8a00;
}

.shopping-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.shopping-title span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7bc53b;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.shopping-title h3 {
  margin: 0;
  color: #7bc53b;
  font-size: 24px;
}

.shopping-box.orange .shopping-title span {
  background: #ff8a00;
}

.shopping-box.orange h3 {
  color: #ff8a00;
}

.shopping-box p {
  color: #111;
  font-size: 18px;
  line-height: 1.8;
}

.shopping-illust {
  display: block;
  max-width: 150px;
  margin: 20px auto 0;
}

.shopping-illust.kids {
  max-width: 220px;
}

.shopping-flow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 30px 0 22px;
}

.shopping-flow div {
  flex: 1;
  text-align: center;
}

.shopping-flow img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.shopping-flow p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.shopping-bottom-text {
  margin-top: 10px;
  text-align: center;
}

/* ============================================================
   SCHEDULE
============================================================ */
.schedule {
  overflow: hidden;
  padding: 120px 0 140px;
  background-image: url('http://xs158740.xsrv.jp/kidsmoney/wp-content/uploads/2026/05/yotei_background.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.schedule .section-inner {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

.schedule-slider {
  max-width: 100%;
  margin: 0 auto;
}

.schedule-slider .slick-list {
  overflow: hidden;
  padding: 10px 0;
}

.schedule-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.schedule-card {
  height: auto;
  margin: 0 14px;
  padding: 24px 24px 30px;
  overflow: hidden;
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all .3s ease;
}

.schedule-slider .slick-center .schedule-card {
  transform: scale(1.03);
}

.schedule-card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 24px;
}

.schedule-card-title {
  margin: 22px 0 20px;
  color: #ff8a00;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.4;
}

.schedule-info-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
}

.schedule-info-list dt {
  font-weight: 700;
}

.schedule-card-footer {
  padding-top: 24px;
}

.schedule-card-footer .btn-primary {
  width: 100%;
  padding: 18px 20px;
  background: #ff9418;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.schedule-remaining {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.remaining-ok {
  background: #E8F5E9;
  color: #2E7D32;
}

.remaining-mid {
  background: #FFF8E1;
  color: #F57F17;
}

.remaining-low {
  background: #FFEBEE;
  color: #C62828;
}

.schedule-slider .slick-dots {
  bottom: -70px;
}

.schedule-slider .slick-dots li button:before {
  color: #aaa;
  font-size: 16px;
  opacity: 1;
}

.schedule-slider .slick-dots li.slick-active button:before {
  color: #ff9418;
}

.schedule-slider .slick-prev,
.schedule-slider .slick-next {
  z-index: 20;
  width: 60px;
  height: 60px;
}

.schedule-slider .slick-prev {
  left: -60px;
}

.schedule-slider .slick-next {
  right: -60px;
}

.schedule-slider .slick-prev:before,
.schedule-slider .slick-next:before {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  opacity: 1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.schedule-slider .slick-prev:hover:before,
.schedule-slider .slick-next:hover:before {
  opacity: .8;
}

/* ============================================================
   VOICE / LETTER
============================================================ */
.voice {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-image: url('http://xs158740.xsrv.jp/kidsmoney/wp-content/uploads/2026/05/voice_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.voice-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.voice-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.shape-circle.pink-light {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--pink);
}

.shape-circle.yellow {
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: var(--yellow);
}

.shape-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.4) 8px,
    rgba(255,255,255,0.4) 16px
  );
}

.voice > .section-inner {
  position: relative;
  text-align: center;
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
  text-align: left;
}

.voice-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.voice-card:hover {
  transform: translateY(-3px);
}

.voice-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.voice-name {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.voice-content p:last-child {
  color: var(--text-mid);
  font-size: 13px;
}

.voice-card img {
  width: 35%;
}

.letter-section {
  margin-bottom: 40px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.letter-title {
  margin-bottom: 24px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 900;
}

.letter-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.letter-slider .letter-card {
  padding: 8px 16px;
}

.letter-card img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.letter-slider .slick-dots li button:before {
  color: var(--pink);
}

.letter-slider .slick-dots li.slick-active button:before {
  color: var(--orange);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  width: 100%;
  padding: 0 0 90px;
  background: #fff;
  border-top: none;
  overflow: hidden;
}

.footer-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #f7b6d2 0%,
    #f7b6d2 22%,
    #ffe45c 22%,
    #ffe45c 45%,
    #f7b6d2 45%,
    #f7b6d2 100%
  );
}

.footer-inner {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 85px 100px 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  column-gap: 36px;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  min-width: 0;
}

.footer-logo-area img {
  display: block;
  width: clamp(420px, 28vw, 650px);
  max-width: 100%;
  height: auto;
}

.pokapoka {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: max-content;
}

.pokapoka p {
  margin: 0;
  color: #000;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-contact-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(780px, 100%);
  min-height: 75px;
  padding: 0 80px;
  background: #ff9418;
  border-radius: 999px;
  box-shadow: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-contact-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================
   TABLET
============================================================ */
@media screen and (max-width: 900px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-logo {
    flex: 0 0 auto;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    margin-right: -6px;
  }

  .header-nav {
    display: none;
  }

  .btn-contact:not(.sp-nav-btn) {
    display: none;
  }

  .sp-nav {
    display: block;
  }

  .hero-image > img:first-child {
    height: 300px;
  }

  .hero-chara {
    width: 72px;
  }

  .about-image-circle {
    display: none;
  }

  .feature-cards,
  .voice-cards {
    grid-template-columns: 1fr;
  }

  .program-content {
    grid-template-columns: 1fr;
  }

  .program-flyer {
    order: -1;
  }

  .video-wrap {
    flex-direction: column;
  }

  .video-embed {
    width: 100%;
  }

  .video-chara-left,
  .video-chara-right {
    display: none;
  }

  .shopping-boxes {
    flex-direction: column;
  }

  .shopping-box,
  .shopping-box.center {
    width: 100%;
  }

  .shopping-flow {
    flex-wrap: wrap;
  }

  .shopping-flow div {
    width: calc(50% - 10px);
    flex: none;
  }

  .schedule-slider-wrap {
    padding: 0 8px;
  }

}

/* ============================================================
   SMARTPHONE
============================================================ */
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section-inner {
    padding: 0 0px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .header-logo img,
  .custom-logo {
    width: auto;
    max-height: 42px;
  }

  .sp-nav {
    top: 64px;
  }

  .hero {
    position: relative;
    height: auto;
    min-height: 700px;
    overflow: hidden;
    background-position: center top;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide,
  .hero-slide picture {
    height: 730px;
    min-height: 730px;
  }

  .hero-slide img {
    width: 100%;
    height: 730px;
    min-height: 730px;
    display: block;
    object-fit: cover;
    object-position: 30% center;
  }

  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    min-height: 713px;
    padding: 0 20px 55px;
    display: flex;
    align-items: flex-end;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .hero-lead {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.8;
  }

  .btn-hero {
    width: 100%;
    padding: 14px 24px;
    font-size: 18px;
    text-align: center;
  }

  .hero-slider .slick-dots {
    right: 50%;
    bottom: 34px;
    transform: translateX(50%);
  }

  .about {
    padding: 40px 0;
    background-position: center top;
  }

  .kids_irasuto img {
    width: 75%;
    max-width: 300px;
  }

  .about-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-icons img {
    width: 48px;
  }

  .about-card,
  .video-section,
  .letter-section {
    padding: 26px 18px;
  }

  .about-card {
    border-radius: 20px;
  }

  .about_naiyou {
    display: block;
  }

  .about-card-text p {
    margin: 20px 0 32px;
    font-size: 16px;
  }

  .about-image-circle {
    display: block;
    text-align: center;
  }

  .about-image-circle img {
    width: 70%;
    max-width: 240px;
  }

  .about_waku_text {
    width: 100%;
    float: none;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .feature-card img {
    width: 45%;
  }

  .feature-card .card-image2,
  .card-image2 {
    width: 50%;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 16px;
  }

  .program-header {
    padding: 46px 20px 28px;
  }

  .program-title-img {
    width: 90%;
    max-width: 360px;
  }

  .program-content {
    gap: 28px;
    padding-bottom: 55px;
  }

  .program-point {
    flex-direction: column;
    align-items: center;
    padding: 24px 18px;
    text-align: center;
  }

  .point-text h3 {
    font-size: 22px;
  }

  .point-text p {
    font-size: 15px;
  }

  .point-icon {
    width: 120px;
  }

  .mini-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* おみせやさんごっこ：スマホ時に横幅が暴れないよう調整 */
  .program-shop {
    overflow: hidden;
    background-position: center top;
  }

  .program-shop .section-inner {
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .program-shop .program-header {
    padding-right: 0;
    padding-left: 0;
  }

  .program-shop .program-content {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .program-shop .program-flyer {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
  }

  .program-shop .program-flyer img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .program-shop .program-point {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .program-shop .mini-photos img,
  .program-shop .point-text img {
    max-width: 100%;
  }

  .program-shopping {
    padding: 55px 18px;
  }

  .shopping-logo img {
    width: 90%;
    max-width: 340px;
  }

  .shopping-box {
    padding: 24px 18px;
  }

  .shopping-title {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .shopping-title h3 {
    font-size: 22px;
  }

  .shopping-box p {
    font-size: 15px;
    text-align: center;
  }

  .shopping-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shopping-flow div {
    width: 100%;
  }

  .schedule {
    padding: 40px 0 110px;
  }

  .schedule-slider-wrap {
    margin-top: 35px;
  }

  .schedule-card {
    margin: 0 8px;
    padding: 18px 16px 24px;
    border-radius: 26px;
  }

  .schedule-card-img img {
    height: 190px;
    border-radius: 18px;
  }

  .schedule-card-title {
    font-size: 1.1rem;
  }

  .schedule-info-list div {
    grid-template-columns: 76px 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .schedule-card-footer .btn-primary {
    padding: 15px 14px;
    font-size: 0.9rem;
  }

  .schedule-slider .slick-prev {
    left: -45px;
  }

  .schedule-slider .slick-next {
    right: -45px;
  }

  .schedule-slider .slick-prev:before,
  .schedule-slider .slick-next:before {
    font-size: 42px;
  }

  .voice {
    padding: 20px 0;
  }

  .voice-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .voice-card img {
    width: 120px;
    max-width: 45%;
  }

  .voice-content p:last-child {
    font-size: 14px;
  }

  .letter-card {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 600px) {
  .about-card,
  .video-section,
  .letter-section {
    padding: 24px;
  }

}


/* ============================================================
   FOOTER：タブレット
============================================================ */
@media screen and (max-width: 1200px) {
  .site-footer {
    padding-bottom: 70px;
  }

  .footer-inner {
    padding: 70px 50px 0;
    grid-template-columns: auto auto;
    row-gap: 40px;
    column-gap: 28px;
  }

  .footer-logo-area img {
    width: 460px;
  }

  .pokapoka p {
    font-size: 38px;
  }

  .footer-contact-area {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-contact-btn {
    width: 680px;
    min-height: 95px;
    padding: 0 50px;
    font-size: 38px;
  }
}

/* ============================================================
   FOOTER：スマホ
============================================================ */
@media screen and (max-width: 768px) {
  .site-footer {
    padding-bottom: 45px;
  }

  .footer-inner {
    padding: 42px 22px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-logo-area {
    width: 100%;
    justify-content: center;
  }

  .footer-logo-area img {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }

  .pokapoka {
    width: 100%;
    justify-content: center;
  }

  .pokapoka p {
    font-size: 36px;
    line-height: 1.2;
  }

  .footer-contact-area {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .footer-contact-btn {
    width: 100%;
    max-width: 420px;
    min-height: 72px;
    padding: 0 22px;
    font-size: 24px;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   FOOTER：小さめスマホ
============================================================ */
@media screen and (max-width: 480px) {
  .footer-inner {
    padding: 36px 18px 0;
    gap: 18px;
  }

  .footer-logo-area img {
    max-width: 330px;
  }

  .pokapoka p {
    font-size: 30px;
  }

  .footer-contact-btn {
    min-height: 64px;
    font-size: 20px;
    padding: 0 18px;
  }
}

#manekurun_image {
  width: 100%;
}

.text_naka {
  text-align: center;
}

/* ============================================================
   HERO画像 PC/SP 出し分け
   ※ picture/sourceを使わず、imgタグのみで切り替え
============================================================ */
.hero-slide .hero-img-sp {
  display: none;
}

.hero-slide .hero-img-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .hero-slide .hero-img-pc {
    display: none;
  }

  .hero-slide .hero-img-sp {
    display: block;
  }
}

/* スマホ改行 */
.br-sp{
  display: none;
}

@media screen and (max-width: 768px) {
.br-sp{
  display: block;
}
}

@media screen and (max-width: 768px) {
.section-title{
  font-size: 1.5rem;
}

.schedule-slider .slick-list{
  padding:0;
}

.feature-cards{
  margin-top: 20px;
}

.point-text img{
    width: 155px;
    height: 140px;
}
}

.slick-initialized .slick-slide{
  font-family: auto;
}

/* 開催スケジュール調整 */

.schedule .section-inner {
padding: 0;
}

.schedule-slider .slick-track {
display: block;
}

.copyright{
  width: 100%;
  padding-top: 1rem;
}

.copyright p{
  text-align: center;
}