/* =============================================
   SUNNY - COMPLETE REDESIGN v5
   nicori風 温かみ × SVGイラスト × Fredokaフォント
   ============================================= */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- VARIABLES --- */
:root {
  --orange:       #F4921A;
  --orange-dark:  #D97B0A;
  --orange-light: #FFB347;
  --orange-pale:  #FFF3DC;
  --orange-2:     #FFE8B0;
  --cream:        #FFFBF4;
  --cream-2:      #FFF6E8;
  --brown:        #3D2B1F;
  --brown-mid:    #7B5E42;
  --brown-light:  #B08060;
  --green:        #72B560;
  --green-pale:   #EBF5E7;
  --pink:         #FF8FAB;
  --pink-pale:    #FFE8EE;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(61,43,31,0.08);
  --shadow-md:    0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg:    0 20px 60px rgba(61,43,31,0.15);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    32px;
  --radius-full:  100px;
  --ease:         cubic-bezier(0.16,1,0.3,1);
  --font-head:    'Fredoka', 'Noto Sans JP', sans-serif;
  --font-body:    'Noto Sans JP', sans-serif;
}

/* --- BASE --- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.75;
}

/* --- SCROLL ANIMATION BASE --- */
/* スクロールアニメーション対象はCSS側で初期状態を非表示にしてフラッシュを防ぐ */
.reveal-item,
.about__value,
.pain__card,
.pain__empathy,
.service__card,
.service__card--photo,
.target__tag,
.flow__step,
.flow__arrow-wrap,
.staff__card,
.faq__item,
.contact__methods,
.contact__btn {
  opacity: 0;
}
/* mission要素も初期非表示 */
.mission__logo-mark,
.mission__title,
.mission__body {
  opacity: 0;
}
/* JS無効時は全て表示 */
.no-js .reveal-item,
.no-js .about__value,
.no-js .pain__card,
.no-js .pain__empathy,
.no-js .service__card,
.no-js .service__card--photo,
.no-js .target__tag,
.no-js .flow__step,
.no-js .flow__arrow-wrap,
.no-js .staff__card,
.no-js .faq__item,
.no-js .contact__methods,
.no-js .contact__btn,
.no-js .mission__logo-mark,
.no-js .mission__title,
.no-js .mission__body {
  opacity: 1;
}

/* --- SECTION COMMON --- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* =====================
   LOADER
   ===================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: loaderOut 0.5s ease 1.4s forwards;
  pointer-events: none;
}
@keyframes loaderOut {
  to { opacity: 0; visibility: hidden; }
}
.loader__icon {
  width: 100px;
  animation: loaderPop 0.8s var(--ease) forwards;
}
.loader__text {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  animation: loaderFade 0.5s ease 0.4s forwards;
}
@keyframes loaderPop {
  0%   { transform: scale(0.4) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);     opacity: 1; }
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s;
}
.header.scrolled {
  background: rgba(255,251,244,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(61,43,31,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: padding 0.3s;
}
.header.scrolled .header__inner { padding: 12px 48px; }

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__logo-sun {
  width: 36px;
  height: auto;
}
.header__logo-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.header__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.header__nav a {
  position: relative;
  padding-bottom: 3px;
  color: var(--brown);
  transition: color 0.25s;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.header__nav a:hover { color: var(--orange); }
.header__nav a:hover::after { width: 100%; }

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(244,146,26,0.35);
}
.header__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,146,26,0.4);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.header__menu-btn span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.25s;
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobile-menu__link {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--orange); }
.mobile-menu__link--cta {
  margin-top: 12px;
  padding: 14px 48px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: 18px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(244,146,26,0.38);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(244,146,26,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--ghost:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 140px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 60px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brown);
  margin-bottom: 20px;
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
}
.hero__sub {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 16px;
}
.hero__badge-icon { font-size: 14px; }
.hero__fee-note {
  font-size: 13px;
  color: var(--brown-mid);
  margin-bottom: 32px;
}
.hero__fee-note strong { color: var(--orange-dark); font-weight: 700; }
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__illust {
  position: relative;
  z-index: 2;
}
.hero__illust-svg {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(244,146,26,0.15));
}
.hero__float-badge {
  position: absolute;
  bottom: 24px;
  left: 0;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
  animation: floatBadge 3s ease-in-out infinite;
}
.hero__float-badge span {
  display: block;
  font-size: 11px;
  color: var(--brown-mid);
}
.hero__float-badge strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
}
.hero__wave svg { width: 100%; display: block; }

/* =====================
   MARQUEE
   ===================== */
