:root {
  /* --- famcloud Brand (DESIGN.md) --- */
  --primary: #48B034;
  --primary-dark: #3F9349;
  --primary-container: #DDF2D8;
  --primary-pale: #CAE5CD;
  --secondary: #F06292;
  --secondary-container: #FFE6E6;
  /* --- えんフォト Accent（バナー準拠） --- */
  --en-green: #74BC44;
  --en-orange: #F4A93C;
  --en-orange-dark: #E2902A;
  --en-red: #E2685F;
  --en-blue: #2E9BD6;
  --en-yellow: #FFCD2C;
  --en-sky: #A2E6EA;
  /* --- Neutral --- */
  --surface: #FFFFFF;
  --paper: #FBFAF5;
  --surface-alt: #F2F1EC;
  --on-surface: #333333;
  --on-surface-muted: #7C7C76;
  --outline: #CCCCCC;
  --on-primary: #FFFFFF;
  /* --- Radius / Spacing --- */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 40px;
  --s-2xl: 64px;
  --s-3xl: 96px;
  /* --- Fonts --- */
  --font-round: "Hiragino Maru Gothic ProN", "Zen Maru Gothic", sans-serif;
  --font-hand: "Hiragino Maru Gothic ProN", cursive;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  /* --- Shadow --- */
  --sh-card: 0 6px 22px rgba(51, 51, 51, 0.09);
  --sh-photo: 0 12px 30px rgba(51, 51, 51, 0.16);
  --sh-cta: 0 8px 22px rgba(244, 169, 60, 0.34);
  --sh-green: 0 8px 22px rgba(72, 176, 52, 0.26);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
  position: relative;
  z-index: 1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  padding: 17px 38px;
  border: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.btn .arw {
  font-size: 13px;
  transition: transform .16s ease;
}

.btn:hover .arw {
  transform: translateX(3px);
}

.btn-cta {
  background: var(--en-orange);
  color: #fff;
  box-shadow: var(--sh-cta);
}

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

.btn-green {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-green);
}

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

.btn-ghost {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary-pale);
}

.btn-ghost:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 15px;
  padding: 11px 22px;
  font-weight: normal;
}

.btn:focus-visible {
  outline: 3px solid var(--en-blue);
  outline-offset: 3px;
}

/* ===== Eyebrow (handwritten) ===== */
.eyebrow {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s-sm);
}


@media(max-width:760px) {
  .eyebrow {
    font-size: 15px;
  }
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--en-orange);
  border-radius: 2px;
}

.eyebrow.c::before,
.eyebrow.c::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--en-orange);
  border-radius: 2px;
}

.eyebrow.c {
  justify-content: center;
}

/* ===== Section title ===== */
.sec-head {
  margin-bottom: var(--s-xl);
}

.sec-head.center {
  text-align: center;
}

.sec-title {
  font-family: var(--font-round);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--on-surface);
}

@media(max-width:760px) {
  .sec-title {
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.7;
  }
}

.ink {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--en-orange);
  white-space: nowrap;
}

.ink svg {
  position: absolute;
  left: -2%;
  bottom: 0;
  z-index: -1;
  width: 104%;
  height: max(10px, .25em);
  overflow: visible;
  pointer-events: none;
}

.ink.green {
  color: var(--primary);
}

.ink.green svg path {
  stroke: var(--primary);
}

.sec-lead {
  margin-top: var(--s-md);
  font-size: 16px;
  color: #555;
}

@media(max-width:760px) {
  .sec-lead {
    font-size: 14px;
  }
}

/* ===== Section rhythm & zoning ===== */
section {
  padding: var(--s-3xl) 0;
  position: relative;
}

.z-paper {
  background: var(--paper);
}

.z-white {
  background: var(--surface);
}

.z-mint {
  background: var(--surface);
}

