@charset "UTF-8";
/* ==========================================================================
   Family Page Custom Design System (Flying Strawberry Tokyo)
   Target: Families, Kids, Bright & Playful
   ========================================================================== */
/* Variables */
/* Mixins */
/* Animations */
@keyframes famBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes famFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes famWave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes famPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 87, 106, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 87, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 106, 0);
  }
}
/* ==========================================================================
   Base Structure
   ========================================================================== */
.fs-fam-page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #4a4a4a;
  background-color: #fffbf5;
  overflow-x: hidden;
  line-height: 1.6;
}
.fs-fam-page * {
  box-sizing: border-box;
}
.fs-fam-page img {
  max-width: 100%;
  height: auto;
}

.fs-fam-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Typography & Shared Components
   ========================================================================== */
.fs-fam-section-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 800;
  color: #ff576a;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 5vw, 36px);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.fs-fam-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-color: #ffb12a;
  border-radius: 10px;
}

.fs-fam-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
}
.fs-fam-btn-primary {
  background-color: #ff576a;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 87, 106, 0.3);
  animation: famPulse 2s infinite;
}
.fs-fam-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 87, 106, 0.4);
  color: #ffffff;
}
.fs-fam-btn-outline {
  background-color: transparent;
  color: #ff576a;
  border: 2px solid #ff576a;
}
.fs-fam-btn-outline:hover {
  background-color: #ffdce0;
  color: #ff576a;
}

.fs-fam-badge {
  display: inline-block;
  background-color: #ffb12a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.fs-fam-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #fff0f5 0%, #fffff0 100%);
  text-align: center;
  overflow: hidden;
}
.fs-fam-hero .fs-fam-hero-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  overflow: hidden;
  z-index: 2;
  /* The wave translates left by 50% to create a seamless loop. */
  animation: famWave 12s linear infinite;
}
.fs-fam-hero .fs-fam-hero-wave-container svg {
  display: block;
  width: 100%;
  height: 100%;
}
.fs-fam-hero .fs-fam-hero-eyebrow {
  font-family: "Outfit", sans-serif;
  color: #ffb12a;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: block;
}
.fs-fam-hero .fs-fam-hero-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 800;
  color: #ff576a;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: clamp(32px, 6vw, 54px);
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}
.fs-fam-hero .fs-fam-hero-lead {
  font-size: clamp(16px, 3vw, 20px);
  color: #4a4a4a;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
.fs-fam-hero .fs-fam-hero-updated {
  font-size: 13px;
  color: #7a7a7a;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
.fs-fam-hero .fs-fam-floating-icon {
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  transform-origin: center;
  animation: famFloat 6s ease-in-out infinite;
}
.fs-fam-hero .fs-fam-floating-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 15px rgba(255, 87, 106, 0.2));
}
.fs-fam-hero .fs-fam-floating-icon.icon-1 {
  top: 5%;
  left: 8%;
  animation-delay: 0s;
  width: 60px;
  height: 60px;
}
.fs-fam-hero .fs-fam-floating-icon.icon-2 {
  top: 20%;
  right: 12%;
  animation-delay: 1.5s;
  width: 50px;
  height: 50px;
  animation-duration: 7s;
}
.fs-fam-hero .fs-fam-floating-icon.icon-3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 3s;
  width: 45px;
  height: 45px;
  animation-duration: 5s;
}
.fs-fam-hero .fs-fam-hero-photo {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
  z-index: 3;
}
.fs-fam-hero .fs-fam-hero-photo img {
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(255, 87, 106, 0.15);
  border: 6px solid #fff;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.fs-fam-hero .fs-fam-hero-photo img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* ==========================================================================
   Table of Contents
   ========================================================================== */
.fs-fam-toc {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 87, 106, 0.08);
  margin: -40px auto 60px;
  position: relative;
  z-index: 10;
  max-width: 700px;
}
.fs-fam-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.fs-fam-toc a {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fffbf5;
  border-radius: 12px;
  color: #4a4a4a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.fs-fam-toc a::before {
  content: "🍓";
  margin-right: 10px;
  font-size: 18px;
}
.fs-fam-toc a:hover {
  border-color: #ffdce0;
  background: #ffffff;
  color: #ff576a;
  transform: translateX(5px);
}

/* ==========================================================================
   Reason Cards (Safe & Clean)
   ========================================================================== */
.fs-fam-reasons {
  padding: 60px 0;
}

.fs-fam-reason-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fs-fam-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(255, 87, 106, 0.08);
  position: relative;
  border: 3px solid #f0e6da;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fs-fam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 87, 106, 0.15);
  border-color: #ffdce0;
}
.fs-fam-card-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #ffb12a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(255, 177, 42, 0.4);
}
.fs-fam-card h3 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 800;
  color: #ff576a;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.fs-fam-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
}

