@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* Colors
   -------------------------------------------------------------------------- */
/* Whiter background for cleaner look */
/* Typography
   -------------------------------------------------------------------------- */
/* Increased line-height for readability */
/* Breakpoints
   -------------------------------------------------------------------------- */
/* Spacing
   -------------------------------------------------------------------------- */
/* ==========================================================================
   Mixins
   ========================================================================== */
/* Media Queries
   -------------------------------------------------------------------------- */
/* Flexbox
   -------------------------------------------------------------------------- */
/* Visually Hidden
   -------------------------------------------------------------------------- */
/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin-top: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* Header
   -------------------------------------------------------------------------- */
.header {
  height: 80px;
  background-color: transparent;
  /* Start transparent */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: all 0.4s ease;
  /* Scrolled State */
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  height: 70px;
  /* Slightly smaller */
}
.header.is-scrolled .header__logo .logo-mv {
  display: none;
}
.header.is-scrolled .header__logo .logo-scrolled {
  display: block;
}
.header.is-scrolled .header__logo img {
  height: 40px;
  width: auto;
}
.header__logo {
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.header__logo img {
  height: auto;
  width: 80px;
  display: block;
  transition: height 0.4s ease;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 100px;
  }
}
.header__logo .logo-mv {
  display: block;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .header__logo .logo-mv {
    margin-top: 100px;
  }
}
.header__logo .logo-scrolled {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 40px;
  }
  .header__logo img {
    width: auto;
    height: 40px;
  }
  .header__logo .logo-mv {
    display: none;
    margin-top: 0;
  }
  .header__logo .logo-scrolled {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header__logo {
    opacity: 1;
  }
  .header.is-scrolled .header__logo .logo-mv {
    display: none;
  }
  .header.is-scrolled .header__logo .logo-scrolled {
    display: block;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__list {
  display: flex;
  gap: 40px;
}
.header__link {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  color: #333333;
  letter-spacing: 0.05em;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF9F43;
  transition: width 0.3s ease;
}
.header__link:hover::after {
  width: 100%;
}

/* Footer Waves
   -------------------------------------------------------------------------- */
.footer-waves {
  position: relative;
  width: 100%;
  margin-left: 0;
  height: 60px;
  margin-bottom: -1px;
  /* Prevent gap */
  overflow: hidden;
  background-color: #FDFBFB;
  /* Match section background */
  /* Remove top margin to connect directly */
  pointer-events: none;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  opacity: 0.8;
}
.wave--1 {
  /* Orange */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C250,10 750,50 1000,30' fill='none' stroke='%23FF9F43' stroke-width='2'/%3E%3C/svg%3E");
  animation: wave-vertical 4s ease-in-out infinite;
  z-index: 1;
}
.wave--2 {
  /* Blue */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,50 700,10 1000,30' fill='none' stroke='%2381D4FA' stroke-width='2'/%3E%3C/svg%3E");
  animation: wave-vertical 5s ease-in-out infinite;
  animation-delay: -1s;
  z-index: 2;
}
.wave--3 {
  /* Green */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,45 800,15 1000,30' fill='none' stroke='%23C5E1A5' stroke-width='2'/%3E%3C/svg%3E");
  animation: wave-vertical 6s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 3;
}
.wave--4 {
  /* Pink */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C400,10 600,50 1000,30' fill='none' stroke='%23FF8BA7' stroke-width='2'/%3E%3C/svg%3E");
  animation: wave-vertical 7s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 4;
}

@keyframes wave-vertical {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Footer
   -------------------------------------------------------------------------- */
/* Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: #FDFBFB;
  padding: 30px 0 30px;
  color: #333333;
}
.footer__container {
  max-width: 1200px;
  /* Wider container */
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 30px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-top: 60px;
  }
}
.footer__info-logo {
  margin-bottom: 24px;
  color: #333333;
}
.footer__info-logo img {
  height: auto;
  max-width: 108px;
  /* Smaller than before (was 100% of parent ~200px+) */
}
.footer__info p {
  font-size: 14px;
  line-height: 2;
  color: #666;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    align-items: flex-start;
  }
}
.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.footer__links a:hover {
  color: #FF9F43;
}
.footer__copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 60px;
  }
}

/* Main
   -------------------------------------------------------------------------- */
.main {
  position: relative;
  /* No padding-top needed if using full-screen hero, otherwise keep it */
  padding-top: 0;
  min-height: calc(100vh - 300px);
}