.z-dots {
  background: var(--surface);
  background-image: radial-gradient(var(--primary-pale) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

/* famcloud 斜めストライプ（border_grn.svg タイル） */
.z-stripe {
  background-color: var(--surface);
  background-image: url("assets/icons/border_grn.svg");
  background-size: 22px 22px;
}

/* offer / 協業スキーム セクション見出しの視認性向上 */
#offer>.wrap>.sec-head,
body>section:nth-child(3)>div>div.sec-head.center {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--r-lg);
  padding: var(--s-lg) var(--s-xl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* セクション余白：モバイルで詰める */
@media(max-width:760px) {
  section {
    padding: var(--s-2xl) 0;
  }

  .hero {
    padding: 30px 0 var(--s-2xl) !important;
  }

  .hero h1 {
    margin: 24px auto 48px;
  }
}

@media(max-width:480px) {
  section {
    padding: var(--s-xl) 0;
  }

  .hero {
    padding: var(--s-lg) 0 var(--s-xl);
  }

  .hero h1 {
    margin: 20px auto 36px;
  }
}

/* wavy top edge */
.edge-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 34px;
  display: block;
}

/* ===== Photo (polaroid / instant) ===== */
.photo {
  background: #fff;
  padding: 10px 10px 0;
  border-radius: 10px;
  box-shadow: var(--sh-photo);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.photo .frame {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-container);
}

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

.photo figcaption {
  font-family: var(--font-hand);
  font-weight: 600;
  text-align: center;
  padding: 10px 6px 12px;
  font-size: 15px;
  color: #5b5b54;
}

@media(max-width:760px) {
  .photo figcaption {
    font-size: 13px;
  }
}

.photo.sq .frame {
  aspect-ratio: 1/1;
}

.tilt-l {
  transform: rotate(-3deg);
}

.tilt-r {
  transform: rotate(2.6deg);
}

.tilt-r2 {
  transform: rotate(-1.6deg);
}

.photo:hover {
  transform: rotate(0) translateY(-4px) scale(1.015);
  box-shadow: 0 18px 40px rgba(51, 51, 51, .2);
  z-index: 5;
}

/* washi tape */
.tape {
  position: absolute;
  width: 96px;
  height: 28px;
  border-radius: 3px;
  opacity: .78;
  transform: rotate(-7deg);
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .45) 0 6px, rgba(255, 255, 255, 0) 6px 12px), var(--en-green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .06);
  z-index: 6;
}

.tape.pink {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0 6px, rgba(255, 255, 255, 0) 6px 12px), var(--secondary);
}

.tape.orange {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0 6px, rgba(255, 255, 255, 0) 6px 12px), var(--en-orange);
}

.tape.blue {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0 6px, rgba(255, 255, 255, 0) 6px 12px), var(--en-sky);
}

.tape.tl {
  top: -12px;
  left: 18px;
}

.tape.tr {
  top: -12px;
  right: 18px;
  transform: rotate(6deg);
}

.tape.tc {
  top: -13px;
  left: 50%;
  margin-left: -48px;
  transform: rotate(-2deg);
}

/* sticker badge */
.sticker {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--en-orange);
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(51, 51, 51, .2);
  font-family: var(--font-round);
  font-weight: 800;
  transform: rotate(-9deg);
  z-index: 8;
  line-height: 1.15;
}

.sticker .n {
  font-size: 26px;
  display: block;
}

.sticker .s {
  font-size: 14px;
  font-weight: 700;
}

.sticker.red {
  background: var(--en-red);
}

.sticker.green {
  background: var(--primary);
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary-pale);
}

.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.hd-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hd-logos img {
  height: 27px;
  width: auto;
}

.hd-x {
  color: var(--on-surface-muted);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
}

@media(max-width:560px) {
  .hd-logos img {
    height: 19px;
  }

  .hd .btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: auto;
  padding: var(--s-2xl) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-photo-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--s-xs);
  padding: var(--s-xs);
  opacity: .58;
}

.hero-grid-photo {
  overflow: hidden;
  background: var(--primary-container);
}

.hero-grid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid-photo.photo-1 {
  grid-column: 1;
  grid-row: 1;
}

.hero-grid-photo.photo-2 {
  grid-column: 2 / 4;
  grid-row: 1;
}

.hero-grid-photo.photo-3 {
  grid-column: 4;
  grid-row: 1;
}

.hero-grid-photo.photo-4 {
  grid-column: 5;
  grid-row: 1 / 3;
}

.hero-grid-photo.photo-5 {
  grid-column: 1 / 3;
  grid-row: 2;
}

.hero-grid-photo.photo-6 {
  grid-column: 3 / 5;
  grid-row: 2;
}

.hero-grid-photo.photo-1 img,
.hero-grid-photo.photo-4 img {
  object-position: center top;
}

