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

html {
  font-size: 62.5%; /* 16px × 62.5% = 10px → 1rem = 10px */
}

:root {
  --green: #054e3c;
  --beige: #F8F6F2;
  --text: #262626;
  --gray: #B8B8B8;
  --border: #E7E7E7;
  --white: #ffffff;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

.for-pc {
  display: block;
}
.for-sp {
  display: none;
}
@media (max-width: 768px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
#loader.loader--hidden {
  opacity: 0;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#loader img {
  width: 200px;
  opacity: 0;
  animation: logoAppear 0.9s ease 0.3s forwards;
}
@keyframes logoAppear {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.loader__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green);
  opacity: 0;
  animation: logoAppear 0.9s ease 0.3s forwards;
}
.loader__dot {
  opacity: 0;
  animation: dotFade 1.2s ease infinite;
}
.loader__dot:nth-child(1) { animation-delay: 0s; }
.loader__dot:nth-child(2) { animation-delay: 0.3s; }
.loader__dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes dotFade {
  0%, 100% { opacity: 0; }
  40%       { opacity: 1; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 680px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__img {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
}
.hero__img--1 {
  animation: heroFade 35s ease-in-out infinite;
}
.hero__img--2 {
  animation: heroFade 35s ease-in-out infinite;
  animation-delay: -28s;
}
.hero__img--3 {
  animation: heroFade 35s ease-in-out infinite;
  animation-delay: -21s;
}
.hero__img--4 {
  animation: heroFade 35s ease-in-out infinite;
  animation-delay: -14s;
}
.hero__img--5 {
  animation: heroFade 35s ease-in-out infinite;
  animation-delay: -7s;
}
@keyframes heroFade {
  0%, 17%  { opacity: 1; }
  20%      { opacity: 0; }
  97%      { opacity: 0; }
  100%     { opacity: 1; }
}
.hero__overlay {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0) 50%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-left: 7.8%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  margin-top: 149px;
}
.hero__content--visible {
  animation: fadeInUp 0.9s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 6.5rem;
}
.hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.hero__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 103px;
  align-self: flex-start;
}
.hero__scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text) 0%, transparent 100%);
  background-size: 100% 200%;
  background-position: 0 -100%;
  animation: scrollLine 1.4s ease 3s infinite;
}
@keyframes scrollLine {
  0%   { background-position: 0 100%; }
  50%  { background-position: 0 0%; }
  100% { background-position: 0 -100%; }
}
.hero__slider-dots {
  position: absolute;
  right: 110px;
  bottom: 29px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.hero__dot { width: 24px; height: 1px; }
.hero__dot--active { background: var(--text); }
.hero__dot--inactive { background: var(--gray); }

/* ===== LEAD ===== */
.lead {
  padding: 22.5rem 2rem 6.4rem 2rem;
  position: relative;
  max-width: 886px;
  margin-left: auto;
  margin-right: auto;
}
.lead__text {
  max-width: 587px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lead__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 5rem;
}
.lead__body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.lead__body p { line-height: 2; }
.lead__mark {
  position: absolute;
  top: -40%;
  right: -43.6%;
  width: 25rem;
}
.lead__mark img {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ===== FEATURES ===== */
.features {
  padding: 0 2rem 10rem;
  display: flex;
  justify-content: space-between;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.features__card {
  width: 30.3%;
  flex-shrink: 0;
  background: var(--beige);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
}
.features__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.features__icon img { width: 48px; height: 48px; }
.features__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text);
}
.features__info {
  margin-bottom: 30px;
}
.features__en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 12px;
}
.features__body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text);
  letter-spacing: 0.03em;
  text-align: justify;
}

/* ===== GIFT ===== */
.gift {
  background: var(--beige);
  padding: 8rem 0 10rem;
  overflow: hidden;
}
.gift__header {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gift__titles {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gift__body {
  padding-top: 42px;
  min-width: 586px;
}
.gift__body p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text);
  letter-spacing: 0.03em;
  text-align: justify;
}

/* ===== SECTION HEADING (shared utility) ===== */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.section-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

/* ===== INFINITY SLIDER ===== */
.gift__slider {
  overflow: hidden;
  height: 236px;
  width: 100%;
  margin-top: 9.3rem;
}
.gift__slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  animation: slide 40s linear infinite;
  width: max-content;
  height: 236px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gift__slide {
  flex-shrink: 0;
  width: 350px;
  height: 216px;
  overflow: hidden;
  display: block;
}
.gift__slide img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  display: block;
}
.gift__slide:nth-child(even) {
  margin-bottom: 20px;
}

