@charset "UTF-8";
br.sp {
  display: none;
}

br.pc {
  display: block;
}

@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  line-height: 1.4;
}

.nav-logo {
  width: 80px;
}

.nav-logo span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  display: block;
}

.nav-cta {
  background: var(--warm);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
@media (max-width: 800px) {
  .nav-cta {
    padding: 6px 12px;
  }
}

.nav-cta:hover {
  background: var(--warm-light);
  transform: translateY(-1px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/mv-bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 75%;
  border-radius: 0 0 0 60px;
  position: absolute;
  bottom: 200px;
  right: 0;
  left: auto;
}
@media (max-width: 800px) {
  .hero-bg {
    height: 360px;
    width: 94%;
  }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .hero-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 70% 30%,
      rgba(61, 107, 79, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(200, 98, 42, 0.06) 0%,
      transparent 40%
    );
}

.hero-pattern::before {
  content: "";
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 100% 70px; /* auto  を 100% に修正 */
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  top: -69px;
}

/* Rice grain decorative elements */
.rice-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
@media (max-width: 800px) {
  .hero-inner {
    padding-top: 15vh;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 158, 58, 0.2392156863);
  color: #e6521f;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease forwards;
}
@media (max-width: 800px) {
  .hero-eyebrow {
    display: none;
  }
}

.hero-h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease forwards;
  opacity: 0;
}
@media (max-width: 800px) {
  .hero-h1 {
    font-size: clamp(35px, 6vw, 64px);
  }
}

.hero-h1 em {
  font-style: normal;
  color: var(--warm);
  position: relative;
}

.hero-h1 em::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  opacity: 0.8;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.9;
  color: var(--soil-mid);
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.2s ease forwards;
  opacity: 0;
  font-weight: 500;
}
@media (max-width: 800px) {
  .hero-sub {
    font-size: 13px;
  }
}

.hero-stat-row {
  display: flex;
  gap: 24px;
  margin: 32px 0 40px;
  animation: fadeUp 0.7s 0.3s ease forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  color: var(--green);
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 800px) {
  .hero-stat-num {
    font-size: 30px;
  }
}

.hero-stat-num span {
  font-size: 18px;
}

.hero-stat-num span.hero-stat-num-text {
  font-size: 40px;
}
@media (max-width: 800px) {
  .hero-stat-num span.hero-stat-num-text {
    font-size: 30px;
  }
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text);
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1.5em;
}
@media (max-width: 800px) {
  .hero-stat-label {
    font-size: 13px;
  }
}

.hero-divider {
  width: 1px;
  background: var(--soil);
  align-self: stretch;
  margin: 4px 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.7s 0.4s ease forwards;
  opacity: 0;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-light);
  color: white;
  padding: 18px 32px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  width: fit-content;
}
@media (max-width: 800px) {
  .cta-primary {
    font-size: 13.5px;
    padding: 10px 2px 10px 6px;
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}

.cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
}

.cta-primary:hover {
  background: #f38e1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(61, 107, 79, 0.3);
}

.cta-primary .arrow {
  font-size: 20px;
}
@media (max-width: 800px) {
  .cta-primary .arrow {
    font-size: 16px;
  }
}

.cta-sub-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6521f;
  border: 2px solid #e6521f;
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.25s;
}

.cta-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s ease forwards;
  opacity: 0;
}
@media (max-width: 800px) {
  .hero-trust {
    margin-top: 28px;
    gap: 0;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  padding-left: 24px;
}
.trust-item::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Big illustration area right side */
.hero-visual {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 45vw);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease forwards;
  opacity: 0;
}

.bowl-illustration {
  width: 100%;
  max-width: 380px;
}

/* ===================== PROBLEM ===================== */
.wave-section {
  position: relative;
  background: #fdfaf4;
  height: 50vh;
}

.wave {
  position: absolute;
  height: 47px;
  width: 100%;
  background: #fdfaf4;
  bottom: 0;
}

.wave::before,
.wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.wave::before {
  width: 55%;
  height: 109%;
  background-color: #fff;
  right: -1.5%;
  top: 60%;
}

.wave::after {
  width: 55%;
  height: 100%;
  background-color: #fdfaf4;
  left: -1.5%;
  top: 40%;
}

.section-problem {
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--green-light);
}

.section-label.dark {
  color: var(--warm);
}

.problem-headline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 48px;
}

.problem-headline em {
  font-style: normal;
  color: var(--warm-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}

.problem-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  position: relative;
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
}

.problem-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  line-height: 1;
  position: absolute;
  top: -34px;
  left: 20px;
  font-weight: 800;
  color: #888;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

.problem-card p {
  line-height: 1.8;
}

.flow-diagram {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 40px;
  justify-content: center;
  background: rgba(223, 223, 221, 0.431372549);
}
@media (max-width: 800px) {
  .flow-diagram {
    flex-direction: column;
  }
}

.flow-step-label {
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2rem;
  border-bottom: 2px dashed #505050;
  padding: 2px 0 5px 0;
}