/* ==========================================================================
   Relax Area (Storytelling)
   ========================================================================== */
.fs-fam-story {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  border-radius: 32px;
  margin: 40px 20px;
}
.fs-fam-story .fs-fam-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fs-fam-story .fs-fam-story-image img {
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255, 87, 106, 0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 4px solid #f0e6da;
}
.fs-fam-story p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #4a4a4a;
}
.fs-fam-story p strong {
  color: #ff576a;
  background: linear-gradient(transparent 70%, #ffdce0 70%);
}

/* ==========================================================================
   Parfait Experience
   ========================================================================== */
.fs-fam-experience {
  padding: 80px 0;
}
.fs-fam-experience .fs-fam-parfait-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}
.fs-fam-experience .fs-fam-parfait-image img {
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(255, 87, 106, 0.15);
  width: 100%;
  height: auto;
  border: 4px solid #fff;
  transform: rotate(2deg);
}
.fs-fam-experience .fs-fam-step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 50px;
}
.fs-fam-experience .fs-fam-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(255, 87, 106, 0.08);
  border: 2px dashed #ffdce0;
}
.fs-fam-experience .fs-fam-step .step-icon {
  font-size: 40px;
  margin-bottom: 15px;
  animation: famBounce 2s infinite ease-in-out;
}
.fs-fam-experience .fs-fam-step h4 {
  font-weight: 800;
  color: #ff576a;
  margin-bottom: 10px;
}
.fs-fam-experience .fs-fam-step p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .fs-fam-experience .fs-fam-parfait-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.fs-fam-faq {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
.fs-fam-faq details {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 87, 106, 0.08);
  overflow: hidden;
  border: 1px solid #f0e6da;
}
.fs-fam-faq details summary {
  padding: 24px 60px 24px 24px;
  font-weight: 700;
  font-size: 18px;
  color: #4a4a4a;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}
.fs-fam-faq details summary::-webkit-details-marker {
  display: none;
}
.fs-fam-faq details summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ff576a;
  transition: transform 0.3s ease;
}
.fs-fam-faq details[open] {
  border-color: #ffdce0;
}
.fs-fam-faq details[open] summary {
  color: #ff576a;
  border-bottom: 1px dashed #f0e6da;
}
.fs-fam-faq details[open] summary::after {
  content: "−";
}
.fs-fam-faq details p {
  padding: 24px;
  margin: 0;
  background: #fafafa;
  line-height: 1.8;
}

/* ==========================================================================
   Footer Call to Action
   ========================================================================== */
.fs-fam-cta-section {
  padding: 80px 20px;
  background-color: #ff576a;
  text-align: center;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
  color: #ffffff;
}
.fs-fam-cta-section .fs-fam-section-title {
  color: #ffffff;
}
.fs-fam-cta-section .fs-fam-section-title::after {
  background-color: #ffffff;
}
.fs-fam-cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}
.fs-fam-cta-section .fs-fam-btn-primary {
  background-color: #ffffff;
  color: #ff576a;
  font-size: 20px;
  padding: 20px 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.fs-fam-cta-section .fs-fam-btn-primary::after {
  content: "🍓";
  margin-left: 10px;
}
.fs-fam-cta-section .fs-fam-btn-primary:hover {
  background-color: #fff9f9;
}
.fs-fam-cta-section .fs-fam-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  margin-top: 20px;
}
.fs-fam-cta-section .fs-fam-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
}
.fs-fam-cta-section .fs-fam-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
  .fs-fam-hero {
    padding: 100px 0 60px;
  }
  .fs-fam-hero .fs-fam-floating-icon {
    opacity: 0.4;
  }
  .fs-fam-hero .fs-fam-floating-icon.icon-1 {
    top: 5%;
    left: 5%;
    width: 40px;
    height: 40px;
  }
  .fs-fam-hero .fs-fam-floating-icon.icon-2 {
    top: 12%;
    right: 5%;
    width: 40px;
    height: 40px;
  }
  .fs-fam-hero .fs-fam-floating-icon.icon-3 {
    bottom: 30%;
    left: 5%;
    width: 35px;
    height: 35px;
  }
  .fs-fam-toc {
    margin: -30px 20px 40px;
    padding: 20px;
  }
  .fs-fam-toc ul {
    grid-template-columns: 1fr;
  }
  .fs-fam-card {
    padding: 30px 20px;
  }
  .fs-fam-card-number {
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .fs-fam-story {
    margin: 40px 0;
    border-radius: 0;
    padding: 60px 20px;
  }
  .fs-fam-story .fs-fam-story-grid {
    grid-template-columns: 1fr;
  }
  .fs-fam-btn {
    width: 100%;
  }
}

/*# sourceMappingURL=family_custom.css.map */