.hero-grid-photo.photo-3 img {
  object-position: 58% center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(251, 250, 245, .55);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "lead";
  gap: 0;
  align-items: center;
  max-width: 680px;
  padding: var(--s-xl) var(--s-2xl);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 36px rgba(63, 147, 73, .13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.hero-title-area {
  grid-area: title;
}

.hero-lead-area {
  grid-area: lead;
  align-self: start;
}

.hero-kicker {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  margin-bottom: var(--s-sm);
}

.hero h1 {
  font-family: var(--font-round);
  font-weight: 800;
  line-height: .5;
  letter-spacing: 0.005em;
  font-size: clamp(31px, 4vw, 46px);
  margin: 30px auto 80px;
  text-align: center;
}

.hero h1 .nb {
  white-space: nowrap;
}

.hero h1 .ink {
  color: var(--en-orange);
}

.hero h1 .ink svg {
  bottom: clamp(-20px, -.44em, -14px);
}

.hero-title-line {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}

.hero-logo {
  margin: 30px auto;
  display: block;
}

.hero-logo-small {
  height: .7em;
  width: auto;
  display: block;
}

.hero-lead {
  font-size: 17px;
  color: #555;
  margin-bottom: var(--s-xl);
}

.hero-lead b {
  color: var(--primary-dark);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--font-hand);
  font-size: 14px;
  color: var(--on-surface-muted);
  margin-top: var(--s-md);
}

.hero-sticker-mobile {
  display: none;
}

@media(max-width:1100px) {
  .hero {
    padding: var(--s-xl) 0;
  }

  .hero-grid {
    max-width: 640px;
    padding: var(--s-lg) var(--s-xl);
  }

  .hero h1 {
    margin: 24px auto 56px;
  }

  .hero-logo {
    margin: var(--s-lg) auto;
  }

  .hero-lead {
    margin-bottom: var(--s-lg);
  }
}

@media(max-width:860px) {
  .hero {
    min-height: auto;
    padding: var(--s-xl) 0 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "lead";
    max-width: 620px;
    padding: var(--s-lg) var(--s-xl);
  }

  .hero-title-area,
  .hero-lead-area {
    grid-area: auto;
  }

  .hero h1 {
    margin: 20px auto 36px;
  }
}

@media(max-width:560px) {
  .hero {
    padding: var(--s-lg) 0 !important;
  }

  .hero-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    opacity: .48;
  }

  .hero-grid-photo.photo-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-grid-photo.photo-2 {
    grid-column: 2 / 4;
    grid-row: 1;
  }

  .hero-grid-photo.photo-3 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .hero-grid-photo.photo-4 {
    grid-column: 3;
    grid-row: 2 / 4;
  }

  .hero-grid-photo.photo-5 {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-grid-photo.photo-6 {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-veil {
    background: rgba(251, 250, 245, .66);
  }

  .hero-grid {
    max-width: calc(100% - var(--s-xl));
    padding: 20px var(--s-md) var(--s-lg);
    border-radius: var(--r-lg);
  }

  .hero-kicker {
    font-size: 14px;
    margin-bottom: var(--s-xs);
  }

  .hero h1 {
    font-size: 28px;
    line-height: .72;
    margin: 12px auto var(--s-lg);
  }

  .hero-title-line {
    gap: .15em;
  }

  .hero-logo-small {
    height: .62em;
  }

  .hero-logo {
    width: min(100%, 260px);
    margin: 18px auto 16px;
  }

  .hero h1 .ink {
    display: inline-block;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: var(--s-lg);
  }

  .hero-cta .btn {
    min-height: 48px;
    padding: 12px 28px;
    font-size: 15px;
  }

  .hero-sticker-mobile {
    display: none !important;
  }
}

@media(max-width:420px) {
  .hero-grid {
    max-width: calc(100% - var(--s-lg));
    padding: var(--s-md);
  }

  .hero-kicker {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-logo {
    width: min(100%, 232px);
  }
}

/* ===== 協業スキーム ===== */
.scheme-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.scheme-orgs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-md);
  align-items: stretch;
}

.org {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  border: 2px solid var(--primary-pale);
  padding: var(--s-lg) var(--s-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.org.en {
  border-color: #F4D8AE;
}

.org .org-logo {
  height: 30px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.org .org-role {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: var(--on-surface);
}

@media(max-width:760px) {
  .org .org-role {
    font-size: 13.5px;
  }
}

.org .org-co {
  font-size: 12px;
  color: var(--on-surface-muted);
  margin-top: 4px;
}

.scheme-x {
  align-self: center;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 24px;
  color: var(--en-orange);
}

@media(max-width:760px) {
  .scheme-x {
    font-size: 18px;
  }
}

.scheme-tie {
  text-align: center;
  margin: var(--s-md) 0 0;
}

.tie-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--en-green);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 8px 22px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(116, 188, 68, .3);
}

.scheme-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  margin: var(--s-sm) 0 var(--s-md);
}

.flow-arrow {
  text-align: center;
}

.flow-arrow .lab {
  display: inline-block;
  background: var(--primary-container);
  border: none;
  border-radius: var(--r-lg);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-dark);
}