.marquee {
  background: var(--orange);
  color: white;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.marquee__dot {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================
   ABOUT
   ===================== */
.about {
  padding: 100px 48px;
  background: var(--white);
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about__header {
  text-align: center;
  margin-bottom: 64px;
}
.about__header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brown);
  margin-bottom: 20px;
}
.about__header h2 em {
  color: var(--orange);
  font-style: normal;
}
.about__lead {
  font-size: 15px;
  color: var(--brown-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about__value {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.about__value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.about__value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}
.about__value-icon svg { width: 100%; height: 100%; }
.about__value h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}
.about__value p {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.8;
}

/* =====================
   PAIN
   ===================== */
.pain {
  padding: 100px 48px;
  background: var(--cream);
}
.pain__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pain__header {
  text-align: center;
  margin-bottom: 56px;
}
.pain__header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brown);
}
.pain__header h2 em {
  color: var(--orange);
  font-style: normal;
  display: block;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pain__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain__card-illust {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
}
.pain__card-illust svg { width: 100%; height: 100%; }
.pain__card p {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.8;
}
.pain__empathy {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--cream-2) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  border-left: 5px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.pain__empathy::before {
  content: '♡';
  position: absolute;
  right: 40px; top: 24px;
  font-size: 60px;
  color: var(--orange-light);
  opacity: 0.3;
  pointer-events: none;
}
.pain__empathy-main {
  font-size: 18px;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.7;
}
.pain__empathy-main strong {
  color: var(--orange-dark);
  font-weight: 700;
}
.pain__empathy-voice {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.9;
}

/* =====================
   MISSION
   ===================== */
.mission {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  background: var(--orange-pale);
}
.mission__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mission__bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
}
.mission__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.mission__content {
  text-align: center;
}
.mission__logo-mark {
  width: 64px;
  height: 48px;
  margin: 0 auto 24px;
}
.mission__logo-mark svg { width: 100%; height: 100%; }
.mission__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brown);
  margin-bottom: 40px;
}
.mission__title em {
  color: var(--orange);
  font-style: normal;
}
.mission__body {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.mission__body p { font-size: 15px; color: var(--brown-mid); line-height: 1.85; }
.mission__em strong { color: var(--orange-dark); font-weight: 700; }

/* =====================
   SERVICE
   ===================== */
.service {
  padding: 100px 48px;
  background: var(--white);
}
.service__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.service__header {
  text-align: center;
  margin-bottom: 64px;
}
.service__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brown);
}
.service__header h2 em { color: var(--orange); font-style: normal; }
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Card with photo */
.service__card--photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service__card--photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service__card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service__card--photo:hover .service__card-img img {
  transform: scale(1.06);
}
.service__card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Card without photo (icon) */
.service__card {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service__card-icon {
  width: 64px; height: 64px;
  margin-bottom: 4px;
}
.service__card-icon svg { width: 100%; height: 100%; }
.service__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.1em;
}
.service__card h3,
.service__card-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
}
.service__card p,
.service__card-body p {
  font-size: 13.5px;
  color: var(--brown-mid);
  line-height: 1.8;
  flex: 1;
}

/* =====================
   TARGET
   ===================== */
.target {
  padding: 100px 48px;
  background: var(--cream-2);
}
.target__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.target__header {
  text-align: center;
  margin-bottom: 56px;
}
.target__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brown);
  margin-bottom: 14px;
}
.target__header h2 em { color: var(--orange); font-style: normal; }
.target__sub {
  font-size: 14px;
  color: var(--brown-light);
  font-weight: 500;
}
.target__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.target__tag {
  background: var(--white);
  border: 1.5px solid var(--orange-2);
  color: var(--brown);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.target__tag:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.target__area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-light);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  margin: 0 auto;
  display: flex;
  width: fit-content;
}
.target__area strong { color: var(--orange-dark); }

/* =====================
   FEE
   ===================== */
.fee {
  padding: 100px 48px;
  background: var(--white);
}
.fee__inner {
  max-width: 900px;
  margin: 0 auto;
}
.fee__header {
  text-align: center;
  margin-bottom: 56px;
}
.fee__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--brown);
}
.fee__header h2 em { color: var(--orange); font-style: normal; }
.fee__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fee__card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.fee__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.fee__card--highlight {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--orange-2) 100%);
  border: 2px solid var(--orange-light);
}
.fee__card-icon { width: 60px; height: 60px; }
.fee__card-icon svg { width: 100%; height: 100%; }
.fee__card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
}
.fee__card p {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.8;
}
.fee__amount { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.fee__price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
}
.fee__note { font-size: 13px; color: var(--brown-light); }
.fee__free {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
}
.fee__free span {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--green);
}

/* =====================
   FLOW
   ===================== */
.flow {
  padding: 100px 48px;
  background: var(--cream);
}
.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.flow__header {
  text-align: center;
  margin-bottom: 64px;
}
.flow__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brown);
}
.flow__header h2 em { color: var(--orange); font-style: normal; }
.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.flow__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.flow__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.flow__step-icon { width: 72px; height: 72px; margin: 0 auto 12px; }
.flow__step-icon svg { width: 100%; height: 100%; }
.flow__step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.flow__step-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.4;
}
.flow__step-body p {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.75;
}
.flow__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 56px;
}
.flow__arrow-wrap svg { width: 40px; }

