/* ============================================
   キッズCanvaデザインクラス LP
   Color: Canva Blue
   ============================================ */

:root {
  --canva-blue: #00C4CC;
  --canva-blue-dark: #0099A8;
  --canva-blue-deep: #006B76;
  --canva-purple: #7D2AE8;
  --accent-yellow: #FFD428;
  --accent-orange: #ED7C31;
  --accent-pink: #FF6B9D;
  --accent-green: #4ECB71;
  --ink: #243746;
  --ink-soft: #4a5d6b;
  --bg-soft: #F0FBFC;
  --bg-blue-soft: #E3F7F9;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 107, 118, 0.12);
  --shadow-soft: 0 6px 20px rgba(0, 107, 118, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  line-height: 1.9;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ ヘッダー ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 107, 118, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header .logo img { height: 44px; width: auto; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canva-blue);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 196, 204, 0.4);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 196, 204, 0.5); }

/* ============ ヒーロー ============ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 196, 204, 0.10), rgba(255,255,255,0.6)),
    url("https://www.genspark.ai/api/files/s/x2FiipTh?cache_control=3600") center/cover no-repeat;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge-new {
  display: inline-block;
  background: var(--accent-yellow);
  color: #7a5a00;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(255,255,255,0.8);
}
.hero h1 .hl {
  background: linear-gradient(transparent 60%, rgba(255, 212, 40, 0.7) 60%);
  padding: 0 4px;
}
.hero h1 .blue { color: var(--canva-blue-dark); }
.hero-sub {
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 28px;
  background: rgba(255,255,255,0.7);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
}
.hero-sub strong { color: var(--accent-orange); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-badges .badge {
  background: #fff;
  border: 2px solid var(--canva-blue);
  color: var(--canva-blue-dark);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}
.hero-badges .badge i { color: var(--accent-orange); margin-right: 6px; }

/* ============ ボタン ============ */
.btn-cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-orange), #ff9a3d);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.25rem);
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(237, 124, 49, 0.45);
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.4s infinite;
}
.btn-cv:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(237, 124, 49, 0.55); }
.btn-cv small { display:block; font-size: 0.72rem; font-weight:500; opacity:0.95; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(237, 124, 49, 0.45); }
  50% { box-shadow: 0 10px 24px rgba(237, 124, 49, 0.45), 0 0 0 12px rgba(237, 124, 49, 0.12); }
}
.btn-blue {
  background: linear-gradient(135deg, var(--canva-blue), var(--canva-blue-dark));
  box-shadow: 0 10px 24px rgba(0, 196, 204, 0.45);
  animation: none;
}
.btn-blue:hover { box-shadow: 0 14px 30px rgba(0, 196, 204, 0.55); }

/* ============ セクション共通 ============ */
.section { padding: 70px 0; }
.section.alt { background: var(--bg-soft); }
.section.blue-soft { background: var(--bg-blue-soft); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--canva-blue-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 700;
}
.section-head h2 .blue { color: var(--canva-blue-dark); }
.section-head h2 .deco {
  background: linear-gradient(transparent 62%, var(--accent-yellow) 62%);
  padding: 0 4px;
}
.section-head .lead {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ お悩み ============ */
.worry-list {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 32px;
}
.worry-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px 20px 60px;
  position: relative;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}
.worry-item::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--canva-blue);
  font-size: 1.4rem;
}
.worry-answer {
  text-align: center;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--canva-blue-deep);
  background: #fff;
  border: 3px dashed var(--canva-blue);
  border-radius: var(--radius);
  padding: 26px;
  max-width: 760px;
  margin: 0 auto;
}
.worry-answer .blue { color: var(--accent-orange); }

/* ============ Canvaとは ============ */
.about-canva .card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border-top: 6px solid var(--canva-blue);
}
.about-canva .big {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--canva-blue-dark);
  margin-bottom: 18px;
}
.about-canva p { color: var(--ink-soft); margin-bottom: 14px; text-align: left; }
.about-canva p:last-child { margin-bottom: 0; }

/* ============ 作品例 ============ */
.intro-note {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
}
.intro-note strong { color: var(--accent-orange); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(0,107,118,0.18); }
.work-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-blue-soft);
}
.work-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-card .num {
  position: absolute;
  top: 12px; left: 12px;
  width: 40px; height: 40px;
  background: var(--canva-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,196,204,0.4);
}
.work-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.work-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.45;
}
.work-card .catch {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.work-card p { color: var(--ink-soft); font-size: 0.92rem; }

.work-notice {
  background: #FFF8E1;
  border: 2px solid var(--accent-yellow);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-top: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.work-notice .title { font-weight: 700; color: #b07b00; margin-bottom: 10px; }
.work-notice p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 6px; }

/* ============ 特徴 ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.feature-card .icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--canva-blue), var(--canva-blue-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 18px rgba(0,196,204,0.35);
}
.feature-card .fnum {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.feature-card h3 { font-size: 1.15rem; color: var(--ink); margin: 6px 0 14px; line-height: 1.5; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; text-align: left; }

/* ============ インストラクター ============ */
.instructor .card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}
.instructor .photo { background: var(--bg-blue-soft); }
.instructor .photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor .info { padding: 38px; }
.instructor .role { color: var(--canva-blue-dark); font-weight: 700; font-size: 0.9rem; }
.instructor .name { font-size: 1.6rem; font-weight: 700; margin: 4px 0 18px; }
.instructor .message { color: var(--ink-soft); }

/* ============ カリキュラム ============ */
.curriculum-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.curri-steps { list-style: none; counter-reset: step; }
.curri-steps li {
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px 18px 70px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.curri-steps li::before {
  counter-increment: step;
  content: "STEP " counter(step);
  position: absolute;
  left: -2px; top: -2px;
  background: var(--canva-blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px 0 12px 0;
}
.curri-steps li .step-no {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-blue-soft);
  color: var(--canva-blue-dark);
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
}
.prepare-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--accent-orange);
}
.prepare-box h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--ink); }
.prepare-box ul { list-style: none; }
.prepare-box li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px dashed #d9e9ec;
  font-size: 0.95rem;
}
.prepare-box li:last-child { border-bottom: none; }
.prepare-box li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--canva-blue);
  position: absolute;
  left: 0; top: 14px;
}
.prepare-box li strong { display:block; color: var(--ink); }
.prepare-box li span { font-size: 0.85rem; color: var(--ink-soft); }