.flow-arrow.en .lab {
  background: #FBE9CF;
  color: var(--en-orange-dark);
  border-color: #F4D8AE;
  color: var(--en-orange-dark);
}

.flow-arrow .tri {
  width: 0;
  height: 0;
  margin: 8px auto 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid var(--primary-pale);
}

.flow-arrow.en .tri {
  border-top-color: #F4D8AE;
}

.org.goal {
  border: 2px solid var(--primary);
  background: var(--primary-container);
  padding: var(--s-lg) var(--s-xl);
}

.goal-ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 23px);
  color: var(--primary-dark);
  line-height: 1.4;
}

.goal-sub {
  margin-top: 8px;
  font-size: 15px;
  color: #4f6f49;
  font-weight: 500;
}

.goal-emoji {
  font-size: 30px;
  margin-bottom: 4px;
}

@media(max-width:620px) {
  .scheme-orgs {
    grid-template-columns: 1fr;
  }

  .scheme-x {
    text-align: center;
    margin: 2px 0;
  }
}

/* ===== お悩み ===== */
.worry-head {
  position: relative;
}

.voice-char {
  position: absolute;
  bottom: -6px;
  width: 104px;
  height: auto;
  z-index: 2;
}

.voice-char.l {
  left: 2%;
  transform: rotate(-4deg);
}

.voice-char.r {
  right: 2%;
  transform: rotate(4deg);
}

@media(max-width:900px) {
  .voice-char {
    width: 76px;
  }
}

@media(max-width:640px) {
  .voice-char {
    display: none;
  }
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-md);
}

.worry {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-lg) var(--s-lg) var(--s-xl);
  box-shadow: var(--sh-card);
  position: relative;
}

.worry::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: #fff;
  box-shadow: 6px 6px 12px rgba(51, 51, 51, .05);
}

.worry .who {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-dark);
  background: var(--primary-container);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-md);
}

@media(max-width:760px) {
  .worry .who {
    font-size: 13px;
  }
}

.worry .face {
  width: 30px;
  height: 30px;
}

.worry p {
  font-size: 15.5px;
  color: #444;
}

@media(max-width:760px) {
  .worry p {
    font-size: 14px;
  }
}

.worry b {
  font-weight: 700;
  color: var(--on-surface);
  background: linear-gradient(transparent 62%, #FCE3B8 62%);
}

@media(max-width:760px) {
  .worry-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 解決 ===== */
.solve {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--s-2xl);
  align-items: center;
}

.solve-visual {
  position: relative;
  padding: var(--s-md);
}

.solve h3 {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.4;
  margin-bottom: var(--s-md);
}

.solve p {
  font-size: 16px;
  color: #555;
  margin-bottom: var(--s-lg);
}

@media(max-width:760px) {
  .solve h3 {
    line-height: 1.7;
  }

  .solve p {
    font-size: 14px;
  }
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

@media(max-width:760px) {
  .checklist li {
    font-size: 14px;
  }
}

.checklist .ck {
  width: 28px;
  height: 28px;
  flex: none;
  margin-top: 2px;
}

@media(max-width:860px) {
  .solve {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }

  .solve-visual {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ===== 3つの理由 ===== */
.points {
  display: flex;
  flex-direction: column;
  gap: var(--s-2xl);
  margin-top: var(--s-md);
}

.point {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-2xl);
  align-items: center;
}

.point:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.point:nth-child(even) .point-visual {
  order: 2;
}

.point-visual {
  position: relative;
  padding: var(--s-md);
}

.point-no {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--en-orange);
}

.point-ic {
  width: 54px;
  height: 54px;
  margin: 6px 0 var(--s-sm);
}

.point h4 {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 25px);
  line-height: 1.4;
  margin-bottom: var(--s-sm);
}

@media(max-width:760px) {
  .point h4 {
    font-size: 18px;
  }
}

.point p {
  font-size: 15.5px;
  color: #5a5a5a;
}

@media(max-width:760px) {
  .point p {
    font-size: 14px;
  }
}

.point p.note {
  padding-top: 10px;
  font-size: 12px;
}

.point p.note::before {
  content: "※"
}

.point .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s-md);
}