.section {
  position: relative;
  z-index: 1;
  /* Organic Background Accent */
}
.section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  /* Blob shape */
  transform: translateY(-50%) rotate(0deg);
  z-index: -1;
  pointer-events: none;
  animation: drift 20s infinite linear;
}
.section:nth-child(even)::before {
  left: auto;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 214, 165, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  animation-direction: reverse;
}

@keyframes drift {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* Container
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  /* Wider standard */
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 100px;
  background-color: #FF9F43;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid #FF9F43;
  min-width: 200px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
}
@media screen and (max-width: 400px) {
  .btn {
    min-width: 0;
    width: 100%;
  }
}
.btn:hover {
  background-color: #FFFFFF;
  color: #FF9F43;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4);
}
.btn--outline {
  background-color: transparent;
  color: #FF9F43;
  box-shadow: none;
}
.btn--outline:hover {
  background-color: #FF9F43;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 159, 67, 0.3);
}
.btn--line {
  background-color: #06C755;
  border-color: #06C755;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}
.btn--line:hover {
  background-color: #FFFFFF;
  color: #06C755;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}
.btn--wide {
  min-width: 300px;
}
@media screen and (max-width: 400px) {
  .btn--wide {
    min-width: 0;
  }
}
.btn--sm {
  min-width: 160px;
  padding: 12px 30px;
  font-size: 14px;
}
@media screen and (max-width: 400px) {
  .btn--sm {
    min-width: 0;
  }
}

/* Cards (Service / Feature)
   -------------------------------------------------------------------------- */
.card {
  background: #FFFFFF;
  border-radius: 24px 24px 24px 24px;
  /* Slightly more organic */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  /* Softer, larger shadow */
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 139, 167, 0.15);
  /* Main color glow */
}
.card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s;
  /* Organic Bottom shape */
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.card:hover .card__img {
  transform: scale(1.05);
}
.card__body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding: 32px;
  }
}
.card__title {
  font-size: 22px;
  margin-bottom: 16px;
  color: #333333;
  font-weight: 700;
}
.card__text {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.8;
  flex-grow: 1;
}

/* Section Title
   -------------------------------------------------------------------------- */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333333;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 40px;
    margin-bottom: 60px;
  }
}
.section-title {
  /* Remove old underline, simple modern look */
}
.section-title::after {
  display: none;
}
.section-title span {
  display: block;
  font-size: 14px;
  color: #FF9F43;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  /* English sub-label */
}

/* News Archive Page Cards
   -------------------------------------------------------------------------- */
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333333;
  transition: opacity 0.3s;
}
.news-card__link:hover {
  opacity: 0.7;
}
.news-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .news-card__img {
    height: 200px;
    margin-bottom: 24px;
  }
}
.news-card__img img,
.news-card__img div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-card .news-date {
  font-size: 14px;
  color: #888;
  min-width: auto;
}
.news-card .news-category {
  font-size: 12px;
  padding: 4px 12px;
  min-width: auto;
  /* ラベル幅の自動調整 */
}
.news-card .news-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}
.news-card .news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* News Detail Page
   -------------------------------------------------------------------------- */
.news-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.news-header .news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  /* 日付・カテゴリとタイトルの間隔 */
}
.news-header .news-date {
  font-size: 16px;
  color: #888;
}
.news-header .news-category {
  background-color: #FF9F43;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
}
.news-header .news-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .news-header .news-title {
    font-size: 28px;
  }
}

.news-body {
  line-height: 2;
  color: #333333;
  margin-bottom: 60px;
  /* 本文と戻るボタンの間隔 */
}
.news-body p {
  margin-bottom: 2em;
}
.news-body h2,
.news-body h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
  border-left: 5px solid #FF9F43;
  padding-left: 15px;
}
.news-body img {
  margin: 30px 0;
  border-radius: 8px;
}

/* ==========================================================================
   CONTACT & SNS Section (cta-section)
   ========================================================================== */
.cta-section__title {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .cta-section__title {
    margin-bottom: 20px;
  }
}

.contact-sns-desc {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact-sns-desc {
    font-size: 14px;
    margin-bottom: 56px;
  }
}

.contact-sns-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-sns-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
}

.contact-sns-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-sns-divider {
  display: none;
  width: 1px;
  height: 80px;
  background: #ddd;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .contact-sns-divider {
    display: block;
  }
}

.contact-sns-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.1em;
}

.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
  transition: opacity 0.3s, transform 0.3s;
}
.contact-line-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.contact-line-btn svg {
  flex-shrink: 0;
}