/* ============ 募集要項・料金 ============ */
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}
.recruit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.recruit-card h3 {
  font-size: 1.15rem;
  color: var(--canva-blue-dark);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.recruit-card h3 i { color: var(--accent-orange); }
.time-row {
  display:flex; justify-content: space-between; align-items:center;
  padding: 12px 16px;
  background: var(--bg-blue-soft);
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}
.time-row .label { color: var(--canva-blue-deep); font-weight: 700; }
.note-small { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e3eef0;
}
.price-table th { color: var(--ink); width: 45%; font-weight: 700; }
.price-table td { color: var(--canva-blue-deep); font-weight: 700; text-align: right; }
.price-table .small { font-size: 0.78rem; color: var(--ink-soft); font-weight: 400; }
.target-pill {
  display:inline-block;
  background: linear-gradient(135deg, var(--accent-pink), #ff9ab8);
  color:#fff; font-weight:700;
  padding: 12px 26px; border-radius: 999px;
  font-size: 1.05rem;
}

/* ============ アクセス ============ */
.access-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.access-info { padding: 36px; }
.access-info h3 { font-size: 1.4rem; margin-bottom: 18px; color: var(--ink); }
.access-info dl { display: grid; grid-template-columns: 90px 1fr; gap: 12px 14px; }
.access-info dt {
  color: var(--canva-blue-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.access-info dd { color: var(--ink-soft); font-size: 0.95rem; }
.access-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}
.faq-q .mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--canva-blue);
  color: #fff;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}
.faq-q .arrow { margin-left: auto; color: var(--canva-blue); transition: transform .3s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  display: flex;
  gap: 14px;
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq-a-inner .mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--accent-orange);
  color: #fff;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}

/* ============ 入会の流れ ============ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 50px;
}
.flow-step {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.flow-step .circle {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--canva-blue), var(--canva-blue-dark));
  color: #fff; font-weight: 700; font-size: 1.3rem;
  display:flex; align-items:center; justify-content:center;
}
.flow-step h4 { font-size: 0.98rem; color: var(--ink); }
.flow-step:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--canva-blue);
  font-size: 1.4rem;
}

/* ============ 最終CV ============ */
.final-cv {
  background: linear-gradient(135deg, var(--canva-blue), var(--canva-blue-dark));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.final-cv h2 { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 14px; }
.final-cv .alert {
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 0.95rem;
}
.final-cv .tel {
  margin-top: 24px;
  font-size: 1.05rem;
}
.final-cv .tel a { font-weight: 700; font-size: 1.6rem; letter-spacing: 0.04em; }
.final-cv .tel small { display:block; font-size:0.8rem; opacity:0.9; }

/* ============ フッター ============ */
.site-footer {
  background: var(--ink);
  color: #cfe3e6;
  padding: 46px 0 30px;
  text-align: center;
}
.site-footer .flogo {
  background: #fff;
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.site-footer .flogo img { height: 42px; }
.site-footer .finfo { font-size: 0.88rem; line-height: 1.9; }
.site-footer .copy { margin-top: 22px; font-size: 0.78rem; opacity: 0.6; }

/* ============ 追従ボタン（モバイル） ============ */
.float-cv {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 -4px 16px rgba(0,107,118,0.12);
  padding: 10px 14px;
  display: none;
}
.float-cv .btn-cv { width: 100%; padding: 14px; animation: none; }

/* ============ レスポンシブ ============ */
@media (max-width: 860px) {
  .instructor .card { grid-template-columns: 1fr; }
  .instructor .photo { aspect-ratio: 16/10; }
  .curriculum-wrap { grid-template-columns: 1fr; }
  .recruit-grid { grid-template-columns: 1fr; }
  .access-card { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .flow-step:not(:last-child)::after { content: "\f107"; right: 50%; top: auto; bottom: -22px; transform: translateX(50%); }
}
@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .header-cta { display: none; }
  .float-cv { display: block; }
  body { padding-bottom: 76px; }
  .instructor .info { padding: 26px; }
  .about-canva .card { padding: 26px; }
}