.point .tags span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-container);
  padding: 5px 12px;
  border-radius: var(--r-full);
}

@media(max-width:760px) {
  .point .tags span {
    font-size: 12px;
  }
}

@media(max-width:760px) {

  .point,
  .point:nth-child(even) {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .point .point-visual,
  .point:nth-child(even) .point-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .point-header {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    margin: var(--s-sm) 0 var(--s-md);
  }

  .point-ic {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .point h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
  }
}

/* ===== 特別価格 (チケット) ===== */
.ticket {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-photo);
  overflow: hidden;
}

.ticket-top {
  background: var(--en-orange);
  color: #fff;
  text-align: center;
  padding: var(--s-lg) var(--s-md);
  position: relative;
}

.ticket-top .kicker {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 16px;
  opacity: .95;
}

@media(max-width:760px) {
  .ticket-top .kicker {
    font-size: 14px;
  }
}

.ticket-top .ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.02em;
}

.stubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stub {
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  position: relative;
}

.stub+.stub {
  border-left: 1px solid var(--primary-pale);
}

.stub .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--s-md);
}

.stub .label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}

@media(max-width:760px) {
  .stub .label {
    font-size: 14px;
  }
}

.stub .big {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--en-orange);
  line-height: 1.1;
}

.stub .big small {
  font-size: 16px;
  color: var(--on-surface);
}

@media(max-width:760px) {
  .stub .big small {
    font-size: 13px;
  }
}

.stub .desc {
  font-size: 13px;
  color: #666;
  margin-top: var(--s-sm);
  line-height: 1.7;
}

@media(max-width:760px) {
  .stub .desc {
    font-size: 12px;
  }
}

.ticket-foot {
  font-family: var(--font-hand);
  text-align: center;
  font-size: 14px;
  color: var(--on-surface-muted);
  margin-top: var(--s-lg);
}

@media(max-width:760px) {
  .ticket-foot {
    font-size: 12px;
  }
}

@media(max-width:760px) {
  .stubs {
    grid-template-columns: 1fr;
  }

  .stub+.stub {
    border-left: none;
    border-top: 1px solid var(--primary-pale);
  }
}

/* ===== 料金とプラン（スタンダード＋famcloud限定） ===== */
.plan-base {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  border: 2px solid var(--primary-pale);
  padding: var(--s-lg) var(--s-lg) var(--s-xl);
  max-width: 920px;
  margin: 0 auto;
}

.plan-base-head {
  text-align: center;
  margin-bottom: var(--s-lg);
}

.plan-base-logo {
  height: 130px;
  width: auto;
  padding: 20px;
  margin: 0 auto;
}

@media(max-width:480px) {
  .plan-base-logo {
    height: 90px;
  }
}

.plan-tag {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  background: var(--primary-container);
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}

.plan-base-ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--on-surface);
  line-height: 1.4;
}

.base-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}

.base-item {
  text-align: center;
  padding: var(--s-lg) var(--s-md);
  border-radius: var(--r-lg);
  background: var(--paper);
}

.base-item .ic {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--s-sm);
}

.base-label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: var(--on-surface);
}

@media(max-width:760px) {
  .base-label {
    font-size: 13.5px;
  }
}

.base-val {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary);
  line-height: 1.15;
  margin-top: 2px;
}

.base-desc {
  font-size: 12.5px;
  color: #666;
  margin-top: 6px;
  line-height: 1.7;
}

@media(max-width:760px) {
  .base-desc {
    font-size: 11.5px;
  }
}

