:root {
  --lp-max-width: 1115px;
  --mira-yellow: #ffd800;
  --mira-orange: #f5a400;
  --mira-red: #d92525;
  --mira-green: #178942;
  --mira-cream: #fff7cc;
  --mira-ink: #2a1f12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7b50e;
  color: var(--mira-ink);
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.mira-lp {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--mira-yellow);
}

.center {
  text-align: center;
}

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  background: #000;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: min(100%, var(--lp-max-width));
  height: 100%;
  margin: 0 auto;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.72));
}

.hero__content {
  position: relative;
  display: flex;
  width: min(100%, var(--lp-max-width));
  min-height: 760px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
}

.hero__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero__label {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.28em;
  opacity: 0.86;
}

.hero h1 {
  margin: 12px 0 0;
  font-size: clamp(48px, 10vw, 84px);
  line-height: 1;
  font-weight: 900;
}

.hero__sub {
  margin: 12px 0 0;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
}

.hero__catch {
  max-width: 300px;
  margin: 0;
  text-align: right;
  font-size: clamp(18px, 4vw, 34px);
  line-height: 1.35;
  font-weight: 900;
}

.hero__cta {
  max-width: 560px;
}

.hero__cta p {
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 20px;
  color: var(--mira-red);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.section {
  padding: 56px 20px;
}

.section__inner {
  width: min(100%, var(--lp-max-width));
  margin: 0 auto;
}

.section--yellow {
  background: var(--mira-yellow);
}

.section--cream {
  background: var(--mira-cream);
}

.section--orange {
  background: var(--mira-orange);
}

.section--white {
  background: #fff;
}

.panel {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 22px;
  box-shadow: 0 16px 32px rgba(85, 49, 0, 0.18);
}

.panel--white {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.panel--cream {
  border-radius: 50% 50% 28px 28px / 54px 54px 28px 28px;
  background: var(--mira-cream);
  padding-top: 64px;
}

.eyebrow {
  margin: 0;
  color: var(--mira-red);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light,
.light-title,
.lead--light {
  color: #fff;
}

h2 {
  margin: 12px 0 0;
  color: var(--mira-ink);
  text-align: center;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.25;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--mira-red);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.lead,
.panel p {
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
}

.lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(42, 31, 18, 0.86);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.badges span {
  border-radius: 999px;
  padding: 9px 20px;
  background: var(--mira-red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.badges span:nth-child(2) {
  background: var(--mira-green);
}

.badges span:nth-child(3) {
  background: var(--mira-orange);
}

.wide-image {
  width: min(100%, var(--lp-max-width));
  height: 360px;
  margin: 0 auto;
  object-fit: cover;
}

.wide-image--large {
  height: 420px;
}

.feature-grid,
.two-column {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-grid article,
.two-column article {
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(85, 49, 0, 0.14);
}

.feature-grid strong {
  display: block;
  color: var(--mira-red);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.feature-grid p,
.two-column p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.framed-image {
  width: 100%;
  margin: 32px auto 0;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(85, 49, 0, 0.22);
}

.section--white .framed-image {
  max-height: 620px;
  object-fit: cover;
}

.cta-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--mira-red);
  box-shadow: 0 8px 0 #9d1616;
  color: #fff;
  padding: 14px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #9d1616;
}

.cta-button--wide {
  width: min(100%, 420px);
  margin-top: 32px;
}

.note {
  margin: 18px 0 0;
  color: rgba(42, 31, 18, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.strengths {
  background: var(--mira-yellow);
  padding: 62px 20px 34px;
  text-align: center;
}

.strengths__inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.strengths__brand {
  text-align: center;
}

.strengths__brand-image {
  width: min(100%, 560px);
  margin: 0 auto;
}

.strengths__label {
  width: min(100%, 420px);
  margin: 78px auto 0;
  border-radius: 999px;
  background: #69bd94;
  color: #fff;
  padding: 12px 28px 14px;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.strengths__lead {
  margin: 28px 0 0;
  color: #090909;
  font-size: clamp(20px, 3vw, 29px);
  font-weight: 900;
  line-height: 1.3;
}

.strengths__catch {
  margin: 12px 0 0;
  color: #f00;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.strengths__note {
  margin: 8px 0 0;
  color: #090909;
  font-size: 11px;
  font-weight: 900;
}

.strengths__image {
  width: 100%;
  margin: 0 auto;
}

.strengths__image + .strengths__image {
  margin-top: 22px;
}

.strengths__image--main {
  width: min(100%, 560px);
  margin-top: 42px;
}

.strengths__steps {
  width: min(100%, 510px);
  margin: 14px auto 0;
  padding-left: 24px;
  color: #090909;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.strengths__image--nutrients {
  width: min(100%, 660px);
  margin-top: 42px;
}

.strengths__benefits {
  width: min(100%, 560px);
  margin: 18px auto 0;
  color: #f00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.strengths__benefits p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 2px solid #fff;
}

.strengths__spike-title {
  margin: 46px 0 0;
  color: #f00;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.strengths__spike-text {
  width: min(100%, 620px);
  margin: 14px auto 0;
  color: #090909;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.7;
  text-align: left;
}

.strengths__image--chart {
  width: min(100%, 620px);
  margin-top: 24px;
}

.strengths__recommend {
  width: min(100%, 620px);
  margin: 24px auto 0;
  color: #090909;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
}

.strengths__recommend::before,
.strengths__recommend::after {
  content: "《";
}

.strengths__recommend::after {
  content: "》";
}

.strengths__image--recipes {
  width: min(100%, 680px);
  margin-top: 10px;
}

.strengths-two {
  padding-top: 84px;
}

.strengths-two__lead {
  margin: 42px 0 0;
  color: #090909;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 900;
  line-height: 1.4;
}

.strengths-two__catch {
  margin: 22px 0 0;
  color: #f00;
  font-size: clamp(27px, 4.2vw, 40px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.strengths-two__text {
  width: min(100%, 560px);
  margin: 24px auto 0;
  color: #090909;
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.8;
}

.strengths-two__heading {
  width: min(100%, 380px);
  margin: 52px auto 0;
  border-radius: 999px;
  background: #6cbe28;
  color: #fff;
  padding: 10px 24px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}

.strengths-two__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 660px);
  margin: 36px auto 0;
}

.strengths-two__item {
  min-width: 0;
  text-align: center;
}

.strengths-two__item h3 {
  width: min(100%, 170px);
  margin: 0 auto;
  border-radius: 999px;
  color: #fff;
  padding: 9px 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.strengths-two__item--vegetable h3 {
  background: #15973c;
}

.strengths-two__item--fruit h3 {
  background: #ef5944;
}

.strengths-two__caption {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.strengths-two__item--vegetable .strengths-two__caption {
  color: #00a377;
}

.strengths-two__item--fruit .strengths-two__caption {
  color: #f05675;
}

.strengths-two__cell {
  width: 100%;
  margin-top: 14px;
}

.strengths-two__item dl {
  margin: 14px 0 0;
  border: 2px solid #d8a900;
  border-radius: 4px;
  padding: 8px 10px;
  color: #090909;
  text-align: left;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
}

.strengths-two__item dt {
  margin: 0 0 2px;
}

.strengths-two__item dd {
  margin: 0;
}

.strengths-two__item dd::before {
  content: "・";
}

.strengths-two__image-title {
  margin: 18px 0 0;
  color: #f49a00;
  font-size: 13px;
  font-weight: 900;
}

.strengths-two__arrow {
  width: min(100%, 250px);
  margin: 12px auto 0;
}

.strengths-two__bottom {
  margin: 12px 0 0;
  color: #090909;
  font-size: 16px;
  font-weight: 900;
}

.strengths-two__summary {
  width: min(100%, 520px);
  margin: 34px auto 0;
  border-radius: 8px;
  background: #1aa047;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.strengths-slider {
  overflow: hidden;
  background: var(--mira-yellow);
  padding: 46px 0 42px;
}

.strengths-slider__track {
  display: flex;
  width: max-content;
  animation: strengths-slide 42s linear infinite;
}

.strengths-slider__group {
  display: flex;
  flex: 0 0 auto;
  gap: 38px;
  padding-right: 38px;
}

.strengths-slider img {
  width: clamp(126px, 14vw, 176px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes strengths-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.support-comments {
  background: var(--mira-yellow);
  padding: 44px 20px 58px;
}

.support-comments__inner {
  width: min(100%, 780px);
  margin: 0 auto;
}

.support-comments__title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: #d9483b;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.support-comments__bubble {
  display: block;
  width: 66px;
  margin-top: -5px;
}

.support-comments__list {
  display: grid;
  gap: 44px;
  margin-top: 58px;
}

.support-comment {
  border-radius: 32px 32px 28px 28px;
}

.support-comment__head {
  position: relative;
  display: grid;
  min-height: 94px;
  grid-template-columns: 240px 1fr;
  align-items: end;
  background: #f18700;
  border-radius: 32px 32px 0 0;
}

.support-comment__photo {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 190px;
  max-height: 150px;
  object-fit: contain;
  object-position: bottom center;
}

.support-comment__name {
  grid-column: 2;
  padding: 16px 20px 7px 0;
  color: #fff;
  text-align: right;
}

.support-comment__name p {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.support-comment__name h3 {
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.05;
}

.support-comment__body {
  border-radius: 0 0 28px 28px;
  background: #fff;
  padding: 18px 26px 24px;
  color: #080808;
  text-align: left;
}

.support-comment__body p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.support-comment__body p + p {
  margin-top: 12px;
}

.final-cta {
  background: #f18700;
  color: #080808;
  padding: 54px 24px 46px;
  text-align: center;
}

.final-cta__inner {
  width: min(100%, var(--lp-max-width));
  margin: 0 auto;
}

.final-cta__kicker {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.final-cta__product {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 30px auto 0;
}

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

.final-cta__logo {
  width: min(100%, 390px);
}

.final-cta h2 {
  margin: 18px 0 0;
  color: #080808;
  text-align: left;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.18;
}

.final-cta__nowrap {
  white-space: nowrap;
}

.final-cta__image {
  width: min(100%, 560px);
  justify-self: center;
}

.final-cta__sub {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.final-cta__button {
  display: inline-flex;
  width: min(100%, 372px);
  min-height: 68px;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
  border-radius: 999px;
  background: #ffc20a;
  color: #fff;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.final-cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.footer {
  background: #fff;
  color: #000;
  text-align: center;
}

.footer p {
  margin: 0;
}

.company-profile {
  background: #f6b400;
  padding: 72px 24px 58px;
}

.company-profile__inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.company-profile__title {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 4px solid #000;
  color: #000;
  text-align: center;
}

.company-profile__title-group {
  display: inline-block;
}

.company-profile__title-main {
  display: block;
  font-family: "Josefin Sans", Arial, "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4.8vw, 48px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: left;
}

.company-profile__title-sub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: right;
}

.company-profile__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 38px;
  text-align: left;
}

.company-profile__brand {
  text-align: center;
}

.company-profile__brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.company-profile__logo {
  width: 168px;
  margin: 0 auto;
}

.company-profile__details {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.company-profile__details div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  margin-top: 14px;
}

.company-profile__details div:first-child {
  margin-top: 0;
}

.company-profile__details dt,
.company-profile__details dd {
  margin: 0;
}

.company-profile__details a {
  text-decoration: none;
}

.company-profile__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 84px;
}

.company-profile__social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
}

.sns-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer__copyright {
  background: #fff;
  padding: 34px 24px;
  color: #262626;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .hero,
  .hero__content {
    min-height: 920px;
  }

  .hero__content {
    padding: 48px 56px;
  }

  .section {
    padding: 80px 64px;
  }

  .panel {
    padding: 44px 40px;
  }

  .panel--cream {
    padding-top: 80px;
  }

  .lead,
  .panel p {
    font-size: 16px;
  }

  .wide-image {
    height: 520px;
  }

  .wide-image--large {
    height: 620px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    padding: 58px 64px 46px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 690px;
  }

  .hero__content {
    min-height: 690px;
  }

  .hero__header {
    display: block;
  }

  .hero__catch {
    margin-top: 18px;
    text-align: left;
  }

  .company-profile {
    padding: 52px 20px 42px;
  }

  .strengths {
    padding: 48px 18px 24px;
  }

  .strengths__brand-image {
    width: min(100%, 340px);
  }

  .strengths__label {
    margin-top: 48px;
  }

  .strengths__steps,
  .strengths__benefits,
  .strengths__spike-text {
    font-size: 11px;
  }

  .strengths__image--main {
    margin-top: 30px;
  }

  .strengths-two {
    padding-top: 56px;
  }

  .strengths-two__lead {
    margin-top: 30px;
  }

  .strengths-two__compare {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 320px);
  }

  .strengths-two__text,
  .strengths-two__item dl,
  .strengths-two__summary {
    font-size: 11px;
  }

  .strengths-slider {
    padding: 34px 0 32px;
  }

  .strengths-slider__group {
    gap: 24px;
    padding-right: 24px;
  }

  .strengths-slider img {
    width: 126px;
  }

  .support-comments {
    padding: 38px 16px 46px;
  }

  .support-comments__title {
    gap: 8px;
    font-size: 30px;
    white-space: nowrap;
  }

  .support-comments__bubble {
    width: 50px;
  }

  .support-comments__list {
    gap: 34px;
    margin-top: 40px;
  }

  .support-comment {
    border-radius: 24px;
  }

  .support-comment__head {
    min-height: 270px;
    grid-template-columns: 1fr;
    align-items: end;
    border-radius: 24px 24px 0 0;
  }

  .support-comment__photo {
    top: 22px;
    bottom: auto;
    left: 50%;
    width: 190px;
    max-height: 150px;
    transform: translateX(-50%);
  }

  .support-comment__name {
    grid-column: 1;
    padding: 178px 16px 12px;
    text-align: center;
  }

  .support-comment__name p {
    font-size: 12px;
  }

  .support-comment__name h3 {
    font-size: 34px;
  }

  .support-comment__body {
    border-radius: 0 0 24px 24px;
    padding: 18px 18px 22px;
  }

  .support-comment__body p {
    font-size: 13px;
  }

  .final-cta {
    padding: 44px 20px 42px;
  }

  .final-cta__product {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 420px;
    margin-top: 26px;
  }

  .final-cta__message,
  .final-cta h2 {
    text-align: center;
  }

  .final-cta__logo {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .final-cta__image {
    width: min(100%, 300px);
  }

  .final-cta__button {
    min-height: 62px;
    margin-top: 34px;
  }

  .company-profile__title {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  .company-profile__title-main {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  .company-profile__title-sub {
    font-size: 12px;
    text-align: center;
  }

  .company-profile__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 32px;
  }

  .company-profile__details {
    font-size: 13px;
  }

  .company-profile__details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-profile__social {
    margin-top: 52px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}
