* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic",
    "游ゴシック", "Meiryo", "メイリオ", sans-serif;
  line-height: 1.8;
  color: #333;
}

.kv-hero {
  width: 100%;
  position: relative;
  display: block;
  background-color: #e8dc58;
  box-sizing: border-box;
}

.kv-hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.kv-hero__release-date {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(232, 220, 88, 0.95);
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  z-index: 20;
}

@media (max-width: 1097px) {
  .kv-hero__release-date {
    bottom: 6rem;
  }
}

@media (max-width: 768px) {
  .kv-hero__release-date {
    bottom: 10rem;
  }
}

/* Winter Thanks Section */
.winter-thanks {
  width: 100%;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf3 50%, #f5f0f1 100%);
  padding: 5rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.winter-thanks__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.winter-thanks__image-wrapper {
  flex-shrink: 0;
  width: clamp(200px, 30vw, 340px);
}

.winter-thanks__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.winter-thanks__image:hover {
  transform: rotate(0deg) scale(1.02);
}

.winter-thanks__content {
  flex: 1;
}

.winter-thanks__badge {
  display: inline-block;
  background-color: #5a7fa0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.winter-thanks__title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.winter-thanks__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #5a7fa0;
  margin-bottom: 1.5rem;
}

.winter-thanks__count {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: #4B68AF;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(75, 104, 175, 0.3);
}

.winter-thanks__count-man {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.5em;
  font-weight: 700;
  color: #4B68AF;
  margin-left: 0.15em;
}

.winter-thanks__count-unit {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.4em;
  font-weight: 600;
  color: #555;
  margin-left: 0.2em;
}

.winter-thanks__count-label {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.winter-thanks__count-label-em {
  color: #4B68AF;
  font-weight: 700;
}

.winter-thanks__count-note {
  font-size: 0.7rem;
  color: #999;
  vertical-align: super;
  margin-left: 0.1em;
}

.winter-thanks__message {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}

.winter-thanks__next {
  background: linear-gradient(135deg, #fff8c2, #fff1a0);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid #e8dc58;
}

.winter-thanks__next-text {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: #555;
}

.winter-thanks__next-text strong {
  color: #d4808a;
  font-weight: 700;
}

.winter-thanks__footnote {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .winter-thanks {
    padding: 3rem 1.5rem;
  }

  .winter-thanks__container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .winter-thanks__image-wrapper {
    width: 200px;
  }

  .winter-thanks__next {
    border-left: none;
    border-top: 4px solid #e8b4b8;
  }
}

@media (max-width: 768px) {
  .kv-hero__image {
    object-fit: contain;
  }

  .story-panel__content {
    padding-top: 100px;
  }
}

.story-section {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}

.story-wrapper {
  width: 100%;
  position: relative;
}

.story-panel {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.story-panel__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;

  flex-direction: column;
}

@media (min-width: 900px) {
  .story-panel__content {
    flex-direction: row;
    text-align: left;
  }
}

.story-panel__figure {
  width: clamp(280px, 40vw, 500px);
  height: clamp(280px, 40vw, 500px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.story-panel__figure:hover {
  transform: scale(1.02);
}

.story-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-panel--product .story-panel__image {
  object-position: center 5%;
}

.story-panel--product .story-panel__figure {
  margin-top: 4rem;
}

.story-panel__text-content {
  max-width: 500px;
  color: #333;
  padding: 1rem;
  text-align: center;
}

@media (min-width: 900px) {
  .story-panel__text-content {
    text-align: left;
  }
}

.story-panel__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.story-panel__release-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5a3a10;
  background-color: #e8dc58;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.story-panel__description {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 2.2;
  color: #666;
  font-weight: 400;
}

.story-panel--barn {
  background-color: #f9f9f9;
}
.story-panel--product {
  background-color: #fff;
}
.story-panel--nature {
  background-color: #fdfbea;
}

.story-panel--nature .story-panel__circle-deco {
  border-color: rgba(232, 220, 88, 0.55);
}

.story-panel--nature .story-panel__bg-text {
  color: #e8dc58;
  opacity: 0.06;
}
.story-panel--producers {
  background-color: #fff;
}

:root {
  --font-main: "Jost", sans-serif;
  --font-accent: "Oswald", sans-serif;
  --color-accent: #e8b4b8;
}

.story-section {
  background-color: #ffffff;
}

.story-panel__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-accent);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: #333333;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  overflow: visible;
  transform-origin: center center;
}

@media (min-width: 900px) {
  .story-panel:nth-child(even) .story-panel__content {
    flex-direction: row-reverse;
  }

  .story-panel:nth-child(even) .story-panel__text-content {
    text-align: right;
    align-items: flex-end;
  }
}

.story-panel__content {
  position: relative;
  z-index: 1;
  gap: clamp(2rem, 5vw, 6rem);
}

.story-panel__figure {
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.story-panel__circle-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  transform: scale(0.9);
  transition: transform 0.6s ease;
}

.story-panel__figure:hover .story-panel__circle-deco {
  transform: scale(1.05);
}

.story-panel__text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-panel__subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #e8dc58;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.story-panel__title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: #222;
}

.story-panel__divider {
  width: 60px;
  height: 2px;
  background-color: #222;
  margin: 0 auto 2rem;
}

@media (min-width: 900px) {
  .story-panel__divider {
    margin: 0 0 2rem 0;
  }

  .story-panel:nth-child(even) .story-panel__divider {
    margin: 0 0 2rem auto;
  }
}

.story-panel__description {
  font-family: "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: #555;
  font-feature-settings: "palt";
}

.price-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #faf7f8;
  box-sizing: border-box;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
}