/* =====================
   STAFF
   ===================== */
.staff {
  padding: 100px 48px;
  background: var(--white);
}
.staff__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.staff__header {
  text-align: center;
  margin-bottom: 56px;
}
.staff__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brown);
}
.staff__header h2 em { color: var(--orange); font-style: normal; }
.staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.staff__card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.staff__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.staff__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--orange-2);
  box-shadow: 0 4px 16px rgba(244,146,26,0.2);
}
.staff__avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff__avatar--illust {
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff__avatar--illust svg { width: 80px; height: 80px; }
.staff__info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.staff__info p {
  font-size: 13px;
  color: var(--brown-mid);
}

/* =====================
   FAQ
   ===================== */
.faq {
  padding: 100px 48px;
  background: var(--cream-2);
}
.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--brown);
}
.faq__header h2 em { color: var(--orange); font-style: normal; }
.faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.faq__item.open { box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  cursor: pointer;
  transition: color 0.25s;
}
.faq__q:hover { color: var(--orange); }
.faq__icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq__item.open .faq__a { max-height: 300px; }
.faq__a p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.85;
}

/* =====================
   BLOG
   ===================== */
.blog {
  padding: 100px 48px;
  background: var(--white);
}
.blog__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.blog__header {
  text-align: center;
  margin-bottom: 56px;
}
.blog__header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--brown);
}
.blog__header h2 em { color: var(--orange); font-style: normal; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-height: 80px;
  position: relative;
  margin-bottom: 40px;
}
/* Loading dots */
.blog__loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px;
}
.blog__dot {
  width: 10px; height: 10px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.blog__dot:nth-child(2) { animation-delay: 0.2s; }
.blog__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.4); opacity: 1; }
}
/* Blog card (rendered by blog.js) */
.blog__card {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.blog__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog__card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--orange-2);
}
.blog__card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog__card:hover .blog__card-thumb img { transform: scale(1.06); }
.blog__card-body { padding: 20px; }
.blog__card-date { font-size: 11px; color: var(--brown-light); margin-bottom: 6px; }
.blog__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.5;
}
.blog__more { text-align: center; }
.blog__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}
.blog__more-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: 120px 48px;
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact__sun-deco {
  position: absolute;
  top: -20px; right: -20px;
  width: 200px;
  pointer-events: none;
  opacity: 0.4;
  animation: contactSpin 20s linear infinite;
}
@keyframes contactSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.contact__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}
.contact__title em {
  font-style: normal;
  display: block;
  opacity: 0.9;
}
.contact__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 52px;
}
.contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact__btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white);
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  text-align: center;
}
.contact__btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.contact__btn-icon { font-size: 28px; }
.contact__btn-label { font-size: 14px; font-weight: 700; }
.contact__btn-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}
.contact__btn-sub { font-size: 12px; opacity: 0.75; }

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 60px 48px;
  background: var(--brown);
  color: rgba(255,255,255,0.75);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__logo-sun { width: 40px; height: auto; }
.footer__logo-text {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
}
.footer__desc { font-size: 13px; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-size: 13px;
}
.footer__nav a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--orange); }
.footer__copy { font-size: 12px; opacity: 0.45; }

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .header__inner { padding: 16px 32px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 120px 40px 80px;
    gap: 40px;
  }
  .hero__illust { order: -1; }
  .hero__illust-svg { max-width: 360px; }
  .hero__float-badge { left: auto; right: 0; }

  .about__values { grid-template-columns: repeat(2, 1fr); }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .service__grid { grid-template-columns: repeat(2, 1fr); }
  .fee__cards { grid-template-columns: 1fr; }
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow__arrow-wrap { transform: rotate(90deg); padding: 0; }
  .staff__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__methods { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .header__inner { padding: 14px 20px; }

  .hero__inner { padding: 100px 20px 60px; gap: 32px; }
  .hero__title { font-size: 34px; }
  .hero__ctas { flex-direction: column; }
  .btn { padding: 14px 28px; font-size: 14px; }

  .about { padding: 72px 20px; }
  .about__values { grid-template-columns: 1fr; }
  .pain { padding: 72px 20px; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__empathy { padding: 32px 24px; }
  .mission { padding: 80px 20px; }
  .mission__body { padding: 28px 24px; }
  .service { padding: 72px 20px; }
  .service__grid { grid-template-columns: 1fr; }
  .target { padding: 72px 20px; }
  .fee { padding: 72px 20px; }
  .flow { padding: 72px 20px; }
  .staff { padding: 72px 20px; }
  .staff__grid { grid-template-columns: 1fr; }
  .faq { padding: 72px 20px; }
  .blog { padding: 72px 20px; }
  .blog__grid { grid-template-columns: 1fr; }
  .contact { padding: 72px 20px; }
  .footer { padding: 48px 20px; }
  .footer__nav { gap: 10px 20px; }

  .mobile-menu__link { font-size: 22px; }
}