@media(max-width:680px) {
  .base-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .base-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--s-md);
    padding: var(--s-md);
  }

  .base-item .ic {
    margin: 0;
    flex-shrink: 0;
  }

  .base-body {
    flex-grow: 1;
  }

  .base-val {
    font-size: clamp(24px, 4vw, 30px);
  }
}

/* つなぎの「さらに」帯 */
.plan-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  max-width: 920px;
  margin: var(--s-lg) auto;
}

.plan-bridge-line {
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--en-orange) 0 8px, transparent 8px 15px);
  opacity: .45;
  border-radius: 3px;
}

.plan-bridge-badge {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(14px, 2.2vw, 30px);
  color: var(--en-orange-dark);
  white-space: nowrap;
}

/* famcloud 限定 特別プラン */
.plan-special {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #FFF7EC 0%, #FCEBD0 100%);
  border: 2px solid #F4C77E;
  box-shadow: 0 14px 34px rgba(244, 169, 60, .22);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
}

.special-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--en-orange);
  padding: 7px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(244, 169, 60, .34);
}

.plan-special-ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 38px);
  color: var(--en-orange-dark);
  margin: 12px 0 6px;
  line-height: 1.3;
}

.plan-special-lead {
  font-size: 15px;
  color: #6b5638;
  margin-bottom: var(--s-lg);
}

@media(max-width:760px) {
  .plan-special-lead {
    font-size: 13.5px;
  }
}

.special-card {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  text-align: left;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  box-shadow: var(--sh-card);
  max-width: 640px;
  margin: 0 auto;
}

.special-ic {
  width: 58px;
  height: 58px;
  flex: none;
}

.special-card-ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  color: var(--on-surface);
  margin-bottom: 4px;
}

@media(max-width:760px) {
  .special-card-ttl {
    font-size: 16px;
  }
}

.special-card p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.8;
}

@media(max-width:760px) {
  .special-card p {
    font-size: 13px;
  }
}

@media(max-width:560px) {
  .special-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== 流れ ===== */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-md);
  position: relative;
  margin-top: var(--s-md);
}

.flow-path {
  position: absolute;
  top: 34px;
  left: 10%;
  width: 80%;
  height: 12px;
  z-index: 0;
  display: none;
}

.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow-bubble {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--sh-card);
  display: grid;
  place-content: center;
  margin: 0 auto var(--s-sm);
  border: 3px solid var(--primary-container);
}

.flow-bubble .ic {
  width: 38px;
  height: 38px;
}

.flow-num {
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--en-orange);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-content: center;
}

.flow-who {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 4px 11px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
  background: var(--primary-container);
  color: var(--primary-dark);
}

@media(max-width:760px) {
  .flow-who {
    font-size: 14px;
  }
}

.flow-who.who-parent {
  background: var(--secondary-container);
  color: #C2407A;
}

.flow-who.who-en {
  background: #FBE9CF;
  color: var(--en-orange-dark);
}

.flow-step p {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
}

@media(max-width:760px) {
  .flow-step p {
    font-size: 13.5px;
  }
}

.flow-step .cap {
  font-size: 12px;
  color: var(--on-surface-muted);
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-connector-arrow {
  width: 36px;
  height: auto;
  display: block;
}

@media(max-width:860px) {
  .flow-connector {
    padding: var(--s-xs) 0;
  }

  .flow-connector-arrow {
    transform: rotate(90deg);
    width: 28px;
  }
}

@media(min-width:861px) {
  .flow-path {
    display: block;
  }
}

@media(max-width:860px) {
  .flow {
    grid-template-columns: 1fr;
    gap: var(--s-md);
  }
}

/* ===== CTA ===== */
.cta {
  background: var(--paper);
  text-align: center;
}

.cta-banner {
  display: block;
  max-width: 900px;
  margin: var(--s-xl) auto var(--s-lg);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-photo);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.cta-banner img {
  width: 100%;
  height: auto;
}

.cta-banner::after {
  content: "クリックでお問い合わせ";
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 20px;
  background: rgba(51, 51, 51, 0);
  opacity: 0;
  transition: .2s ease;
}

.cta-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(51, 51, 51, .2);
}

.cta-banner:hover::after {
  background: rgba(51, 51, 51, .32);
  opacity: 1;
}