/* ===== RECOMMENDED PRODUCTS ===== */
.recommended {
  background: var(--beige);
  padding: 12rem 2rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
}
.recommended__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}
.recommended__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: flex-start;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.product-card {
  flex: 0 0 calc((100% - 4 * 3rem) / 5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.recommended__grid .product-card {
  border-radius: 0;
}
.product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-card__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* ===== PRODUCT SERIES ===== */
.products-section {
  background: var(--white);
  padding: 12rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
.products-section__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.products-section__list {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
.series-row {
  display: flex;
  gap: 73px;
  align-items: flex-start;
  position: relative;
  min-height: 464px;
}
.series-row--jam {
  justify-content: flex-start;
  gap: 10px;
}
.series-row--soy {
  justify-content: flex-start;
  gap: 10px;
  margin-top: -35px;
}
.series-row--alcohol {
  justify-content: flex-start;
  gap: 10px;
}
.series-row--beverage {
  justify-content: flex-start;
  gap: 10px;
}
.series-row--produce {
  justify-content: flex-start;
  gap: 10px;
}
.series-row--reverse {
  flex-direction: row-reverse;
}
.series-row__img {
  width: 54.2%;
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 640 / 394;
}
.series-row__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.series-row--beverage .series-row__img img {
  /* object-position: 30% 60%;
  padding-right: 40px;
  transform: scale(1.15) translateY(8%); */
}
.series-row__info {
  background: var(--white);
  padding: 60px 74px 19px 77px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  width: 650px;
  box-shadow: 0 0 0 0 transparent;
}
.series-row:not(.series-row--reverse) .series-row__info {
  right: 2px;
}
.series-row--reverse .series-row__info {
  left: -5px;
}
.series-row__info--jam {
  position: relative;
  z-index: 2;
  width: 650px;
  margin-top: 50px;
  margin-left: -80px;
  flex: 1;
  padding-bottom: 60px;
  box-shadow: none;
}
.series-row__info--soy {
  position: relative;
  z-index: 2;
  width: 650px;
  height: 456px;
  padding: 60px 80px;
  margin-left: -80px;
  margin-top: 50px;
  flex: 0 0 650px;
  box-shadow: none;
}
.series-row__info--alcohol {
  position: relative;
  z-index: 2;
  width: 650px;
  height: 456px;
  padding: 60px 80px;
  margin-left: -80px;
  margin-top: 50px;
  flex: 0 0 650px;
  box-shadow: none;
}
.series-row__info--beverage {
  position: relative;
  z-index: 2;
  width: 650px;
  height: 488px;
  padding: 60px 80px;
  margin-top: 50px;
  margin-right: -80px;
  flex: 0 0 650px;
  box-shadow: none;
}
.series-row__info--produce {
  position: relative;
  z-index: 2;
  width: 650px;
  height: 424px;
  padding: 60px 80px;
  gap: 45px;
  margin-top: 50px;
  margin-right: -80px;
  flex: 0 0 650px;
  box-shadow: none;
}
.series-row__info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.series-row__name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text);
}
.series-row__en {
  display: flex;
  align-items: center;
  gap: 8px;
}
.series-row__en-line {
  width: 8px;
  height: 1px;
  background: var(--gray);
}
.series-row__en-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.series-row__body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text);
  letter-spacing: 0.04em;
  text-align: justify;
}
.series-row:first-child .series-row__info > .btn {
  margin-left: 242px;
}
.series-row__info--soy .series-row__body {
  margin-top: -17px;
}
.series-row__info--soy > .btn {
  align-self: flex-end;
  margin-top: -7px;
  margin-right: 3px;
}
.series-row__info--alcohol > .btn {
  align-self: flex-end;
  margin-top: 0;
}
.series-row__info--beverage > .btn {
  align-self: flex-end;
  margin-right: 1px;
}
.series-row__info--produce .series-row__body {
  margin-top: -5px;
}
.series-row__info--produce > .btn {
  align-self: flex-end;
  margin-top: -5px;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 33px;
}
.category-grid__item {
  width: calc(33.333% - 14px);
  height: 196px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.category-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-grid__item:hover img { transform: scale(1.05); }
.category-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,28,28,0.3);
}
.category-grid__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.category-grid__name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--beige);
  letter-spacing: 0.03em;
}
.category-grid__en-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.category-grid__en-line {
  width: 8px;
  height: 1px;
  background: var(--gray);
}
.category-grid__en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #f1f5f4;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-radius: 99px;
  padding: 0 15px 0 30px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:hover { opacity: 0.85; }
.btn__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  background: transparent;
}
.btn__arrow svg { width: 14px; height: 14px; }
.btn__arrow svg path { stroke: var(--green); transition: stroke 0.25s; }

.btn--green {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--green);
  color: var(--green);
  width: 300px;
}

.btn--white-outline {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  width: 250px;
  font-size: 1.6rem;
  transition: border-color 0.25s, opacity 0.2s;
}
.btn--white-outline:hover {
  border-color: var(--text);
  opacity: 1;
}