.sns-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s, transform 0.3s;
}
.sns-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.sns-btn svg {
  flex-shrink: 0;
}
.sns-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
}
.sns-btn--facebook {
  background: #1877F2;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
}

/* ==========================================================================
   SNS Contact Component
   ========================================================================== */
.sns-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* ==========================================================================
   Pages
   ========================================================================== */
/* Concept Section Decoration
   -------------------------------------------------------------------------- */
.concept-section {
  position: relative;
  overflow: hidden;
}

.cta-section {
  background-color: #FDFBFB;
}

.contact-intro {
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact-intro {
    margin: 0 auto 40px;
    font-size: 15px;
  }
}

.contact-line-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (min-width: 560px) {
  .contact-line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-line-grid > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: min(100%, 260px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .contact-line-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .contact-line-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

.contact-line-card {
  background: #fff;
  border: 1.5px solid #efefef;
  border-radius: 24px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "type action" "name action";
  align-items: center;
  gap: 4px 12px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-line-card {
    border-radius: 20px;
    padding: 28px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}
.contact-line-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 199, 85, 0.13);
  border-color: rgba(6, 199, 85, 0.4);
}
.contact-line-card__type {
  grid-area: type;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b8b8b8;
}
.contact-line-card__name {
  grid-area: name;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .contact-line-card__name {
    font-size: 22px;
  }
}
.contact-line-card__action {
  grid-area: action;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact-line-card__action {
    justify-self: auto;
    padding: 10px 18px;
    font-size: 12px;
    box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
  }
}
.contact-line-card:hover .contact-line-card__action {
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.5);
  transform: scale(1.04);
}

.map-section {
  background-color: #FDFBFB;
  padding-bottom: 0;
}
.map-section .container {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .map-section .container {
    padding-bottom: 120px;
  }
}

/* Section Wave Separator
   -------------------------------------------------------------------------- */
.section-wave {
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 101% 100%;
  border: none;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.section-wave--white {
  /* White wave pointing up (filled white) */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E");
  margin-top: -40px;
  /* Overlap previous section */
}
.section-wave--gray {
  /* Gray wave pointing up (filled gray) */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23FAFAFA' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E");
  margin-top: -1px;
}

.concept-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .concept-wrapper {
    padding: 0 20px;
    overflow: visible;
  }
}

.concept-title-wrapper {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .concept-title-wrapper {
    margin-bottom: 50px;
  }
}

.concept-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  position: relative;
  z-index: 2;
  padding: 8px 20px;
  background-color: #fff9c4;
  transform: rotate(-1deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .concept-title {
    font-size: 28px;
    padding: 10px 40px;
  }
}

.concept-body {
  line-height: 2;
  font-size: 14px;
  color: #555;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .concept-body {
    font-size: 16px;
    text-align: center;
    line-height: 2.2;
  }
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: floating 6s infinite ease-in-out;
  z-index: 0;
  transform: scale(0.6);
}
@media screen and (min-width: 768px) {
  .deco-circle {
    transform: scale(1);
  }
}
.deco-circle--1 {
  background-color: #FF9F43;
  /* Main Orange */
  width: 60px;
  height: 60px;
  top: 20px;
  right: 15%;
  animation-name: floatingScale;
  animation-duration: 7s;
}
.deco-circle--2 {
  background-color: #81D4FA;
  /* Light Blue */
  width: 40px;
  height: 40px;
  bottom: 40px;
  left: 10%;
  animation-name: floatingRotate;
  animation-delay: 1s;
  animation-duration: 8s;
}
.deco-circle--3 {
  background-color: #C5E1A5;
  /* Light Green */
  width: 30px;
  height: 30px;
  top: 150px;
  left: 5%;
  animation-name: floatingDrift;
  animation-delay: 2s;
  animation-duration: 9s;
}
.deco-circle--4 {
  background-color: #CE93D8;
  /* Lavender */
  width: 50px;
  height: 50px;
  top: 80px;
  left: 20%;
  animation-name: floatingScale;
  animation-delay: 0.5s;
  animation-duration: 7.5s;
  opacity: 0.4;
}
.deco-circle--5 {
  background-color: #FFF59D;
  /* Light Yellow */
  width: 70px;
  height: 70px;
  bottom: 80px;
  right: 5%;
  animation-name: floatingRotate;
  animation-delay: 1.5s;
  animation-duration: 6.5s;
}
.deco-circle--6 {
  background-color: #FFD6A5;
  /* Pale Orange */
  width: 20px;
  height: 20px;
  bottom: 20%;
  right: 25%;
  animation-name: floatingDrift;
  animation-delay: 3s;
  animation-duration: 5s;
}
@media screen and (min-width: 768px) {
  .deco-circle {
    opacity: 0.4;
  }
}