.cta-note {
  font-family: var(--font-hand);
  font-size: 14px;
  color: var(--on-surface-muted);
  margin-top: var(--s-md);
}

/* 画像ボタン（未生成時はテキストにフォールバック） */
.cta-btn {
  display: inline-block;
  max-width: 380px;
  width: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.cta-btn img {
  width: 100%;
  height: auto;
  border-radius: var(--r-full);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn .cta-btn-fallback {
  display: none;
}

.cta-btn.is-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 25px;
}

.cta-btn.is-fallback .cta-btn-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--en-orange);
  box-shadow: var(--sh-cta);
  border-radius: var(--r-full);
  padding: 17px 38px;
  white-space: nowrap;
}

.cta-btn.is-fallback:hover .cta-btn-fallback {
  background: var(--en-orange-dark);
}

.cta-btn .cta-btn-fallback .arw {
  font-size: 13px;
}

/* ===== Footer ===== */
footer {
  background: var(--surface-alt);
  padding: var(--s-xl) 0;
  position: relative;
}

/* やわらかいスカラップ（雲のような上端） */
footer::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 26px;
  background: radial-gradient(circle at 26px 26px, var(--surface-alt) 26px, transparent 27px);
  background-size: 52px 26px;
  background-position: center top;
  background-repeat: repeat-x;
}

.ft {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-md);
}

.ft-tagline {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 17px;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
}

@media(max-width:760px) {
  .ft-tagline {
    font-size: 15px;
  }
}

.ft-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-logos img {
  height: 26px;
  width: auto;
}

.ft-divider {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary-pale);
  margin: 2px 0;
}

.ft-meta {
  font-size: 13px;
  color: var(--on-surface-muted);
  line-height: 1.9;
  text-align: center;
}

@media(max-width:760px) {
  .ft-meta {
    font-size: 11px;
  }
}

/* ===== Reveal animation ===== */
.reveal-init {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal-init.is-in {
  opacity: 1;
  transform: none;
}

/* ===== Contact Form ===== */
.form-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.form-page main {
  flex: 1;
}

.form-section {
  padding: var(--s-3xl) 0;
  background: var(--surface);
}

.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  border: 2px solid var(--primary-pale);
  padding: var(--s-xl) var(--s-xl);
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--s-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--on-surface);
  margin-bottom: var(--s-sm);
}

.form-group label .required {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--en-red);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.form-group label .optional {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--on-surface-muted);
  background: var(--surface-alt);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-surface);
  background: var(--surface);
  border: 2px solid var(--outline);
  border-radius: var(--r-md);
  padding: 12px 16px;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72, 176, 52, 0.15);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--on-surface-muted);
  opacity: 0.7;
}

/* バリデーションエラー */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--en-red);
  box-shadow: 0 0 0 3px rgba(226, 104, 95, 0.12);
}

.form-error {
  display: block;
  font-size: 13px;
  color: var(--en-red);
  margin-top: 6px;
  font-weight: 500;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: var(--s-xl);
}

.form-submit .btn {
  min-width: 260px;
}

/* ハニーポット */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* サーバーエラーメッセージ */
.form-alert {
  background: var(--secondary-container);
  border: 2px solid var(--en-red);
  border-radius: var(--r-md);
  padding: var(--s-md) var(--s-lg);
  margin-bottom: var(--s-lg);
  color: var(--en-red);
  font-size: 14px;
  font-weight: 500;
}

/* ===== Thanks (完了画面) ===== */
.thanks-section {
  padding: var(--s-3xl) 0;
  background: var(--surface);
  text-align: center;
}

.thanks-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  border: 2px solid var(--primary-pale);
  padding: var(--s-2xl) var(--s-xl);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-container);
  display: grid;
  place-content: center;
  margin: 0 auto var(--s-lg);
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
}

.thanks-card h2 {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 30px);
  color: var(--on-surface);
  margin-bottom: var(--s-md);
  line-height: 1.4;
}

.thanks-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: var(--s-md);
  line-height: 1.8;
}

.thanks-card .btn {
  margin-top: var(--s-lg);
}

@media(max-width:760px) {
  .form-card {
    padding: var(--s-lg) var(--s-md);
  }

  .thanks-card {
    padding: var(--s-xl) var(--s-md);
  }

  .form-submit .btn {
    min-width: auto;
    width: 100%;
  }
}