@media (min-width: 900px) {
  .price-container {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
}

.price-image-wrapper {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
}

.price-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(232, 180, 184, 0.5))
    drop-shadow(0 0 40px rgba(232, 180, 184, 0.25));
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
  mask-image: radial-gradient(ellipse 95% 95% at center, #000 80%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at center, #000 80%, transparent 100%);
}

.price-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.price-content {
  flex: 1;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.price-title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #2c3e50;
  margin-bottom: 2rem;
  border-bottom: 4px solid #e8b4b8;
  padding-bottom: 0.5rem;
  display: inline-block;
  line-height: 1.4;
  font-weight: 600;
}

.price-launch-date {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  background-color: #3460c5;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(52, 96, 197, 0.2);
}

.price-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
}

.price-rows-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #ddd;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.price-row--app {
  background-color: #f0f7ff;
  margin: 0 -2rem -2rem -2rem;
  padding: 2rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top: 2px solid #e8b4b8;

  margin-bottom: -2rem;
  padding-bottom: 2rem;
  border-bottom: none;
}

.price-label {
  font-size: 1rem;
  color: #666;
  font-family: var(--font-main);
  font-weight: 600;
}

.price-details {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.price-tax-in {
  font-size: 1.4rem;
  font-weight: 700;
  color: #444;
}

.price-tax-out {
  font-size: 0.9rem;
  color: #888;
}

.price-app-badge {
  background-color: #3460c5;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(52, 96, 197, 0.2);
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

@media (min-width: 600px) {
  .price-app-badge {
    margin-bottom: 0;
    align-self: center;
  }
}

.price-details--highlight {
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}

.price-tax-in-sm {
  font-size: 1.1rem;
  font-weight: 700;
  color: #005bac;
  margin-bottom: -5px;
}

.price-main-highlight {
  font-family: var(--font-accent);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #e60012;
  line-height: 0.9;
  position: relative;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}

.price-currency {
  font-size: 0.5em;
  margin-right: 0.1em;
  vertical-align: top;
  color: #e60012;
}

.price-tax-suffix {
  font-size: 0.25em;
  color: #666;
  font-weight: 400;
  margin-left: 0.3em;
  font-family: "Yu Gothic", sans-serif;
  vertical-align: bottom;
  position: relative;
  bottom: 10px;
}

.app-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  background-color: #3460c5;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 96, 197, 0.3);
  font-family: var(--font-main);
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.app-link-btn:hover {
  background-color: #2b50a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 96, 197, 0.4);
}

.app-link-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.app-link-btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Nutrition Facts */
.nutrition-facts {
  width: 100%;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  box-sizing: border-box;
}

.nutrition-facts__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #22345b;
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: 0.05em;
}

.nutrition-facts__title-main {
  display: inline-block;
}

.nutrition-facts__title-sub {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.5em;
  font-weight: 600;
  color: #7a859d;
  letter-spacing: 0.02em;
  vertical-align: baseline;
}

.nutrition-facts__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nutrition-facts__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e6e9ee;
}

