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

br.md {
  display: none;
}

br.pc {
  display: block;
}

@media screen and (max-width: 1280px) {
  br.sp {
    display: none;
  }
  br.md {
    display: block;
  }
  br.pc {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  br.md {
    display: block;
  }
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 800px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .container {
    padding: 0 16px;
  }
}

body {
  box-sizing: border-box;
}

/* ===================== NAVIGATION ===================== */
nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 16px;
  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;
  width: 100px;
}
@media (max-width: 500px) {
  .nav-logo {
    width: 60px;
  }
}

.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 {
  background-image: url(../images/mv@2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 1280px) {
  .hero {
    background-image: url(../images/fv-md@1.5x-wide.jpg);
    background-image: url(../images/fv-md-bg@1.5x.jpg);
    background-size: cover;
    height: 620px;
  }
}
@media (max-width: 800px) {
  .hero {
    background-image: url(../images/mv-bg1.jpg);
    height: auto;
  }
}

.hero-bg {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 40px 270px 40px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .hero-bg {
    padding: 0 20px 0 116px;
  }
}
@media (max-width: 800px) {
  .hero-bg {
    padding: 0 8px 0 8px;
  }
}
@media (max-width: 800px) {
  .hero-bg {
    display: none;
  }
}

.hero-bg-sp {
  display: none;
}
@media (max-width: 800px) {
  .hero-bg-sp {
    display: block;
  }
}

.btn-sp-only {
  display: none;
}
@media (max-width: 800px) {
  .btn-sp-only {
    display: block;
    background-color: #252c49;
    padding: 10px 16px;
  }
}

.hero-bg-in {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1280px) {
  .hero-bg-in {
    max-width: 1000px;
  }
}

.hero-bottom-block {
  display: block;
}
@media (max-width: 1280px) {
  .hero-bottom-block {
    display: flex;
  }
}
.hero-bottom-block .left {
  width: 100%;
}
@media (max-width: 1280px) {
  .hero-bottom-block .left {
    width: 50%;
    padding-right: 10px;
  }
}
.hero-bottom-block .right {
  display: none;
}
@media (max-width: 1280px) {
  .hero-bottom-block .right {
    display: block;
    width: 50%;
  }
}

.hero-bottom {
  z-index: 5;
  position: absolute;
  top: -250px;
  left: 0;
  width: 100%;
  background-image: url(../images/mv-bottom.png);
  background-size: 100% 100%;
  height: 340px;
  background-repeat: no-repeat;
}
@media (max-width: 1280px) {
  .hero-bottom {
    display: none;
  }
}
@media (max-width: 800px) {
  .hero-bottom {
    display: block;
    height: 200px;
    top: -120px;
    background-size: 100% 47%;
    height: 340px;
    background-position: 0;
  }
}
@media (max-width: 800px) {
  .hero-bottom {
    display: none;
  }
}
.hero-bottom .hero-bottom-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 10%;
}
@media (max-width: 800px) {
  .hero-bottom .hero-bottom-inner {
    padding: 0 20px;
  }
}
.hero-bottom .block-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 1280px) {
  .hero-bottom .block-wrapper {
    padding: 0 20px;
    top: 30px;
  }
}
@media (max-width: 800px) {
  .hero-bottom .block-wrapper {
    display: none;
  }
}
.hero-bottom .point-block {
  max-width: 700px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .hero-bottom .point-block {
    margin-bottom: 16px;
  }
}
@media (max-width: 800px) {
  .hero-bottom .point-block {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.hero-bottom .point-block .item:first-child {
  width: 234px;
  height: 219px;
}
@media (max-width: 1280px) {
  .hero-bottom .point-block .item:first-child {
    width: auto;
    height: 180px;
  }
}
.hero-bottom .point-block .item:nth-child(2) {
  width: 234px;
  height: 219px;
}
@media (max-width: 1280px) {
  .hero-bottom .point-block .item:nth-child(2) {
    width: auto;
    height: 180px;
  }
}
.hero-bottom .point-block .item:nth-child(3) {
  width: 226px;
  height: 210px;
}
@media (max-width: 1280px) {
  .hero-bottom .point-block .item:nth-child(3) {
    width: auto;
    height: 180px;
  }
}
.hero-bottom .point-block .item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.hero-bottom .feature-block {
  max-width: 600px;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  padding-bottom: 52px;
}
@media (max-width: 800px) {
  .hero-bottom .feature-block {
    gap: 10px;
    padding-bottom: 20px;
  }
}
.hero-bottom .feature-block .item:first-child(1) {
  width: 298px;
  height: 80px;
  max-width: 298px;
}
.hero-bottom .feature-block .item:first-child(2) {
  width: 347px;
  height: 80px;
  max-width: 347px;
}
.hero-bottom .hero-bottom-image {
  z-index: 5;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  top: 0;
}

.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: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .hero-inner {
    padding-top: 0;
  }
}

.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-wrap {
  background-image: url(../images/mv-fuki.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 605px;
  height: 349px;
  margin-bottom: 25px;
  animation: fadeUp 0.7s 0.1s ease forwards;
  opacity: 0;
}
@media (max-width: 1280px) {
  .hero-h1-wrap {
    height: 300px;
    width: 64%;
    max-width: 506px;
    background-size: 100% 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 1000px) {
  .hero-h1-wrap {
    width: 64%;
    max-width: 390px;
  }
}
@media (max-width: 500px) {
  .hero-h1-wrap {
    width: 53%;
    max-width: 150px;
  }
}

.hero-h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.3;
  color: #222222;
  text-align: center;
  text-wrap: nowrap;
  padding-top: 80px;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .hero-h1 {
    padding-top: 40px;
    margin-bottom: 0;
  }
}
.hero-h1 .hero-h1-bottom {
  font-size: 42px;
  line-height: 83px;
  text-align: center;
}
@media (max-width: 1280px) {
  .hero-h1 .hero-h1-bottom {
    font-size: 38px;
    line-height: 1.2;
    padding-top: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (max-width: 800px) {
  .hero-h1 .hero-h1-bottom {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
  }
}
.hero-h1 .hero-text-pc {
  display: block;
}
.hero-h1 .hero-text-md {
  display: none;
}
.hero-h1 .hero-text-sp {
  display: none;
}
@media (max-width: 800px) {
  .hero-h1 .hero-text-pc {
    display: none;
  }
  .hero-h1 .hero-text-md {
    display: none;
  }
  .hero-h1 .hero-text-sp {
    display: block;
  }
}

.hero-h1 em {
  font-style: normal;
  color: #e6521f;
  position: relative;
  border-bottom: 4px dashed #a0a0a0;
  padding-bottom: 3px;
}

.hero-sub {
  width: 100%;
  font-size: clamp(12px, 3vw, 22px);
  color: #e6521f;
  line-height: 1.786;
  text-align: left;
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.2s ease forwards;
  opacity: 0;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .hero-sub {
    font-size: 18px;
    line-height: 1.5;
    width: 100%;
  }
}

.hero-stat-row {
  display: flex;
  gap: 24px;
  margin: 32px 0 40px;
  animation: fadeUp 0.7s 0.3s ease forwards;
  opacity: 0;
}
@media (max-width: 800px) {
  .hero-stat-row {
    margin: 20px 0 24px;
    justify-content: center;
  }
}

.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;
}
@media (max-width: 800px) {
  .hero-ctas {
    align-items: center;
  }
}

.cta-primary {
  border-radius: 42px;
  background-image: -moz-linear-gradient(90deg, rgb(234, 47, 20) 34%, rgb(251, 158, 58) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(234, 47, 20) 34%, rgb(251, 158, 58) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(234, 47, 20) 34%, rgb(251, 158, 58) 100%);
  width: 522px;
  height: 85px;
  padding-left: 100px;
  padding-right: 64px;
  display: inline-flex;
  align-items: center;
  color: white;
  border-radius: 60px;
  font-size: 28px;
  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;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .cta-primary {
    height: 60px;
    width: 250px;
    margin-bottom: 20px;
    font-size: 13.5px;
    padding: 10px 2px 10px 22px;
    width: 300px;
    max-width: 300px;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }
}
@media (max-width: 500px) {
  .cta-primary {
    height: 60px;
    width: 200px;
    margin-bottom: 20px;
    font-size: 13.5px;
    padding: 10px 2px 10px 22px;
    width: 100%;
    max-width: 200px;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }
}
.cta-primary::before {
  width: 37px;
  height: 30px;
  display: block;
  content: "";
  background-image: url(../images/btn-icon-w.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 40px;
  position: absolute;
}
@media (max-width: 800px) {
  .cta-primary::before {
    width: 24px;
    height: 20px;
    left: 12px;
    background-size: contain;
  }
}

.cta-primary.mv-btn {
  border-radius: 42px;
  background: var(--warm);
  width: 522px;
  padding-left: 100px;
  padding-right: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 60px;
  font-size: 28px;
  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;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .cta-primary.mv-btn {
    margin-bottom: 20px;
    height: 68px;
    font-size: 22px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .cta-primary.mv-btn {
    height: 60px;
    margin-bottom: 20px;
    font-size: 18px;
    padding: 10px 2px 10px 22px;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    display: flex;
  }
}
@media (max-width: 800px) {
  .cta-primary.mv-btn {
    height: 60px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 10px 2px 10px 22px;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
  }
}
.cta-primary.mv-btn::before {
  width: 37px;
  height: 30px;
  display: block;
  content: "";
  background-image: url(../images/btn-icon-w.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 4px;
  bottom: 0;
  margin: auto;
  left: 40px;
  position: absolute;
}
@media (max-width: 1000px) {
  .cta-primary.mv-btn::before {
    width: 24px;
    height: 20px;
    left: 12px;
    background-size: contain;
  }
}

.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 ===================== */
.section-problem {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../images/sec1-bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #363a56;
  margin: 0;
  border: 0;
}

.section-problem {
  padding: 150px 40px 100px 40px;
}
@media (max-width: 1280px) {
  .section-problem {
    padding: 80px 24px 30px 24px;
  }
}
@media (max-width: 500px) {
  .section-problem {
    padding: 70px 24px 30px;
  }
}

.wave-bottom {
  --mask:
    radial-gradient(33.6px at 50% 47px, #000 99%, #0000 101%) calc(50% - 40px)
      0/80px 51% repeat-x,
    radial-gradient(33.6px at 50% -27px, #0000 99%, #000 101%) 50% 20px/80px
      calc(51% - 20px) repeat-x,
    radial-gradient(33.6px at 50% calc(100% - 47px), #000 99%, #0000 101%)
      calc(50% - 40px) 100%/80px 51% repeat-x,
    radial-gradient(33.6px at 50% calc(100% + 27px), #0000 99%, #000 101%) 50%
      calc(100% - 20px)/80px calc(51% - 20px) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
@media (max-width: 1023px) {
  .wave-bottom {
    --mask:
      radial-gradient(30.24px at 50% 42.3px, #000 99%, #0000 101%)
        calc(50% - 36px) 0/72px 51% repeat-x,
      radial-gradient(30.24px at 50% -24.3px, #0000 99%, #000 101%) 50%
        18px/72px calc(51% - 18px) repeat-x,
      radial-gradient(30.24px at 50% calc(100% - 42.3px), #000 99%, #0000 101%)
        calc(50% - 36px) 100%/72px 51% repeat-x,
      radial-gradient(30.24px at 50% calc(100% + 24.3px), #0000 99%, #000 101%)
        50% calc(100% - 18px)/72px calc(51% - 18px) repeat-x;
  }
}
@media (max-width: 1023px) and (max-height: 500px) {
  .wave-bottom {
    --mask:
      radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%)
        calc(50% - 20px) 0/40px 51% repeat-x,
      radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50%
        10px/40px calc(51% - 10px) repeat-x,
      radial-gradient(
          16.01px at 50% calc(100% - 22.5px),
          #000 99%,
          #0000 101%
        )
        calc(50% - 20px) 100%/40px 51% repeat-x,
      radial-gradient(
          16.01px at 50% calc(100% + 12.5px),
          #0000 99%,
          #000 101%
        )
        50% calc(100% - 10px)/40px calc(51% - 10px) repeat-x;
  }
}
@media (max-width: 480px) {
  .wave-bottom {
    --mask:
      radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%)
        calc(50% - 20px) 0/40px 51% repeat-x,
      radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50%
        10px/40px calc(51% - 10px) repeat-x,
      radial-gradient(16.01px at 50% calc(100% - 22.5px), #000 99%, #0000 101%)
        calc(50% - 20px) 100%/40px 51% repeat-x,
      radial-gradient(16.01px at 50% calc(100% + 12.5px), #0000 99%, #000 101%)
        50% calc(100% - 10px)/40px calc(51% - 10px) repeat-x;
  }
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .problem-inner {
    padding-top: 0;
  }
}

.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 {
  margin-bottom: 60px;
}
@media (max-width: 500px) {
  .problem-grid {
    margin-bottom: 10px;
  }
}

.problem-text {
  margin-bottom: 20px;
}

.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;
}

.problem-bottom {
  padding: 0;
  line-height: 0;
  margin: 0;
}

.section-sikumi {
  padding: 80px 40px 53px;
  background: #fcf3da;
  position: relative;
}
@media (max-width: 800px) {
  .section-sikumi {
    padding: 60px 16px 53px;
  }
}
.section-sikumi::after {
  position: absolute;
  background-image: url(../images/sec2-bg-bottom.png);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -51px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 52px;
  content: "";
  display: block;
}
@media (max-width: 800px) {
  .section-sikumi::after {
    background-size: 100%;
  }
}
.section-sikumi .section-inner {
  width: 87.5%;
  max-width: 87.5%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .section-sikumi .section-inner {
    width: 100%;
    max-width: 100%;
  }
}
.section-sikumi .section-headline {
  position: relative;
  font-size: 36px;
  color: #222222;
  font-weight: bold;
  line-height: 1.528;
  text-align: center;
}
@media (max-width: 800px) {
  .section-sikumi .section-headline {
    font-size: 20px;
  }
}
.section-sikumi .section-headline .icon-ine {
  position: absolute;
  top: 0;
  left: 30px;
}
@media (max-width: 800px) {
  .section-sikumi .section-headline .icon-ine {
    left: 0;
    height: 60px;
  }
  .section-sikumi .section-headline .icon-ine img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }
}
.section-sikumi .section-headline .text-red {
  color: #ea2f14;
}
.section-sikumi .section-headline .icon-tori {
  position: absolute;
  left: 125px;
  top: 37px;
  width: 116px;
  width: 6%;
  height: atuo;
}
.section-sikumi .section-sub {
  margin: 0 auto;
  background-image: url(../images/sec2-fuki.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 158px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 993px;
}
@media (max-width: 800px) {
  .section-sikumi .section-sub {
    margin-bottom: 20px;
    background-image: url(../images/sec2-fuki-sp.png);
  }
}
.section-sikumi .section-sub .section-sub-inner {
  height: 100%;
  font-size: 36px;
  color: #ea2f14;
  line-height: 1.528;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #e6521f;
  line-height: 1.528;
}
@media (max-width: 800px) {
  .section-sikumi .section-sub .section-sub-inner {
    font-size: 20px;
  }
}
.section-sikumi .sikumi-steps {
  text-align: center;
}

.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);
  }
}

section.voice {
  padding: 120px 40px;
}
@media (max-width: 800px) {
  section.voice {
    padding: 60px 12px;
  }
}
section.voice .plans-header {
  margin-bottom: 100px;
}
@media (max-width: 800px) {
  section.voice .plans-header {
    margin-bottom: 50px;
  }
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin-bottom: 50px;
  padding-bottom: 100px;
}
@media (max-width: 800px) {
  .swiper {
    padding-bottom: 50px;
  }
}

.swiper-pagination-bullet {
  background-color: orangered;
}

.voice-name {
  font-size: 20px;
  color: rgb(230, 82, 31);
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
  border-bottom: 3px rgb(230, 82, 31) dashed;
  padding-bottom: 3px;
}
@media (max-width: 800px) {
  .voice-name {
    font-size: 18px;
  }
}

.vioce-image {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 800px) {
  .vioce-image img {
    width: 70%;
    height: auto;
  }
}
.vioce-image h4 {
  font-size: 20px;
  color: rgb(230, 82, 31);
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  padding-top: 30px;
  min-height: 100px;
}
@media (max-width: 800px) {
  .vioce-image h4 {
    font-size: 18px;
  }
}

.voice-text {
  padding: 10px 0;
  font-size: 16px;
  color: rgb(51, 51, 51);
  line-height: 2.25;
  text-align: left;
}

/* ===================== SOLUTION ===================== */
.section-solution {
  padding: 50px 40px 53px;
  background: #fcef91;
  position: relative;
}
@media (max-width: 800px) {
  .section-solution {
    padding: 30px 10px 30px !important;
  }
}
.section-solution::before {
  position: absolute;
  background-image: url(../images/solution-bg-top.png);
  left: 0;
  right: 0;
  margin: auto;
  top: -55px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 55px;
  content: "";
  display: block;
}
.section-solution::after {
  position: absolute;
  background-image: url(../images/solution-bg-bottom.png);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -53px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 53px;
  content: "";
  display: block;
}
@media (max-width: 800px) {
  .section-solution::after {
    background-size: 100%;
  }
}
.section-solution .section-inner {
  width: 87.5%;
  max-width: 87.5%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .section-solution .section-inner {
    width: 100%;
    max-width: 100%;
  }
}
.section-solution .section-headline {
  position: relative;
  font-size: clamp(20px, 3.5vw, 36px);
  color: #222222;
  font-weight: bold;
  line-height: 1.528;
  text-align: center;
}
.section-solution .section-headline .text-red {
  color: #ea2f14;
}
.section-solution .section-headline .icon-tori {
  position: absolute;
  left: 10%;
  top: 0;
  width: 10%;
  height: auto;
}
.section-solution .section-sub {
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 16px;
}
.section-solution .section-sub .section-sub-inner {
  font-size: 36px;
  color: #ea2f14;
  line-height: 1.528;
  text-align: center;
}
.section-solution .project-step {
  padding: 0 14px 12px 14px;
  max-width: 500px;
  margin: 0 auto;
}
.section-solution .project-step img {
  margin: 0 auto;
}

.solution-image-pc {
  display: block;
}
@media (max-width: 800px) {
  .solution-image-pc {
    display: none;
  }
}

.solution-image-sp {
  display: none;
}
@media (max-width: 800px) {
  .solution-image-sp {
    display: block;
  }
}

.solution-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-headline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(23px, 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 {
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  color: rgb(242, 75, 11);
  line-height: 1.389;
  text-align: center;
}

.solution-steps {
  margin: 0 auto;
  position: relative;
  width: 100%;
  min-height: 1064px;
  max-width: 1430px;
}
.solution-steps .solution-step-image {
  width: 74.47%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

/* ===================== supporter ===================== */
section.supporter {
  padding-top: 60px;
  position: relative;
  background-image: url(../images/supporter-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}
@media (max-width: 800px) {
  section.supporter {
    padding-bottom: 10px;
    padding-top: 30px;
    background-size: contain;
    background-color: #e6521f;
  }
}
section.supporter .supporter-header {
  margin-bottom: 140px;
}
@media (max-width: 800px) {
  section.supporter .supporter-header {
    margin-bottom: 50px;
  }
}
section.supporter .section-label {
  color: #fff;
}
section.supporter .section-headline {
  color: #fff;
}
section.supporter::before {
  position: absolute;
  background-image: url(../images/supporter-bg-top.png);
  left: 0;
  top: -115px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 116px;
  content: "";
  display: block;
}
@media (max-width: 800px) {
  section.supporter::before {
    background-size: auto;
  }
}
section.supporter::after {
  position: absolute;
  background-image: url(../images/supporter-bg-bottom.png);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -81px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 82px;
  content: "";
  display: block;
}
@media (max-width: 800px) {
  section.supporter::after {
    background-size: 100%;
  }
}
section.supporter .supporter-card {
  display: flex;
  gap: 54px;
  color: #fff;
  margin-bottom: 78px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
section.supporter .supporter-card .supporter-face {
  min-width: 280px;
  width: 280px;
  height: 280px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .supporter-face {
    min-width: 240px;
    width: 240px;
    height: 240px;
  }
}
section.supporter .supporter-card .supporter-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.supporter .supporter-card .category {
  width: 202px;
  height: 69px;
  margin-bottom: 22px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .category {
    width: 160px;
    height: auto;
    margin-bottom: 12px;
  }
}
section.supporter .supporter-card .category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.supporter .supporter-card .company {
  font-size: 20px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .company {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
  }
}
section.supporter .supporter-card .name-block {
  margin-bottom: 44px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .name-block {
    margin-bottom: 20px;
  }
}
section.supporter .supporter-card .name-block .president {
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 3.125;
  text-align: left;
  margin-right: 16px;
}
section.supporter .supporter-card .name-block .name {
  font-size: 26px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.923;
  text-align: left;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .name-block .name {
    font-size: 18px;
  }
}
section.supporter .supporter-card .support-ttl {
  font-size: 30px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.267;
  text-align: left;
  margin-bottom: 33px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .support-ttl {
    font-size: 26px;
    line-height: 1.4;
  }
}
section.supporter .supporter-card .text {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 2.25;
  text-align: left;
}
@media (max-width: 800px) {
  section.supporter .supporter-card .text {
    line-height: 1.8;
  }
}
section.supporter .supporter-card.supporter02 {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  section.supporter .supporter-card.supporter02 {
    flex-direction: column;
  }
}
section.supporter .supporter-card.supporter02 .category {
  width: 174px;
  height: 69px;
}
@media (max-width: 800px) {
  section.supporter .supporter-card.supporter02 .category {
    width: 140px;
    height: auto;
    margin-bottom: 12px;
  }
}

.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;
  }
  .section-solution,
  .section-story,
  .section-faq {
    padding: 60px 24px 30px;
  }
  .problem-grid {
    gap: 40px;
  }
  .problem-card {
    border-radius: 12px !important;
  }
  nav {
    padding: 6px 20px;
  }
  .hero-stat-row {
    gap: 8px;
  }
}
/* ===================== PLANS ===================== */
.section-plans {
  padding: 100px 40px;
  background: var(--cream);
}
@media (max-width: 800px) {
  .section-plans {
    padding: 60px 20px 20px;
  }
}

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

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

.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);
}
@media (max-width: 500px) {
  .plan-card {
    padding: 20px 28px;
  }
}

.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;
}
@media (max-width: 500px) {
  .plan-emoji {
    width: 120px;
    padding-bottom: 10px;
  }
}

.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;
}
@media (max-width: 500px) {
  .plan-features li {
    line-height: 1.2;
  }
}

.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;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .plans-note {
    font-size: 0.75rem;
    text-align: left;
    line-height: 1.4rem;
  }
}

.plans-philosophy {
  text-align: center;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0;
  background-image: url(../images/plan-kifu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 124px 0 124px;
  background-color: #fdfaf4;
}
@media (max-width: 800px) {
  .plans-philosophy {
    padding: 20px;
    height: 300px;
    margin: 30px auto 0;
  }
}
.plans-philosophy .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .plans-philosophy .container {
    gap: 10px;
  }
}

.plans-philosophy p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fcef91;
  line-height: 55px;
}
@media (max-width: 800px) {
  .plans-philosophy p {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 800px) {
  .philosophy-icon {
    width: 70%;
  }
}

/* ===================== TRANSPARENCY ===================== */
.section-transparency {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}
@media (max-width: 800px) {
  .section-transparency {
    padding: 40px 0;
  }
}

.bg-girl {
  width: 40%;
  height: 100%;
  max-width: 577px;
  max-height: 566px;
}
@media (max-width: 800px) {
  .bg-girl {
    position: inherit;
    right: 0;
    top: 0;
    width: auto;
    height: 250px;
    overflow: hidden;
    left: auto;
    margin: auto;
    text-align: center;
  }
}
.bg-girl img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 800px) {
  .bg-girl img {
    height: auto;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

.bg-maru {
  position: absolute;
  left: 0;
  top: 87px;
  width: 40%;
  height: 100%;
  max-width: 577px;
  max-height: 566px;
}
@media (max-width: 800px) {
  .bg-maru {
    width: 70%;
    left: -20px;
    z-index: 1;
  }
}
.bg-maru img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 800px) {
  .bg-maru img {
    height: auto;
    width: 70%;
    object-fit: contain;
    object-position: center center;
  }
}

.transparency-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (max-width: 700px) {
  .transparency-inner {
    padding: 0 16px;
    z-index: 10;
  }
}

.transparency-text h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 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-flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .transparency-flex-box {
    flex-direction: column-reverse;
  }
}
.transparency-flex-box .icon-catrary {
  padding-top: 77px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .transparency-flex-box .icon-catrary {
    padding-top: 20px;
    width: 100px;
    height: auto;
  }
}

.transparency-flex-box.top {
  position: relative;
  z-index: 3;
}

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

.transparency-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 700;
  padding: 16px 16px 16px 68px;
  border-radius: 16px;
  background-color: rgb(246, 179, 127);
  width: 461px;
  height: 81px;
  position: relative;
}
@media (max-width: 800px) {
  .transparency-list li {
    width: 100%;
    height: auto;
    line-height: 1.5;
    padding: 16px 6px 16px 50px;
  }
}
.transparency-list li::before {
  position: absolute;
  display: block;
  width: 28px;
  height: 36px;
  background-image: url(../images/report-icon-note.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  left: 19px;
}
@media (max-width: 800px) {
  .transparency-list li::before {
    left: 13px;
    width: 24px;
    background-size: contain;
  }
}

.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;
}
@media (max-width: 800px) {
  .transparency-breakdown {
    padding: 20px;
  }
}

.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: #fdfaf4;
  position: relative;
}
@media (max-width: 800px) {
  .section-story {
    padding: 20px 16px;
  }
}
.section-story::before {
  position: absolute;
  background-image: url(../images/story-bg-top.png);
  left: 0;
  right: 0;
  margin: auto;
  top: -55px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 55px;
  content: "";
  display: block;
}

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

.stroy-header-image {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 500px) {
  .stroy-header-image {
    margin-bottom: 40px;
  }
}
.stroy-header-image .section-header {
  margin: 0 auto;
  bottom: -140px;
}
@media (max-width: 800px) {
  .stroy-header-image .section-header {
    bottom: -110px;
  }
}
.stroy-header-image .story-image {
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: hidden;
  background-image: url(../images/story-image.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 320px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-position: center;
}
@media (max-width: 800px) {
  .stroy-header-image .story-image {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .stroy-header-image .story-image {
    height: 260px;
  }
}

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

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

.story-quote {
  background-image: url(../images/story-fuki.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 800px) {
  .story-quote {
    background-size: 100% 100%;
    margin-bottom: 20px;
    height: 108px;
  }
}
.story-quote .story-icon {
  position: absolute;
  left: 0;
  top: -40px;
}
@media (max-width: 800px) {
  .story-quote .story-icon {
    width: 80px;
    height: auto;
    top: -30px;
  }
}

.story-quote p {
  font-size: 24px;
  color: rgb(34, 34, 34);
  font-weight: 700;
}
@media (max-width: 800px) {
  .story-quote p {
    font-size: 18px;
    line-height: 1.8;
  }
}

.text-red {
  color: #e82e13;
}

.story-body {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  line-height: 2;
}
@media (max-width: 800px) {
  .story-body {
    font-size: 16px;
    line-height: 1.9rem;
  }
}
.story-body .text-red {
  color: #e82e13;
}
@media (max-width: 800px) {
  .story-body .text-red {
    font-size: 1.2em;
  }
}

.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;
  margin-bottom: 4px;
}

/* ===================== FAQ ===================== */
.section-faq {
  padding: 80px 40px;
  background: var(--cream);
}
@media (max-width: 800px) {
  .section-faq {
    padding: 50px 16px;
  }
}

.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;
}
@media (max-width: 500px) {
  .faq-title {
    margin-bottom: 20px;
  }
}

.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: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 1.2rem;
}
@media (max-width: 800px) {
  .faq-q {
    line-height: 1.5;
    font-size: 1.1rem;
  }
}

.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;
}

.faq-a {
  display: none;
  margin-top: 10px;
}

.faq-item.active .faq-a {
  display: block;
}

.faq-q {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 26px;
}

.faq-item.active .faq-q::after {
  content: "-";
}

/* ===================== FINAL CTA ===================== */
.section-final-cta {
  background: var(--cream);
  background: #fff;
  padding: 100px 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 920px;
  height: auto;
  background-image: url(../images/cta-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 800px) {
  .section-final-cta {
    padding: 80px 10px 10px;
    background-size: cover;
    background-position: center;
  }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 1100px;
  margin: 0 auto;
  background-image: url(../images/cta-fuki.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 100px 50px 80px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .final-cta-inner {
    padding: 50px 20px 10px;
    max-width: 100%;
  }
}

.final-cta-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 4vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 16px;
  color: rgb(238, 63, 11);
  line-height: 1.25;
  text-align: center;
}
.final-cta-inner p {
  font-size: 17px;
  color: rgb(238, 63, 11);
  line-height: 1.765;
  text-align: center;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .final-cta-inner p {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

.final-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (max-width: 500px) {
  .final-btns {
    gap: 12px;
  }
}
.final-btns .cta-primary {
  margin-bottom: 0;
  width: fit-content;
}
@media (max-width: 800px) {
  .final-btns .cta-primary {
    width: 320px;
    max-width: 320px;
  }
}
@media (max-width: 500px) {
  .final-btns .cta-primary {
    width: 100%;
    max-width: 100%;
  }
}

.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 {
  font-size: 22px;
  color: rgb(234, 47, 20);
  font-weight: bold;
  border-radius: 31px;
  border: 4px solid rgba(238, 59, 10, 0.6);
  width: 234px;
  height: 63px;
  cursor: pointer;
  transition: all 0.25s;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .btn-final-outline {
    font-size: 13.5px;
  }
}
@media (max-width: 500px) {
  .btn-final-outline {
    height: 50px;
    font-size: 13.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;
  background: #ffe318;
  color: #444;
  border: 2px solid rgba(230, 82, 31, 0.6);
  box-sizing: border-box;
  font-weight: 700;
}

select#planSelect option {
  font-weight: 600;
}

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

.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;
  }
}
.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;
  min-height: inherit;
}
@media (max-width: 1280px) {
  .footer-links h4 {
    padding-top: 0;
  }
}
@media (max-width: 800px) {
  .footer-links h4 {
    min-height: inherit;
  }
}

.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;
}

@media (max-width: 800px) {
  .footer_sns {
    margin-bottom: 20px;
  }
}
.footer_sns ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 16px 0;
  gap: 16px;
}
@media (max-width: 800px) {
  .footer_sns ul {
    margin: 16px 0 20px;
    margin: 0 auto;
  }
}
.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 */