/* Top Page - Main Visual
   -------------------------------------------------------------------------- */
.mv {
  height: 100vh;
  /* Full screen */
  width: 100%;
  background-color: #F5F7FA;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 80px;
  /* Placeholder for actual image */
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/mv.png");
  background-size: cover;
  background-position: center;
  animation: zoomIn 10s infinite alternate;
  /* Subtle zoom effect */
  z-index: 1;
}
.mv {
  /* Overlay for text readability */
}
.mv__content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 0 20px;
  margin-left: 4%;
  max-width: 800px;
}
.mv__title {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 56px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
.mv__subtitle {
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 18px;
    padding: 10px 30px;
    line-height: 2;
  }
}

/* Section Common
   -------------------------------------------------------------------------- */
.section {
  /* Default for subpages (More spacing) */
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.section {
  /* Decorative background shape example */
}
.section:nth-child(even) {
  background-color: #FDFBFB;
}

.main > .container.section:first-child {
  padding-top: 160px;
}
@media screen and (min-width: 768px) {
  .main > .container.section:first-child {
    padding-top: 120px;
  }
}

/* Home Page Section Spacing (Tighter) */
.home .section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .home .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* News Section
   -------------------------------------------------------------------------- */
.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.news-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-link {
  display: flex;
  padding: 18px 10px;
  flex-direction: column;
  gap: 8px;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-link {
    flex-direction: row;
    align-items: center;
    padding: 24px 20px;
    gap: 12px;
  }
}
.news-link:hover {
  background-color: #FDFBFB;
}

.news-date {
  font-family: inherit;
  /* Use base font */
  color: #888;
  min-width: 120px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.news-category {
  display: inline-block;
  background-color: #FF9F43;
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  min-width: auto;
  text-align: center;
  align-self: flex-start;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .news-category {
    align-self: auto;
    padding: 6px 16px;
    min-width: 90px;
  }
}

.news-title {
  font-weight: 500;
  font-size: 16px;
  flex-grow: 1;
}

/* Grid Layout
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .grid--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .grid--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.grid--4col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.grid--5col {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.grid--5col > :last-child:nth-child(odd) {
  grid-column: 1/-1;
  width: calc((100% - 12px) / 2);
  max-width: none;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .grid--5col {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .grid--5col > :last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* Hamburger Menu CSS (Refined)
   -------------------------------------------------------------------------- */
.hamburger {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  box-shadow: none;
  transition: background 0.3s ease;
  isolation: isolate;
}
.hamburger::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(190, 246, 222, 0.45) 0%, rgba(190, 246, 222, 0.18) 32%, rgba(255, 255, 255, 0) 72%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
.is-scrolled .hamburger {
  background: transparent;
  box-shadow: none;
}
.hamburger.is-active {
  background: transparent;
  box-shadow: none;
}
.hamburger.is-active::before {
  opacity: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  left: 50%;
  transform: translateX(-50%);
}
.hamburger span:nth-child(1) {
  top: 13px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
.hamburger span:nth-child(3) {
  top: 29px;
}
.hamburger.is-active span {
  background: #FF9F43;
}
.hamburger.is-active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu__logo {
  position: absolute;
  top: 24px;
  left: 24px;
}
.mobile-menu__logo img {
  width: auto;
  height: 40px;
}
.mobile-menu__list {
  text-align: center;
  width: 100%;
  padding: 0 40px;
}
.mobile-menu__list li {
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu__list li:first-child {
  border-top: 1px solid #f0f0f0;
}
.mobile-menu__list a {
  display: block;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
}
.mobile-menu__list a::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FF9F43;
  font-size: 22px;
  font-weight: 400;
}
.mobile-menu__list a:hover {
  color: #FF9F43;
  opacity: 1;
}
.mobile-menu.is-active .mobile-menu__list li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.is-active .mobile-menu__list li:nth-child(1) {
  transition-delay: 0.16s;
}
.mobile-menu.is-active .mobile-menu__list li:nth-child(2) {
  transition-delay: 0.22s;
}
.mobile-menu.is-active .mobile-menu__list li:nth-child(3) {
  transition-delay: 0.28s;
}
.mobile-menu.is-active .mobile-menu__list li:nth-child(4) {
  transition-delay: 0.34s;
}
.mobile-menu.is-active .mobile-menu__list li:nth-child(5) {
  transition-delay: 0.4s;
}
.mobile-menu__footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
}
.mobile-menu__footer p {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.05em;
}

body.no-scroll {
  overflow: hidden;
}
body.no-scroll .header__logo {
  opacity: 0;
  pointer-events: none;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
/* ==========================================================================
   Inline Style Replacements
   各HTMLファイルのインラインスタイルをクラスとして定義
   ========================================================================== */
/* --- index.html: Concept Section Gradient ---
   <section class="section concept-section concept-gradient">
   -------------------------------------------------------------------------- */
.concept-gradient {
  background-image: linear-gradient(to bottom, #fff, #FDFBFB);
}

/* --- index.html: Concept Lead Text ---
   <p class="concept-lead">
   -------------------------------------------------------------------------- */
.concept-lead {
  font-weight: 700;
  color: #FF9F43;
  font-size: 18px;
  text-align: center;
  margin-top: 40px;
}

/* --- Common: Cover Image (index / services) ---
   <img class="img-cover">
   -------------------------------------------------------------------------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Common: Map Container (index / about) ---
   <div class="map-container">
   -------------------------------------------------------------------------- */
.map-container {
  width: 100%;
  height: 400px;
  background-color: #eee;
  position: relative;
}

/* --- Common: Map Iframe (index / about) ---
   <iframe class="map-iframe">
   -------------------------------------------------------------------------- */
.map-iframe {
  border: 0;
}

/* --- services.html: Service Nav Card (center variant) ---
   <a class="card card--center">
   -------------------------------------------------------------------------- */
.card--center {
  text-align: center;
  min-height: 147px;
}
@media screen and (min-width: 768px) {
  .card--center {
    min-height: 0;
  }
}

/* --- services.html: Service Nav Card Body (center variant) ---
   <div class="card__body card__body--center">
   -------------------------------------------------------------------------- */
.card__body--center {
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px 12px;
}
@media screen and (min-width: 768px) {
  .card__body--center {
    gap: 15px;
    padding: 32px;
  }
}
.card__body--center > div > p {
  font-size: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .card__body--center > div > p {
    font-size: 13px;
  }
}
.card__body--center .card__title {
  font-size: 14px;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .card__body--center .card__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

/* --- services.html: Service Logo Wrapper (固定高さでロゴ位置を統一) ---
   <div class="service-logo-wrap"><img class="service-logo ..."></div>
   -------------------------------------------------------------------------- */
.service-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .service-logo-wrap {
    height: 110px;
  }
}

/* --- services.html: Service Logo ---
   <img class="service-logo service-logo--md">
   -------------------------------------------------------------------------- */
.service-logo {
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
.service-logo--sm {
  height: 24px;
  max-width: 74%;
}
@media screen and (min-width: 768px) {
  .service-logo--sm {
    height: 38px;
  }
}
.service-logo--md {
  height: 42px;
  max-width: 88%;
}
@media screen and (min-width: 768px) {
  .service-logo--md {
    height: 80px;
  }
}
.service-logo--lg {
  height: 50px;
  max-width: 88%;
}
@media screen and (min-width: 768px) {
  .service-logo--lg {
    height: 96px;
  }
}

/* --- services.html: Section Anchor (scroll offset) ---
   <section class="mb-60 section-anchor">
   -------------------------------------------------------------------------- */
.section-anchor {
  padding-top: 80px;
  margin-top: -80px;
}

/* --- services.html: Service Section Heading ---
   <h2 class="service-heading">
   -------------------------------------------------------------------------- */
.service-heading {
  border-left: 4px solid #FF9F43;
  padding-left: 12px;
  margin-bottom: 16px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .service-heading {
    border-left-width: 5px;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}

/* --- services.html: Service Image Wrapper ---
   <div class="service-img-wrap">
   -------------------------------------------------------------------------- */
.service-img-wrap {
  background: #fefefe;
  border: 1px solid #eee;
  height: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service-img-wrap {
    height: 100%;
    min-height: 300px;
  }
}

/* --- services.html: Kagayaki Images (3 photos: 1 top + 2 bottom) ---
   <div class="kagayaki-imgs">
   -------------------------------------------------------------------------- */
.kagayaki-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.kagayaki-imgs .service-img-wrap:first-child {
  grid-column: 1/-1;
}

/* --- services.html: Tsunagari Images (2 photos stacked) ---
   <div class="tsunagari-imgs">
   -------------------------------------------------------------------------- */
.tsunagari-imgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- about.html: Gaikan Photo ---
   <div class="about-gaikan">
   -------------------------------------------------------------------------- */
.about-gaikan {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .about-gaikan {
    height: 370px;
  }
}
.about-gaikan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* --- services.html: Service Sub-Section Subtitle ---
   <h4 class="mt-20 service-subtitle">
   -------------------------------------------------------------------------- */
.service-subtitle {
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* --- services.html / about.html: Info Table ---
   <table class="info-table">          ← services用（コンパクト）
   <table class="info-table info-table--full"> ← about用（余白大）
   -------------------------------------------------------------------------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .info-table {
    font-size: 14px;
  }
}
.info-table tr {
  border-bottom: 1px solid #eee;
}
.info-table th {
  text-align: left;
  padding: 8px 8px 8px 0;
  width: 30%;
  vertical-align: top;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .info-table th {
    padding: 10px 8px 10px 0;
    width: 38%;
  }
}
.info-table td {
  padding: 8px 0;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .info-table td {
    padding: 10px 0;
  }
}
.info-table--full {
  margin-top: 20px;
  font-size: 14px;
}
.info-table--full tr {
  border-bottom: 1px solid #ddd;
}
.info-table--full th {
  padding: 12px;
  background: #f9f9f9;
  width: 35%;
}
.info-table--full td {
  padding: 12px;
}

/* --- services.html: Footnote Text ---
   <p class="mt-10 text-note">
   -------------------------------------------------------------------------- */
.text-note {
  font-size: 14px;
  color: #666;
}

/* --- news.html / categories.html: Nav Filter Bar ---
   <div class="nav-filter">
   -------------------------------------------------------------------------- */
.nav-filter {
  text-align: center;
  margin-bottom: 40px;
}

/* --- about.html: Mission Card Title ---
   <h3 class="card__title mission-title">
   -------------------------------------------------------------------------- */
.mission-title {
  text-align: center;
  font-size: 20px;
  color: var(--color-green);
}

/* --- about.html: Mission Tagline ---
   <p class="mission-tagline">
   -------------------------------------------------------------------------- */
.mission-tagline {
  font-weight: bold;
  font-size: 1.1em;
  color: #FF9F43;
}

/* --- about.html: Mission Body Text ---
   <p class="mission-text">
   -------------------------------------------------------------------------- */
.mission-text {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .card .mission-text {
    text-align: center;
  }
}
/* --- contact.html: Form Container ---
   <div class="form-container">
   -------------------------------------------------------------------------- */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

/* --- contact.html: Required Label ---
   <span class="required-label">
   -------------------------------------------------------------------------- */
.required-label {
  color: red;
  font-size: 12px;
}

/* --- contact.html: Form Styles (moved from <style> block) ---
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.form-control:focus {
  border-color: pink;
  outline: none;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.has-error .form-control {
  border-color: red;
}
.has-error .error-message {
  display: block;
}

/* --- news-detail.html: Detail Content Container ---
   <div id="news-detail">
   -------------------------------------------------------------------------- */
#news-detail {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.text-lg {
  font-size: 18px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* Keyframes
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes floatingScale {
  0% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(20px, -30px) scale(1.3);
  }
  80% {
    transform: translate(-10px, -10px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes floatingRotate {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  30% {
    transform: rotate(25deg) translateY(-25px);
  }
  70% {
    transform: rotate(-15deg) translateY(-10px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes floatingDrift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* Observer Classes
   -------------------------------------------------------------------------- */
.js-scroll-trigger {
  opacity: 0;
  will-change: opacity, transform;
}
.js-scroll-trigger.is-visible {
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.js-fade-in {
  opacity: 0;
}
.js-fade-in.is-visible {
  animation: fadeIn 1.5s ease forwards;
}

/* Stagger Delays (for lists/grids)
   -------------------------------------------------------------------------- */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-700 {
  animation-delay: 0.7s;
}

.delay-800 {
  animation-delay: 0.8s;
}

.delay-900 {
  animation-delay: 0.9s;
}

.delay-1000 {
  animation-delay: 1s;
}

/* ==========================================================================
   Loading Screen
   ========================================================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__content {
  text-align: center;
}
.loader__logo {
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.loader__logo img {
  max-width: 600px;
  /* Much bigger as requested */
  width: 150px;
  /* Responsive fallback */
  height: auto;
}

/* Prevent scroll only during loading if handled by JS, 
   but handled by 'no-scroll' body class usually */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