.nutrition-facts__row:last-child {
  border-bottom: none;
}

.nutrition-facts__cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid #e6e9ee;
}

.nutrition-facts__cell:last-child {
  border-right: none;
}

.nutrition-facts__label {
  font-size: 0.95rem;
  color: #22345b;
  font-weight: 400;
}

.nutrition-facts__value {
  font-size: 1rem;
  color: #22345b;
  font-weight: 600;
}

.nutrition-facts__notes {
  margin-top: 0;
  padding-top: 1rem;
}

.nutrition-facts__source {
  font-size: 0.85rem;
  color: #7a859d;
  margin-bottom: 0.8rem;
}

.nutrition-facts__disclaimer {
  font-size: 0.85rem;
  color: #7a859d;
  line-height: 1.8;
}

/* Product Information (Not prominent) */
.product-info {
  width: 100%;
  max-width: 800px;
  margin: 1.25rem auto 0;
  box-sizing: border-box;
}

.product-info__table {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e9ee;
}

.product-info__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-top: 1px solid #e6e9ee;
}

.product-info__row:first-child {
  border-top: none;
}

.product-info__th,
.product-info__td {
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.product-info__th {
  color: #7a859d;
  font-weight: 500;
}

.product-info__td {
  color: #22345b;
  font-weight: 400;
}

.product-info__divider {
  height: 9px;
  background: #f2f5fa;
  border-top: 1px solid #e6e9ee;
}

.product-info__th--empty {
  color: transparent;
}

.sp-only {
  display: none;
}

@media (max-width: 600px) {
  .nutrition-facts {
    padding: 0.75rem 0.5rem;
    margin: 2rem auto 0;
  }

  .nutrition-facts__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .nutrition-facts__row {
    grid-template-columns: 1fr;
  }

  .nutrition-facts__cell {
    padding: 0.4rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid #e6e9ee;
  }

  .nutrition-facts__row:last-child .nutrition-facts__cell:last-child {
    border-bottom: none;
  }

  .sp-only {
    display: inline;
  }

  .product-info {
    margin-top: 1rem;
  }

  .product-info__row {
    grid-template-columns: 1fr;
  }

  .product-info__th {
    padding-bottom: 0.1rem;
  }

  .product-info__td {
    padding-top: 0.1rem;
  }

  .product-info__th--empty {
    display: none;
  }
}

.story-panel__description {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (min-width: 900px) {
  .story-panel__description {
    text-align-last: left;
  }

  .story-panel:nth-child(even) .story-panel__description {
    text-align-last: left;
  }
}

@media (max-width: 768px) {
  .story-panel {
    padding: 5rem 2rem;
  }
}

/* ============================================
   New Lineup Section
   ============================================ */
.new-lineup {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #eef7fc;
  box-sizing: border-box;
}

.new-lineup__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-direction: column;
}

@media (min-width: 900px) {
  .new-lineup__container {
    flex-direction: row;
  }
}

.new-lineup__figure-wrapper {
  flex-shrink: 0;
}

.new-lineup__figure {
  width: clamp(240px, 32vw, 380px);
  height: clamp(240px, 32vw, 380px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #d8ecf7 55%, #9DCAE7 100%);
  box-shadow: 0 20px 40px rgba(43, 122, 174, 0.18);
}

.new-lineup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.new-lineup__content {
  flex: 1;
  text-align: center;
}

@media (min-width: 900px) {
  .new-lineup__content {
    text-align: left;
  }
}

.new-lineup__badge {
  display: inline-block;
  background-color: #9DCAE7;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.new-lineup__subtitle {
  display: block;
  font-family: var(--font-main);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #9DCAE7;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.new-lineup__title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: #222;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.2rem 0;
}

.new-lineup__divider {
  width: 60px;
  height: 2px;
  background-color: #222;
  margin: 0 auto 1.5rem;
}

@media (min-width: 900px) {
  .new-lineup__divider {
    margin: 0 0 1.5rem 0;
  }
}

.new-lineup__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 1rem 0;
}

.new-lineup__lead strong {
  color: #222;
  font-weight: 700;
}

.new-lineup__description {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin: 0 0 1.5rem 0;
}

.new-lineup__description strong {
  color: #2b7aae;
  font-weight: 700;
}

.new-lineup__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 900px) {
  .new-lineup__highlights {
    justify-content: flex-start;
  }
}