.flow-icon {
  width: 70px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  padding: 16px 20px;
  width: 190px;
  height: 170px;
  border-radius: 20px;
  background-color: #ffffff;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5rem;
}

.flow-step:last-child {
  text-align: center;
  padding: 12px 20px 0;
  width: 190px;
  height: auto;
  border-radius: 20px;
  background-color: var(--soil-mid);
  color: #fff;
  font-weight: 500;
}
.flow-step:last-child .flow-step-label {
  color: #fff;
  border-bottom: 2px dashed #fff;
  padding: 2px 0 5px 0;
}
.flow-step:last-child .flow-icon {
  padding-top: 4px;
  width: 120px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.flow-step-text {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.flow-step-text.red {
  color: #ff6b6b;
  color: var(--soil);
}

.flow-step-text.green {
  color: var(--green-light);
}

.flow-arrow {
  font-size: 24px;
  padding: 0 8px;
}
@media (max-width: 800px) {
  .flow-arrow {
    font-size: 17px;
    padding: 0 4px;
    transform: rotate(90deg);
  }
}

/* ===================== SOLUTION ===================== */
.section-solution {
  padding: 100px 40px;
  background: var(--yellow);
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solution-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-headline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--soil);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-headline em {
  font-style: normal;
  color: var(--text);
}

.section-sub {
  font-size: 16px;
  color: var(--soil-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(61, 107, 79, 0.08);
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61, 107, 79, 0.15);
}

.step-num {
  position: absolute;
  top: -25px;
  left: 28px;
  background: var(--warm);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  max-height: 180px;
}

.step-card h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--soil);
  margin-bottom: 8px;
}

.step-card .step-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.step-card p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--soil-mid);
  font-weight: 500;
}

@media (max-width: 800px) {
  .solution-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 90px 10px 60px 10px;
  }
  .section-problem,
  .section-solution,
  .section-story,
  .section-faq {
    padding: 60px 24px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-card {
    border-radius: 12px !important;
  }
  nav {
    padding: 14px 20px;
  }
  .hero-stat-row {
    gap: 8px;
  }
}
/* ===================== PLANS ===================== */
.section-plans {
  padding: 100px 40px;
  background: var(--cream);
}
@media (max-width: 800px) {
  .section-plans {
    padding: 100px 20px 190px;
  }
}

.plans-header {
  text-align: center;
  margin-bottom: 16px;
}

.plans-subtitle {
  text-align: center;
  color: var(--soil-mid);
  margin-bottom: 56px;
  line-height: 1.8;
}

.plans-subtitle strong {
  color: var(--warm);
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 40px;
  }
}
.plan-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  border-color: var(--soil-mid);
  background: var(--soil-mid);
  color: white;
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.plan-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
  text-align: center;
  width: 140px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.plan-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 700;
}

.plan-card.featured .plan-tagline {
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
}

.plan-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
  margin-bottom: 4px;
}

.plan-card.featured .plan-price {
  color: white;
}

.plan-price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.plan-period {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 20px 0;
}

.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, 0.2);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 500;
}

.plan-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card.featured .plan-features li::before {
  color: #a8d5b5;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-plan-green {
  background: var(--green);
  color: white;
}

.btn-plan-green:hover {
  background: #2d5239;
}

.btn-plan-white {
  background: white;
  color: var(--green);
  border: 2px solid white;
}

.btn-plan-white:hover {
  background: var(--green-pale);
  color: var(--green);
}

.btn-plan-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--rice-dark);
}

.btn-plan-outline:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.plans-note {
  text-align: center;
  color: var(--gray);
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .plans-note {
    font-size: 0.9rem;
    text-align: left;
  }
}

.plans-philosophy {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--soil-mid) 0%, var(--orange) 100%);
  border-radius: 20px;
  max-width: 800px;
  margin: 48px auto 0;
}
@media (max-width: 800px) {
  .plans-philosophy {
    padding: 20px;
  }
}

.plans-philosophy p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: white;
  line-height: 1.6;
}

.plans-philosophy p em {
  font-style: normal;
  color: var(--rice);
}

/* ===================== TRANSPARENCY ===================== */
.section-transparency {
  padding: 80px 40px;
  background: var(--rice);
  position: relative;
}

.transparency-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 800px) {
  .transparency-bg {
    position: absolute;
    right: 0;
    top: -120px;
    width: 100%;
    height: 200px;
    overflow: hidden;
    left: auto;
    margin: auto;
    text-align: center;
  }
}
.transparency-bg img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: -190px center;
}
@media (max-width: 800px) {
  .transparency-bg img {
    height: auto;
    width: 70%;
    object-fit: contain;
    object-position: center center;
  }
}

.transparency-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 700px) {
  .transparency-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.transparency-text h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--soil);
  line-height: 1.4;
  margin-bottom: 20px;
}

.transparency-text p {
  color: var(--soil-mid);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.1rem;
}

.transparency-list {
  list-style: none;
}

.transparency-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 700;
  border-top: 3px #fff dashed;
  padding: 20px 0 20px;
}

