@charset "UTF-8";
/* --- Base Styles --- */
:root {
  --color-primary: #ed709d; /* amber-700 */
  --color-dark: #1c1917; /* stone-900 */
  --color-gray: #6b7280; /* gray-500 */
  --color-light-gray: #e5e7eb; /* gray-200 */
  --color-bg-soft: #f9f7f2;
  --font-main: "Noto Sans JP", sans-serif;
  --max-width: 1200px;
}

.container {
  max-width: var(--max-width);
  padding: 0 clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  margin: 0 auto;
}

/* --- Components --- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-dark {
  color: #fff !important;
  text-decoration: none !important;
  background-color: var(--color-dark);
}

.btn-dark:hover {
  background-color: #444;
}

.btn-outline {
  text-decoration: none !important;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

.recommend {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .recommend {
    margin-inline: calc(50% - 50vw);
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  aspect-ratio: 3/4;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #eee;
}
@media screen and (width >= 768px) {
  .hero {
    max-height: 700px;
    aspect-ratio: 16/9;
  }
}
@media screen and (width >= 1200px) {
  .hero {
    max-height: 500px;
  }
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .hero-content {
    margin-left: 20px;
  }
}

.hero-tag {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.2em;
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
}

.hero-title span {
  font-weight: 500;
}

/* --- Categories --- */
.section-padding {
  padding: clamp(3.75rem, 3.462rem + 1.282vw, 5rem) 0;
}

.section-title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
}

.section-subtitle {
  font-size: 14px;
  color: var(--color-gray);
}

.intro {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  text-align: center;
  background-color: rgb(246.5, 250.75, 255);
}
.intro.container {
  display: inherit;
  flex-direction: column;
  gap: 1rem;
  align-items: inherit;
  justify-content: inherit;
  padding-inline: 20px;
}
.intro__heading {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  word-break: keep-all;
}
.intro__description {
  margin-inline: auto;
  line-height: 1.8;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .intro__description {
    overflow-wrap: anywhere;
  }
}
.intro__btn-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

/* --- Item Grid --- */
.bg-soft {
  background-color: var(--color-bg-soft);
}

.item-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .item-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
}

@media (width >= 1024px) {
  .item-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-card {
  padding: 15px;
  background: #fff;
  border: 2px solid #fef3c7;
  border-radius: 8px;
  transition: 0.3s;
}
.product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.product-img {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 4px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-description {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-gray);
}

.product-name {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  word-break: keep-all;
}

.product-price {
  font-size: 14px;
}
.product-price span {
  font-size: 10px;
  color: var(--color-gray);
}

/* --- Coupon Banner --- */
.coupon-banner {
  display: none; /* JavaScriptで制御 */
}

.coupon-banner__link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.coupon-banner__link:hover {
  transform: translateY(-5px);
}

.coupon-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.timer-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-family: var(--font-main);
  color: var(--color-dark);
}

.timer-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.timer-display {
  display: flex;
  gap: 5px;
  font-size: 20px;
  font-weight: 700;
}

.timer-unit {
  align-self: flex-end;
  margin-left: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray);
}

/*# sourceMappingURL=category_new-life.css.map */