.new-lineup__highlight {
  flex: 1 1 0;
  min-width: 110px;
  background-color: #ffffff;
  border: 1px solid #d6e9f5;
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(157, 202, 231, 0.18);
}

.new-lineup__highlight-num {
  display: block;
  font-family: "Oswald", var(--font-main), sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2b7aae;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.new-lineup__highlight-num small {
  font-size: 0.55em;
  margin-left: 2px;
}

.new-lineup__highlight-num--text {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.new-lineup__highlight-label {
  display: block;
  font-size: 0.78rem;
  color: #4a6b82;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.new-lineup__visual-wrapper {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 0.5rem;
}

.new-lineup__visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(157, 202, 231, 0.25);
}

/* ============================================
   Comparison Chart (Low-Fat vs Whole Milk)
   ============================================ */
.comparison-chart {
  max-width: 780px;
  margin: 3.5rem auto 0;
  padding: 2.4rem 2.2rem 2.6rem;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(43, 122, 174, 0.12);
  border: 1px solid #e3eff8;
  box-sizing: border-box;
  overflow: hidden;
}

/* ---- HEAD ---- */
.comparison-chart__head {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px dashed #cfe1ee;
}

.comparison-chart__caption {
  font-size: 1rem;
  line-height: 1.7;
  color: #22345b;
  font-weight: 700;
  margin: 0 0 0.9rem 0;
  letter-spacing: 0.02em;
}

.comparison-chart__caption strong {
  color: #2b7aae;
  font-weight: 700;
}

.comparison-chart__unit {
  display: block;
  font-size: 0.78rem;
  color: #7a859d;
  font-weight: 500;
  margin-top: 0.4rem;
  letter-spacing: 0.08em;
}

.comparison-chart__legend {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4a6b82;
  line-height: 1.5;
  max-width: 520px;
}

.comparison-chart__legend li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  font-weight: 500;
}

.comparison-chart__legend small {
  color: #9aa6b5;
  margin-left: 0.5em;
  font-weight: 400;
}