.transparency-list li:last-child {
  border-bottom: 3px #fff dashed;
}

.transparency-list li .tl-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.transparency-breakdown {
  background: rgba(255, 255, 255, 0.9490196078);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(61, 107, 79, 0.1);
}

.breakdown-icon {
  width: 20px;
  height: 20px;
}

.breakdown-title {
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: solid #e5e5e5 1px;
}

.breakdown-bar {
  margin-bottom: 16px;
}

.breakdown-label {
  display: flex;
  justify-content: flex-start;
  font-size: 16px;
  color: var(--soil-mid);
  margin-bottom: 6px;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.breakdown-track {
  height: 10px;
  background: var(--rice);
  border-radius: 50px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1s ease;
}

.fill-green {
  background: var(--green);
}

.fill-light {
  background: var(--green-light);
}

.fill-warm {
  background: var(--warm-light);
}

/* ===================== STORY ===================== */
.section-story {
  padding: 60px 40px;
  background: white;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-image {
  width: 600px;
  height: 300px;
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .story-image {
    width: 100%;
    margin-bottom: 0;
  }
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -57px;
}
@media (max-width: 800px) {
  .story-image img {
    width: auto;
    object-position: center -57px;
  }
}

.story-inner .section-label {
  display: block;
  margin-bottom: 16px;
}

.story-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--soil);
  line-height: 1.5;
  margin-bottom: 40px;
}

.story-inner h2 em {
  font-style: normal;
  color: var(--soil);
}

.story-quote {
  background: rgba(195, 195, 195, 0.1411764706);
  padding: 28px 32px;
  text-align: left;
  border-radius: 12px;
  margin: 32px 0;
}

.story-quote p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  color: var(--soil);
  line-height: 2;
  font-style: italic;
}

.story-body {
  font-size: 16px;
  line-height: 2;
  text-align: left;
}

.story-body p {
  margin-bottom: 20px;
}

.story-body strong {
  color: var(--soil);
  font-weight: 700;
}

.story-sign {
  margin-top: 40px;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.story-sign span {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

/* ===================== FAQ ===================== */
.section-faq {
  padding: 80px 40px;
  background: var(--cream);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--soil);
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--rice-dark);
  padding: 22px 0;
}

.faq-q {
  font-weight: 700;
  color: var(--soil);
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 1.2rem;
}
@media (max-width: 800px) {
  .faq-q {
    line-height: 1.5;
  }
}

.faq-q::before {
  content: "Q";
  background: var(--orange);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  padding-bottom: 3px;
}

.faq-a {
  margin-top: 14px;
  margin-left: 36px;
  color: var(--text);
  line-height: 1.9;
}

/* ===================== FINAL CTA ===================== */
.section-final-cta {
  padding: 100px 40px;
  background: var(--warm-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .section-final-cta {
    padding: 40px 10px;
  }
}

.section-final-cta::before {
  content: "";
  background-image: url(../images/final-cta.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  font-size: 200px;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  left: 580px;
  transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .section-final-cta::before {
    left: 0;
    transform: none;
  }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 16px;
}

.final-cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .final-cta-inner p {
    margin-bottom: 80px;
  }
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-final-white {
  background: white;
  color: var(--green);
  padding: 22px 36px 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.25s;
}

.btn-final-white:hover {
  background: var(--rice);
  transform: translateY(-2px);
}

.btn-final-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.25s;
}
.btn-final-outline .mail-icon {
  padding-top: 5px;
}

.btn-final-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.plan-select-block {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

select#planSelect,
select#planSelect2 {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border-color: #ffffff;
  background: #eee;
}

/* ===================== FOOTER ===================== */
footer {
  background: #fff;
  color: rgba(255, 255, 255, 0.5);
  color: #555;
  padding: 48px 40px;
  font-size: 13px;
  line-height: 2;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .final-cta-inner h2 {
    font-size: 24px;
  }
}
.footer-brand {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--soil-mid);
  margin-bottom: 12px;
}

.footer-links h4 {
  font-size: 12px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: var(--warm);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer_sns ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
  gap: 16px;
  margin-left: -32px !important;
}
@media (max-width: 800px) {
  .footer_sns ul {
    margin: 16px 0 20px;
  }
}
.footer_sns ul .fa-instagram {
  color: var(--soil-mid);
}
.footer_sns ul img.footer_brand-icon {
  height: 20px;
}
.footer_sns ul li {
  width: 24px;
  height: auto;
}
.footer_sns ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_sns ul svg.x1ypdohk.x13dflua.x11xpdln.xk4oym4.xus2keu {
  fill: var(--soil-mid);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--warm);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(200, 98, 42, 0.4);
  transition: all 0.25s;
  display: none;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  cursor: pointer;
  padding-left: 40px;
}
.floating-cta::before {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../images/lice-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  padding: 0 6px;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}

.floating-cta:hover {
  background: var(--warm-light);
  transform: translateY(-2px);
}

.floating-cta.show {
  display: block;
  animation: fadeUp 0.4s ease;
} /*# sourceMappingURL=main.css.map */