.btn--dark-outline {
  background: var(--white);
  border: 1px solid var(--text);
  color: var(--text);
  width: 300px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, opacity 0.2s;
}
.btn--dark-outline:hover {
  background: #054E3C;
  border-color: #054E3C;
  color: var(--white);
  opacity: 1;
}
.btn--dark-outline:hover .btn__arrow svg path { stroke: var(--white); }

.btn--border-white {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  width: 300px;
  transition: background 0.25s, opacity 0.2s;
}
.btn--border-white:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: transparent;
  opacity: 1;
}
.btn--border-white .btn__arrow svg path { stroke: var(--white); }
.btn--dark-outline .btn__arrow svg path,
.btn--white-outline .btn__arrow svg path { stroke: var(--text); }

.btn-center {
  display: flex;
  justify-content: center;
}

/* ===== CTA ===== */
.cta-cinematic {
  position: relative;
  isolation: isolate;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.cta__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../images/shinyu/footer_img1.png") center center / cover no-repeat;
  transform: translateZ(0) scale(1.04);
}
.cta__image-area {
  width: 100%;
  padding-top: calc(334 / 1366 * 100%);
}
.cta__content {
  position: relative;
  z-index: 1;
  background: var(--green);
  padding: 88px 110px;
  border-bottom: 1px solid var(--border);
}
.cta__inner {
  width: 908px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--white);
  flex: 1;
}
.cta__title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}
.cta__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--white);
  opacity: 0.9;
}
.cta__desc-line {
  white-space: nowrap;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== STORE FINDER ===== */
.store-finder {
  background: var(--beige);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: -8px;
}
.store-finder__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-finder__left svg { width: 20px; height: 20px; }
.store-finder__label {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}
.store-finder__search-btn {
  background: var(--text);
  border: none;
  border-radius: 43px;
  height: 50px;
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  cursor: pointer;
  color: white;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  transition: opacity 0.2s;
}
.store-finder__search-btn:hover { opacity: 0.85; }
.store-finder__search-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-finder__search-icon img {
  width: 32px;
  height: 32px;
  display: block;
}


/* Layout utility */
.max-w { max-width: 1220px; margin: 0 auto; }

/* ===== FADE IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE: Tablet (769px – 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .lead__mark {
    right: -34.6%;
    width: 22rem;
  }
  .series-row__img {
    width: 50%;
  }
  .series-row__info--jam,
  .series-row__info--soy,
  .series-row__info--alcohol {
    flex: 1;
    width: auto;
    min-width: 0;
    height: auto;
    margin-left: -40px;
    margin-right: 0;
    padding: 40px 30px;
  }
  .series-row__info--beverage,
  .series-row__info--produce {
    flex: 1;
    width: auto;
    min-width: 0;
    height: auto;
    margin-left: 0;
    margin-right: -40px;
    padding: 40px 30px;
  }
  .series-row:first-child .series-row__info > .btn {
    margin-left: 0;
    align-self: flex-end;
  }
  .cta__content {
    padding: 60px 40px;
  }
  .cta__inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .cta__buttons {
    width: 100%;
  }
}

/* ===== RESPONSIVE: SP (≤768px) ===== */
@media (max-width: 768px) {
  /* Hero */
  .hero { height: 50rem; min-height: 480px; }
  .hero__img, .hero__overlay {
    width: 90.3%;
    height: 22rem;
    top: auto;
    bottom: 0;
  }
  .hero__overlay {
    display: none;
  }
  .hero__content {
    padding-left: 2rem;
    margin-top: 0;
    height: 50rem;
  }
  .hero__title { font-size: 3.4rem; }
  .hero__title-wrap {
    gap: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__label { font-size: 1.2rem; margin-top: 6.6rem; margin-bottom: 2rem; }
  .hero__scroll {
    margin-top: 16rem;
    left: -0.5rem;
    position: relative;
  }
  .hero__slider-dots { right: 24px; bottom: 20px; }

  /* Lead */
  .lead {
    padding: 6.4rem 2rem 4.8rem;
  }
  .lead__text { max-width: 100%; }
  .lead__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
    margin-top: 6.4rem;
  }
  .lead__body {
    font-size: 1.6rem;
    gap: 0;
  }
  .lead__body span[style] { white-space: normal !important; }
  .lead__mark {
    position: relative;
    top: auto;
    right: auto;
    width: 10.4rem;
    margin: 0 auto;
  }

  /* Features */
  .features {
    padding: 0 2rem 7.2rem;
    flex-direction: column;
    gap: 3rem;
  }
  .features__card {
    width: 100%;
    height: auto;
    padding: 3rem 2.5rem;
  }
  .features__icon img {
    width: 40px;
    height: 40px;
  }
  .features__icon {
    margin-bottom: 0.9rem;
  }
  .features__title {
    font-size: 2rem;
  }
  .features__en {
    font-size: 1.1rem;
    margin-top: 6px;
  }
  .features__info {
    margin-bottom: 1rem;
  }

  /* Gift */
  .gift { padding: 5.6rem 0; }
  .gift__header { padding: 0 2rem; gap: 2.4rem; flex-direction: column; }
  .gift__body { padding-top: 0; }
  .section-label { font-size: 1.1rem; }
  .section-title { font-size: 2.8rem; }
  .gift__titles { gap: 0.8rem; }
  .gift__title { font-size: 2.8rem; }
  .gift__body {
    width: 100%;
    min-width: 100%;
  }
  .gift__slider { height: auto; margin-top: 30px; }
  .gift__slider-track { height: auto; }
  .gift__slide {
    width: 16.6rem;
    height: auto;
    overflow: visible;
  }
  .gift__slide img { height: auto; object-fit: unset; }
  .gift__slide:nth-child(1),
  .gift__slide:nth-child(9) {
    height: 10.2rem;
    overflow: hidden;
  }
  .gift__slide:nth-child(1) img,
  .gift__slide:nth-child(9) img {
    height: 10.2rem;
    object-fit: cover;
  }

  /* Recommended */
  .recommended { padding: 6.4rem 2rem; gap: 3.2rem; }
  .recommended__header {
    gap: 0.8rem;
  }
  .recommended__grid { flex-wrap: wrap; gap: 1.6rem; justify-content: flex-start; max-width: 100%; }
  .product-card { flex: 0 0 calc(50% - 0.8rem); gap: 1.2rem; }
  .product-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .product-card__name {
    font-size: 1.4rem;
    letter-spacing: -0.42px;
  }

  /* Products section */
  .products-section { padding: 6.4rem 2rem 4rem; gap: 3.2rem; }
  .products-section__header {
    gap: 0.8rem;
  }
  .products-section__list { gap: 40px; }
  .series-row,
  .series-row--reverse { flex-direction: column !important; min-height: auto; gap: 0; }
  .series-row:first-child { gap: 0; }
  .series-row--soy { transform: none; margin-top: 0; }
  .series-row__img { width: 100%; clip-path: none !important; aspect-ratio: auto; }
  .series-row__img img {
    width: 100%;
    height: 22rem;
    object-fit: cover;
  }
  .series-row:first-child .series-row__img { clip-path: none !important; }
  .series-row__info {
    position: static;
    width: 100%;
    height: auto;
    padding: 2.4rem 0 4.8rem;
    margin: 0;
    flex: none;
    gap: 20px;
  }
  .series-row__info--jam,
  .series-row__info--soy,
  .series-row__info--alcohol,
  .series-row__info--beverage,
  .series-row__info--produce {
    position: static;
    width: 100%;
    height: auto;
    padding: 2.4rem 0 0;
    margin: 0;
    flex: none;
    gap: 20px;
    top: auto;
    right: auto;
    left: auto;
  }
  .series-row:not(.series-row--reverse) .series-row__info { right: auto; }
  .series-row--reverse .series-row__info { left: auto; }
  .series-row__info > .btn {
    align-self: flex-start;
    width: auto;
    margin-left: 0!important;
    margin-right: 0;
    min-height: 56px;
  }
  .series-row__name { font-size: 2rem; }
  .series-row__en-line {
    display: none;
  }
  .series-row__en-text {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .series-row__info-top {
    display: block;
  }

  /* Category grid */
  .category-grid {
    gap: 8px;
  }
  .category-grid__item { width: calc(50% - 4px);         height: 85.5px; }
  .category-grid__name { font-size: 1.8rem; }

  /* Buttons */
  .btn {
    font-size: 1.6rem;
    min-height: 66px;
    justify-content: center;
    gap: 0;
  }
  .btn__arrow { margin-left: 0; }
  .btn--white-outline,
  .btn--green,
  .btn--dark-outline,
  .btn--border-white { width: 100%; }

  /* CTA */
  .cta__image-area {
    padding-top: 50vw;
  }
  .cta__content { padding: 50px 24px; }
  .cta__inner { width: 100%; flex-direction: column; align-items: flex-start; gap: 40px; }
  .cta__title { font-size: 2.2rem; }
  .cta__desc { font-size: 1.4rem; }
  .cta__desc-line { white-space: normal; }
  .cta__buttons { width: 100%; }

  /* Store finder */
  .store-finder { flex-direction: column; gap: 20px; padding: 30px 24px; }
  .store-finder__label { font-size: 1.8rem; }
  .store-finder__search-btn { width: 100%; font-size: 1.4rem; max-width: 400px; }
}