.comparison-chart__swatch {
  display: inline-block;
  width: 26px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.comparison-chart__swatch--ours {
  background: linear-gradient(90deg, #9DCAE7, #b8dcf0);
}

.comparison-chart__swatch--theirs {
  background-color: #c5ccd2;
}

/* ---- ROWS ---- */
.comparison-chart__rows {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.comparison-chart__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 0.5rem 0;
}

.comparison-chart__row--highlight {
  background: linear-gradient(90deg, rgba(157, 202, 231, 0.14), rgba(157, 202, 231, 0) 85%);
  border-radius: 10px;
  padding: 0.85rem 0.8rem;
  margin: -0.35rem -0.8rem;
}

/* ---- NUTRIENT LABEL ---- */
.comparison-chart__nutrient {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
  line-height: 1.25;
}

.comparison-chart__nutrient-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #22345b;
  letter-spacing: 0.02em;
}

.comparison-chart__nutrient small {
  font-size: 0.74rem;
  color: #7a859d;
  font-weight: 500;
}

.comparison-chart__cut-badge {
  margin-top: 0.35rem;
  display: inline-block;
  background: linear-gradient(135deg, #2b7aae, #1f5d85);
  color: #ffffff;
  font-family: "Oswald", var(--font-main), sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(43, 122, 174, 0.28);
}

/* ---- BARS ---- */
.comparison-chart__bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.comparison-chart__bar-line {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 0.7rem;
  align-items: center;
}

.comparison-chart__bar-track {
  height: 22px;
  background-color: #f3f6f9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.comparison-chart__bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  position: relative;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-chart__bar--ours {
  background: linear-gradient(90deg, #9DCAE7 0%, #b8dcf0 100%);
  box-shadow: inset 0 -2px 0 rgba(43, 122, 174, 0.1);
}

.comparison-chart__bar--theirs {
  background: linear-gradient(90deg, #c5ccd2 0%, #d5dbe1 100%);
}

.comparison-chart__value {
  font-family: "Oswald", var(--font-main), sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #22345b;
  text-align: left;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}

.comparison-chart.is-animated .comparison-chart__value {
  opacity: 1;
}

/* ---- SUMMARY ---- */
.comparison-chart__summary {
  margin: 2.2rem 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a6b82;
  font-weight: 500;
}

.comparison-chart__summary strong {
  color: #2b7aae;
  font-weight: 700;
}

.comparison-chart__footnote {
  margin: 1.4rem 0 0;
  font-size: 0.72rem;
  line-height: 1.7;
  color: #7a859d;
  text-align: left;
  letter-spacing: 0.01em;
}

/* ---- ENTRY ANIMATIONS ---- */
.comparison-chart .comparison-chart__row {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-chart.is-animated .comparison-chart__row {
  opacity: 1;
  transform: translateY(0);
}

.comparison-chart.is-animated .comparison-chart__row:nth-child(1) { transition-delay: 0.05s; }
.comparison-chart.is-animated .comparison-chart__row:nth-child(2) { transition-delay: 0.15s; }
.comparison-chart.is-animated .comparison-chart__row:nth-child(3) { transition-delay: 0.25s; }
.comparison-chart.is-animated .comparison-chart__row:nth-child(4) { transition-delay: 0.35s; }
.comparison-chart.is-animated .comparison-chart__row:nth-child(5) { transition-delay: 0.45s; }

.comparison-chart .comparison-chart__cut-badge {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease 0.9s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s;
}

.comparison-chart.is-animated .comparison-chart__cut-badge {
  opacity: 1;
  transform: scale(1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .comparison-chart {
    margin-top: 2.4rem;
    padding: 1.6rem 1.1rem 1.8rem;
    border-radius: 14px;
  }
  .comparison-chart__caption {
    font-size: 0.88rem;
  }
  .comparison-chart__legend {
    font-size: 0.72rem;
    gap: 0.4rem;
  }
  .comparison-chart__swatch {
    width: 20px;
    height: 10px;
  }
  .comparison-chart__row {
    grid-template-columns: 82px 1fr;
    gap: 0.7rem;
  }
  .comparison-chart__nutrient-name {
    font-size: 0.84rem;
  }
  .comparison-chart__nutrient small {
    font-size: 0.66rem;
  }
  .comparison-chart__cut-badge {
    font-size: 0.7rem;
    padding: 0.14rem 0.4rem;
  }
  .comparison-chart__bar-line {
    grid-template-columns: 1fr 44px;
    gap: 0.5rem;
  }
  .comparison-chart__bar-track {
    height: 18px;
  }
  .comparison-chart__value {
    font-size: 0.88rem;
  }
  .comparison-chart__summary {
    font-size: 0.9rem;
    margin-top: 1.6rem;
  }
}

@media (max-width: 768px) {
  .new-lineup {
    padding: 3rem 1.5rem;
  }
  .new-lineup__container {
    gap: 2rem;
  }
  .new-lineup__highlight {
    min-width: 90px;
    padding: 0.75rem 0.5rem;
  }
  .new-lineup__highlight-num {
    font-size: 1.9rem;
  }
  .new-lineup__highlight-num--text {
    font-size: 1.1rem;
  }
  .new-lineup__visual-wrapper {
    margin-top: 2rem;
  }
}

/* ============================================
   New Lineup Heading (Product Title at Top)
   ============================================ */
.new-lineup__heading {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 1rem;
}

.new-lineup__heading-eyebrow {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #2b7aae;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.9rem;
  background-color: rgba(157, 202, 231, 0.18);
  border-radius: 999px;
}

.new-lineup__heading-title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  color: #22345b;
  margin: 0;
  line-height: 1.35;
  font-weight: 700;
}

.new-lineup__heading-cut {
  display: block;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  color: #2b7aae;
  font-family: var(--font-main), "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.new-lineup__heading-name {
  display: block;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  letter-spacing: 0.04em;
}

.new-lineup__heading-lead {
  margin-top: 1rem;
  font-size: 1rem;
  color: #4a6b82;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .new-lineup__heading {
    margin-bottom: 2rem;
  }
  .new-lineup__heading-eyebrow {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
  }
}

/* ============================================
   New Lineup Price Block
   ============================================ */
.new-lineup__price {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 2.2rem 2rem;
  background-color: #ffffff;
  border: 1px solid #e3eff8;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(43, 122, 174, 0.10);
  box-sizing: border-box;
}

.new-lineup__price-head {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed #cfe1ee;
}

.new-lineup__price-product {
  font-size: 1rem;
  line-height: 1.55;
  color: #22345b;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  letter-spacing: 0.02em;
}

.new-lineup__price-volume {
  display: inline-block;
  margin-left: 0.4em;
  font-size: 0.85em;
  font-weight: 600;
  color: #4a6b82;
}

.new-lineup__price-launch {
  display: inline-block;
  background-color: #9DCAE7;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.new-lineup__price-note {
  font-size: 0.78rem;
  color: #7a859d;
  margin: 0;
}

.new-lineup__price-row--app .price-app-badge {
  background-color: #2b7aae;
  color: #ffffff;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  text-align: center;
  line-height: 1.4;
  display: inline-block;
}

.new-lineup__price-app-lead {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.new-lineup__price .price-main-highlight {
  color: #2b7aae;
}

.new-lineup__app-link-btn {
  background-color: #2b7aae !important;
  margin-top: 1.4rem;
}

.new-lineup__app-link-btn:hover {
  background-color: #1f5d85 !important;
}

@media (max-width: 768px) {
  .new-lineup__price {
    margin-top: 2rem;
    padding: 1.5rem 1.2rem;
    border-radius: 14px;
  }
  .new-lineup__price-product {
    font-size: 0.92rem;
  }
  .new-lineup__price-launch {
    font-size: 0.82rem;
    padding: 0.35rem 0.9rem;
  }
}

/* ============================================
   Floating CTA: NEW LINEUP
   ============================================ */
html {
  scroll-behavior: smooth;
}

.new-lineup-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9DCAE7 0%, #2b7aae 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-main), "Hiragino Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  box-shadow:
    0 12px 28px rgba(43, 122, 174, 0.42),
    0 4px 10px rgba(43, 122, 174, 0.28),
    inset 0 -3px 0 rgba(31, 93, 133, 0.35);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    opacity 0.3s ease;
  animation: new-lineup-fab-pulse 2.4s ease-in-out infinite;
}

.new-lineup-fab::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.new-lineup-fab__top {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.95;
}

.new-lineup-fab__bottom {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.new-lineup-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 18px 36px rgba(43, 122, 174, 0.5),
    0 6px 14px rgba(43, 122, 174, 0.35),
    inset 0 -3px 0 rgba(31, 93, 133, 0.4);
  animation-play-state: paused;
}

.new-lineup-fab:active {
  transform: translateY(-1px) scale(1);
}

@keyframes new-lineup-fab-pulse {
  0%, 100% {
    box-shadow:
      0 12px 28px rgba(43, 122, 174, 0.42),
      0 4px 10px rgba(43, 122, 174, 0.28),
      inset 0 -3px 0 rgba(31, 93, 133, 0.35),
      0 0 0 0 rgba(157, 202, 231, 0.5);
  }
  60% {
    box-shadow:
      0 12px 28px rgba(43, 122, 174, 0.42),
      0 4px 10px rgba(43, 122, 174, 0.28),
      inset 0 -3px 0 rgba(31, 93, 133, 0.35),
      0 0 0 18px rgba(157, 202, 231, 0);
  }
}

/* Hide when viewing the section itself */
.new-lineup-fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.85);
}

@media (max-width: 768px) {
  .new-lineup-fab {
    width: 72px;
    height: 72px;
    right: 16px;
    bottom: 16px;
  }
  .new-lineup-fab__top {
    font-size: 0.62rem;
  }
  .new-lineup-fab__bottom {
    font-size: 0.82rem;
  }
}
