/* reset css */
html {
  line-height: 1;
  color: #212529;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  color: #212529;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

ol,
ul,
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
  object-fit: cover;
}

svg {
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  color: inherit;
  background: transparent;
  border-radius: 0;
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

img,
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
}

picture {
  display: block;
}

video,
svg {
  width: 100%;
  height: auto;
}

summary {
  cursor: pointer;
}

@media (width < 768px) {
  .is-pc {
    display: none !important;
  }
}

@media (768px <= width) {
  .is-sp {
    display: none !important;
  }
}

/* =========================
   Variables
========================= */
:root {
  --font-family-jp:
    "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", sans-serif;
  --font-family-en: "Poppins", arial, sans-serif;
  --font-family-latin: "Poppins", arial, sans-serif;
  --color-main: #009140;
  --color-white: #fff;
  --text-brand: #009140;
  --text-secondary: #495057;
  --text-primary: #212529;
}

/* =========================
   共通コンポーネント
========================= */

.section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding-inline: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(1080px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section__content {
  margin-top: 32px;
}

.section-header {
  --subtitle-color: var(--brand-text-color);
  --title-color: #212529;
}

.section-header--white {
  --subtitle-color: #fff;
  --title-color: #fff;
}

.section-header__subtitle {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  color: var(--subtitle-color);
}

/* .section-header__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--title-color);
} */

.section-header__title-catch {
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  color: var(--text-secondary);

  @media (768px <= width) {
    font-size: 24px;
  }
}

.c-btn-wrap {
  margin-top: 32px;
  text-align: center;
}

.c-btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 46px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--text-brand);
  background: var(--color-white);
  border: 2px solid var(--text-brand);
  border-radius: 104px;
  box-shadow: 0 6px 0 0 #004a28;
}

.c-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 48px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/202604/top/icon-arrow-green.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  rotate: 0.3deg;
}

.c-btn:hover {
  color: var(--text-brand);
  background: #e6f4ed;
}

/* =========================
   FV
========================= */

.fv {
  background: #fff6e0;
  overflow: hidden;

  @media (768px <= width) {
    overflow: hidden;
    position: relative;
    /* padding-bottom: 95px; */
    padding-bottom: 126px;
  }
}

.fv__media {
  position: relative;
  @media (768px <= width) {
    /* max-height: 594px; */
    max-height: 500px;
  }
}

.fv__image {
  @media (768px <= width) {
    width: 100%;
    height: 100%;
    /* max-height: 594px; */
    max-height: 500px;
    object-fit: cover;
    object-position: bottom;
  }
}

.fv__image-picture {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fv__image-picture:first-child {
  position: relative;
}

.fv__image-picture.is-active {
  opacity: 1;
}

.center-slider {
  display: flex;
  overflow: visible;
  align-items: center;
  padding: 60px 0;
  touch-action: pan-y;

  @media (768px <= width) {
    /* padding-block: 60px 90px; */
    padding-block: 60px 46px;
  }
}

.center-slider .swiper {
  overflow: visible;
}

/* .swiper-wrapper {
  height: 194px;
} */

.swiper-wrapper.swiper-wrapper-banner {
  height: fit-content;
}
/* ── 自前スライダー track ── */
.swiper-wrapper-center {
  display: flex;
  align-items: center;
  height: 194px;

  @media (768px <= width) {
    height: 280px;
  }
}

/* ── 自前スライダー 各スライド ── */
.cs-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* サイズ制御ラッパー */
a.slide-box {
  display: block;
  text-decoration: none;
  color: inherit;
}

.slide-box {
  margin-top: -7px;
  transform: scale(0.74);
  transition: 0.7s;
  overflow: visible !important;

  @media (768px <= width) {
    margin-top: 0;
    transform: none;
  }

  &.--nagoyan {
    .speech {
      bottom: calc(50% - -66px);
      left: calc(50% - 62px);
      width: 136px !important;
      @media (768px <= width) {
        bottom: calc(50% - -80px);
        left: calc(50% - 76px);
        width: calc(136px * 1.2) !important;
      }
    }
  }
  &.--longlife {
    .speech {
      bottom: calc(50% - -68px);
      left: calc(50% - -58px);
      width: 128px !important;
      @media (768px <= width) {
        bottom: calc(50% - -84px);
        left: calc(50% - -72px);
        width: calc(128px * 1.2) !important;
      }
    }
  }
  &.--choujukuotoriyose {
    .speech {
      bottom: calc(50% - -56px);
      left: calc(50% - 62px);
      width: 136px !important;
      @media (768px <= width) {
        bottom: calc(50% - -64px);
        left: calc(50% - 74px);
        width: calc(128px * 1.2) !important;
      }
    }
  }
  &.--pankit {
    .speech {
      bottom: calc(50% - -68px);
      left: calc(50% - -50px);
      width: 122px !important;
      @media (768px <= width) {
        bottom: calc(50% - -76px);
        left: calc(50% - -60px);
        width: calc(122px * 1.2) !important;
      }
    }
  }
}

.is-active .slide-box {
  @media (768px <= width) {
    margin-top: 1px;
    transform: none;
  }
}

/* SP用（Swiperがあればそちらで使う） */
.swiper-slide-active .slide-box {
  margin-top: 1px;
  opacity: 1;
  transform: scale(1.17);
}

.slide-box img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.swiper-pagination {
  display: flex;
  bottom: 25px !important;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  left: 50%;
  translate: -50% 0;

  @media (768px <= width) {
    /* display: none; */
  }
}

.swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin-inline: 0 !important;
  background: #c9c9c9;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.swiper-pagination-bullet-active {
  width: 48px;
  height: 4px;
  background: #c9c9c9;
  border-radius: 999px;
}

.center-sliderWrap {
  margin-top: -191px;

  @media (768px <= width) {
    /* overflow: hidden; */
    position: absolute;
    left: 50%;
    width: 100%;
    max-width: 868px;
    margin-top: -248px;
    margin-inline: auto;
    translate: -50%;
  }
}

@media (768px <= width) {
  /* 自前スライダー：幅はJSで制御 */
  .cs-slide {
    transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.slide-box {
  position: relative;
}

.speech {
  position: absolute;
  /* bottom: calc(50% - -57px);
  left: calc(50% - -59px);
  width: 110px !important; */
  bottom: calc(50% - -56px);
  left: calc(50% - -68px);
  width: 154px !important;
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.8);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;

  @media (768px <= width) {
    /* bottom: calc(50% - -40px); */
    bottom: calc(50% - -64px);
    left: calc(50% - -86px);
    width: 180px !important;
  }
}

.swiper-slide-active .speech,
.is-active .speech {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-delay: 0.4s;
}

.banner-slider {
  padding: 10px 0 5px;
  background: #fff6e0;
  overflow: hidden;
  margin-top: -5px;

  @media (768px <= width) {
    padding-top: 29px;
  }
}

.banner-swiper {
  overflow: visible;
  position: relative;
  touch-action: pan-y;

  @media (768px <= width) {
    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      z-index: 10;
      width: 350px;
      height: 150%;
      background: linear-gradient(
        var(--grad-rotate, 90deg),
        #fff6e0 17.31%,
        rgb(255 246 224 / 0%) 100%
      );
      translate: 0 -50%;

      @media (width < 1200px) {
        width: 150px;
      }
    }

    &::after {
      right: 0;

      --grad-rotate: 270deg;
    }
  }
}

.banner-slide {
  position: relative;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;

  @media (768px <= width) {
    width: 305px;
    height: auto;
  }
}

.banner-slide__link {
  display: block;
  width: 100%;
}

.banner-slide__link:hover {
  opacity: 0.7;
}

.banner-slide img {
  display: block;
  width: 100%;
}

.banner-slide {
  position: relative;
}

.pickup-badge {
  position: absolute;
  left: 13%;
  z-index: 10;

  /* left: 16px;
  width: 66px; */
  width: calc(66 / 375 * 100vw);

  /* top: -10px;
  left: 0;
  width: 100px; */

  /* opacity: 0; */

  /* transform: scale(0.3); */
  pointer-events: none;
  translate: 0 -50%;

  @media (768px <= width) {
    left: calc(50% - 140.5px);
    width: 65px;
  }
}

/* 
.banner-swiper .swiper-slide-active .pickup-badge {
  animation: poyonIn 0.6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.banner-swiper .swiper-slide-prev .pickup-badge,
.banner-swiper .swiper-slide-next .pickup-badge {
  animation: fadeOut 0.35s ease forwards;
}

@keyframes poyonIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  80% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.6);
  }
} */

/* =========================
   Concept Section
========================= */
.concept {
  position: relative;
  padding: 40px 0 60px;
  text-align: center;
  background: #fff6e0;
  overflow: hidden;

  @media (768px <= width) {
    --grad-percent: 94%;

    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 0;
    background: linear-gradient(
      to bottom,
      #fff6e0 0%,
      #fff6e0 var(--grad-percent),
      #fff var(--grad-percent),
      #fff 100%
    );
  }
}

/* .concept_bg01 {
  position: absolute;
  top: -14px;
  left: -86px;
  width: 200px;
  left: calc(50% - 175px);
  transform: translateX(-50%);

} */

.concept__inner {
  @media (768px <= width) {
    position: relative;
    z-index: 1;
  }
}

.concept_bg01 {
  position: absolute;
  top: -14px;
  left: calc(50% - 175px);
  width: 200px;
  /* opacity: 0;
  transform: translate(-120%, -20px) scale(0.8); */
  transform: translate(-50%, 0) scale(1);

  @media (768px <= width) {
    top: -7px;
    left: calc(50% - min(calc(596 / 1440 * 100vw), 596px));
    width: 459px;
    filter: blur(4px);
  }
}

.concept_bg01.is-show {
  /* animation: pyonInLeft 0.9s cubic-bezier(.34, 1.56, .64, 1) forwards; */
  animation: pyonInLeft 0.5s cubic-bezier(0.34, 1.16, 0.64, 1) forwards;
}

@keyframes pyonInLeft {
  0% {
    opacity: 0;
    transform: translate(-120%, -20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

/* 
.concept_bg02 {
  position: absolute;
  width: 128px;
  top: 38px;
  left: calc(50% + 175px);
  transform: translateX(-50%);
} */

.concept_bg02 {
  position: absolute;
  top: 38px;
  right: calc(50% - 175px);
  width: 128px;
  /* opacity: 0;
  transform: translate(120%, -20px) scale(0.8); */
  transform: translate(50%, 0) scale(1);

  @media (768px <= width) {
    top: 123px;
    right: calc(50% - min(calc(490 / 1440 * 100vw), 490px));
    width: 159px;
  }
}

@keyframes pyonInRight {
  0% {
    opacity: 0;
    transform: translate(120%, -20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translate(50%, 0) scale(1);
  }
}

.concept_bg02.is-show {
  /* animation: pyonInRight 0.9s cubic-bezier(.34, 1.56, .64, 1) forwards; */
  animation: pyonInRight 0.5s cubic-bezier(0.34, 1.16, 0.64, 1) forwards;
}

.concept_bg01.is-show {
  animation-delay: 0.1s;
}

.concept_bg02.is-show {
  animation-delay: 0.3s;
}

.concept_bg03 {
  position: absolute;
  /* top: 316px;
  left: calc(50% - 497px);
  width: 199px; */
  top: 290px;
  left: calc(50% - 680px);
  width: 360px;
}

.concept_bg04 {
  position: absolute;
  /* top: 339px;
  left: calc(50% + 265px);
  width: 251px; */
  top: 278px;
  left: calc(50% + 416px);
  width: 350px;
}

.concept_bg05 {
  position: absolute;
  top: 514px;
  left: calc(50% - 668px);
  width: 306px;
  rotate: 13.09deg;
}

.concept_bg06 {
  position: absolute;
  top: 579px;
  left: calc(50% + 455px);
  width: 379px;
  rotate: 29.98deg;
}

.concept__label {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #008c45;
}

.concept__lead {
  margin-bottom: 24px;
  font-size: 16px;
}

.concept {
  .concept__title-en {
    @media (768px <= width) {
      font-size: 16px;
    }
  }
}

.concept__title {
  margin-bottom: 48px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
}

.concept__title-main {
  font-weight: 700;
  @media (768px <= width) {
    margin-top: 14px;
  }
}

.concept__title.section-header__title {
  margin: 12px 0 0;
  font-size: 24px;

  @media (768px <= width) {
    margin-top: 14px;
    font-size: 32px;
  }
}

.concept__texts {
  margin-top: 24px;

  @media (768px <= width) {
    margin-top: 20px;
  }
}

.concept__texts p {
  display: inline-block;
  position: relative;
  margin-top: 1px;
  margin-bottom: -5px;
  padding-bottom: 12px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  /* line-height: 2.2; */
  line-height: 1.9;
  text-align: center;
  color: var(--text-primary);

  @media (768px <= width) {
    margin-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 2.2;

    &:first-child {
      margin-top: 0;
    }
  }
}

.concept__line {
  @media (768px <= width) {
    span:first-child {
      margin-bottom: 0;
    }
  }
}

.concept__line span {
  display: inline-block;
  position: relative;
  margin-bottom: 3px;
  padding-bottom: 2px;

  @media (768px <= width) {
    padding-bottom: 0;
  }
}

.concept__line span::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  /* height: var(--line-h, 2px); */
  height: 1px;
  background-image: var(--line-img);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  /* rotate: var(--line-rotate, 0.3deg); */

  @media (768px <= width) {
    --line-rotate: 0deg;
  }
}

.concept__line:nth-of-type(1) span:nth-of-type(1)::after {
  --line-img: url("../../img/202604/top/line01-sp.svg");
}
.concept__line:nth-of-type(1) span:nth-of-type(2)::after {
  --line-img: url("../../img/202604/top/line02-sp.svg");
}
.concept__line:nth-of-type(1) span:nth-of-type(3)::after {
  --line-img: url("../../img/202604/top/line03-sp.svg");
}
.concept__line:nth-of-type(1) span:nth-of-type(4)::after {
  --line-img: url("../../img/202604/top/line04-sp.svg");
}

.concept__line:nth-of-type(3) {
  margin-top: 0px;
}
.concept__line:nth-of-type(3) span:nth-of-type(1)::after {
  --line-img: url("../../img/202604/top/line05-sp.svg");
}
.concept__line:nth-of-type(3) span:nth-of-type(2)::after {
  --line-img: url("../../img/202604/top/line06-sp.svg");
}
@media (768px <= width) {
  /* pc */
  .concept__line:nth-of-type(2) span:nth-of-type(1)::after {
    --line-img: url("../../img/202604/top/line01-pc.svg");
  }
  .concept__line:nth-of-type(2) span:nth-of-type(2)::after {
    --line-img: url("../../img/202604/top/line02-pc.svg");
  }
  .concept__line:nth-of-type(2) span:nth-of-type(3)::after {
    --line-img: url("../../img/202604/top/line03-pc.svg");
  }

  .concept__line:nth-of-type(3) {
    margin-top: 10px;
  }
  .concept__line:nth-of-type(3) span:nth-of-type(1)::after {
    --line-img: url("../../img/202604/top/line04-pc.svg");
  }
  .concept__line:nth-of-type(3) span:nth-of-type(2)::after {
    --line-img: url("../../img/202604/top/line05-pc.svg");
  }
}

.concept__texts p:last-child {
  margin-bottom: 0;
}

.bread-slider {
  overflow: hidden;
  padding: 30px 0 0;

  @media (768px <= width) {
    padding-top: 70px;
  }
}

.bread-slider__row {
  overflow: hidden;
  margin-bottom: 12px;

  @media (768px <= width) {
    margin-bottom: 16px;
  }
}

.bread-slider__row--bottom {
  @media (768px <= width) {
    margin-bottom: 0;
  }
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--set-width));
  }
}

@keyframes slide-right {
  from {
    transform: translateX(calc(var(--set-width) + var(--offset, 0px)));
  }
  to {
    transform: translateX(calc(0px + var(--offset, 0px)));
  }
}

.bread-slider__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;

  @media (768px <= width) {
    gap: 16px;
  }
}

.js-slider-top {
  animation: slide-left 50s linear infinite;
}

.js-slider-bottom {
  animation: slide-right 50s linear infinite;
}

.bread-slider__track img {
  flex-shrink: 0;
  width: 159px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;

  @media (768px <= width) {
    width: 256px;
  }
}

/* =========================
  Product Section
========================= */

.product {
  position: relative;
  margin-top: -27px;
  padding: 64px 0;
  background: #fff;
  border-radius: 32px;

  @media (768px <= width) {
    padding-top: 130px;
    padding-bottom: 108px;
    border-radius: 48px;
  }
}

.product__text {
  width: fit-content;
  margin-top: 16px;
  margin-inline: auto;
  padding-inline: 16px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-primary);

  @media (768px <= width) {
    margin-top: 32px;
    text-align: center;
  }
}

.product__title-ja {
  @media (768px <= width) {
    margin-top: 14px !important;
  }
}

.product__inner {
  margin-top: 40px;
  @media (768px <= width) {
    max-width: min(calc(1048px + 40px * 2), 100%);
    margin-top: 32px;
  }
}

.product-grid-items {
  display: grid;
  gap: 32px 15px;
  grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));

  @media (width < 390px) {
    grid-template-columns: repeat(2, 1fr);
  }

  li {
    display: flex;
  }

  li:nth-of-type(n + 7) {
    display: none;

    @media (768px <= width) {
      display: block;
    }
  }

  @media (768px <= width) {
    gap: 48px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* product-card */
.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__link {
  &:hover {
    .product-card__top {
      opacity: 0.8;
    }
  }
}

.product-card__top {
  position: relative;
  transition: opacity 0.3s;
}

.product-card__img {
  img {
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
  }
}

.product-card__badge-wrap {
  position: absolute;
}

.product-badge--sold-out {
  padding-block: 7px;
  padding-inline: 8px;
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: #adb5bd;
}

.product-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;

  &:not(:has(.product-label)) {
    display: none;
  }

  @media (768px <= width) {
    gap: 8px;
  }
}

.product-label {
  padding-block: 4px;
  padding-inline: 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.8px;
  color: #fff;
  background-color: #eb8478;
  border-radius: 2px;

  @media (768px <= width) {
    font-size: 12px;
    letter-spacing: -0.96px;
  }
}

.product-label--cold {
  background-color: #66a0cc;
}

.product-label--first-time {
  background-color: #66bd8f;
}

.product-label--shipping-included {
  background-color: #eb8478;
}

.product-label--special-price {
  background-color: #d92d20;
}

.product-label--limited-time {
  background-color: #d9a91f;
}

.product-card__title {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  @media (768px <= width) {
    font-size: 16px;
  }
}

.product-card__price-wrap {
  /* margin-top: 16px; */
  padding-top: 16px;
  margin-top: auto;

  > span {
    display: block;
  }
}

.product-card__price {
  width: fit-content;
  margin-left: auto;
}

.product-card__price-original {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 5px;
}

.product-card__price-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #d92d20;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-img-card__price-arrow-icon {
  width: 18px;
  height: auto;
  translate: -4px -3px;
}

.product-card__price-number {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 28px;
  }
}

.product-card__price-unit {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.product-card__price-tax {
  font-size: 12px;
  line-height: 1.2;

  @media (768px <= width) {
    font-size: 14px;
  }
}

.product-card__price-box--original {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 45%;
    left: -2px;
    width: 97%;
    height: 1px;
    background-color: #d92d20;
    translate: 0 -50%;
  }

  .product-card__price-number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }
}

.product-card__price-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  font-family: var(--font-family-latin);
}

.product-card__price-box:nth-of-type(2) {
  color: #d92d20;
}

.product-card__price-arrow {
  display: flex;
}

/* =========================
   Brand Section
========================= */

.brand {
  margin-top: -25px;
  padding: 93px 0 44px;
  text-align: center;
  background: #fff6e0;

  @media (768px <= width) {
    padding-top: 138px;
    padding-bottom: 112px;
  }
}

.brand__title.section-header__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.brand__title span {
  color: #495057;
  text-align: center;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  @media (768px <= width) {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
  }
}

.brand__list {
  display: grid;
  gap: 22px;
  margin-top: 23px;

  @media (768px <= width) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 49px;
  }
}

/* ===== カード共通 ===== */

.brand-card {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  list-style: none;

  @media (768px <= width) {
    max-width: 343px;
    margin-inline: 0;
  }
}

.brand-card__linkWrap {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 520px;
  text-decoration: none;
  color: #fff;
  background-image: url("../../img/202604/top/brand-nagoyan.png");
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 12%);
}

.brand-card--brown .brand-card__linkWrap {
  background-image: url("../../img/202604/top/brand-loven.png");
}

.brand-card--green .brand-card__linkWrap {
  background-image: url("../../img/202604/top/brand-long.png");
}

.brand-card--blue .brand-card__linkWrap {
  background-image: url("../../img/202604/top/brand-choujuku.png");
}

.brand-card--beige .brand-card__linkWrap {
  background-image: url("../../img/202604/top/brand-kyono.png");
}

.brand-card__link {
  margin-top: auto;
}

.brand-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card__content {
  display: flex;
  position: absolute;
  inset: 0;
  flex-direction: column;
  gap: 12px;
  padding: 33px 8px 30px;
}

.brand-card__logo {
  margin-inline: auto;
  font-size: 26px;
  font-weight: bold;
}

.brand-card__lead {
  margin-top: 28px;
  font-family: var(--font-family-jp);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 0 8px rgb(0 0 0 / 50%);
  color: var(--subtitle-color);
}

.brand-card__text {
  margin-top: 6px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 2.2;
  text-align: center;
  text-shadow: 0 0 4px #000;
  color: var(--subtitle-color);
}

.brand-card__btn {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 311px;
  margin-top: 16px;
  margin-top: auto;
  margin-inline: auto;
  padding: 10px 22px 13px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--subtitle-color);
  border-radius: 999px;
}

.brand-card__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("../../img/202604/top/blown_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.brand-card--orange .brand-card__btn::before {
  background-image: url("../../img/202604/top/orange_arrow.svg");
}

.brand-card--green .brand-card__btn::before {
  background-image: url("../../img/202604/top/green_arrow.svg");
}

.brand-card--blue .brand-card__btn::before {
  background-image: url("../../img/202604/top/blue_arrow.svg");
}

.brand-card--beige .brand-card__btn::before {
  background-image: url("../../img/202604/top/beige_arrow.svg");
}

.brand-card--brown .brand-card__content .brand-card__logo img {
  width: 172px;
  height: auto;
}

.brand-card--orange .brand-card__content .brand-card__logo img {
  width: 182px;
  height: auto;
}

.brand-card--green .brand-card__content .brand-card__logo img {
  width: 130px;
  height: auto;
}

.brand-card--blue .brand-card__content .brand-card__logo img {
  width: 241px;
  height: auto;
}

.brand-card--beige .brand-card__content .brand-card__logo img {
  width: 157px;
  height: auto;
}

/* ===== ブランドごとの色味 ===== */

.brand-card--brown .brand-card__btn {
  color: #fff;
  background: #773807;
  box-shadow: 0 6px 0 0 #361a05;
}

.brand-card--brown .brand-card__link:hover .brand-card__btn {
  background: #552807;
}

.brand-card--orange .brand-card__btn {
  color: #fff;
  background: #be8915;
  box-shadow: 0 6px 0 0 #6f500b;
}

.brand-card--orange .brand-card__link:hover .brand-card__btn {
  background: #937125;
}

.brand-card--green .brand-card__btn {
  color: #fff;
  background: #004a28;
  box-shadow: 0 6px 0 0 #002012;
}

.brand-card--green .brand-card__link:hover .brand-card__btn {
  background: #003f22;
}

.brand-card--blue .brand-card__btn {
  color: #fff;
  background: #005099;
  box-shadow: 0 6px 0 0 #002b52;
}

.brand-card--blue .brand-card__link:hover .brand-card__btn {
  background: #003e73;
}

.brand-card--beige .brand-card__btn {
  color: #fff;
  background: #bc641d;
  box-shadow: 0 6px 0 0 #773807;
}

.brand-card--beige .brand-card__link:hover .brand-card__btn {
  background: #8c4b16;
}

/* =========================
   News Section
========================= */
.news {
  padding: 50px 0 63px;
  background: #fff;

  @media (768px <= width) {
    padding-top: 112px;
    padding-bottom: 111px;
  }
}

/* header */
.news__header {
  text-align: center;
}

.news__title-ja {
  @media (768px <= width) {
    margin-top: 14px !important;
  }
}

.section-header__subtitle {
  display: block;
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-brand);

  @media (768px <= width) {
    font-size: 16px;
  }
}

.section-header__title {
  margin: 12px 0 0;
  font-family: var(--font-family-jp);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);

  @media (768px <= width) {
    font-size: 24px;
  }
}

.news__inner {
  margin-top: 24px;
  border-bottom: 1px dashed #adb5bd;

  @media (768px <= width) {
    margin-top: 48px;
  }
}

.news__item {
  border-top: 1px dashed #adb5bd;
  padding: 15px 17px;

  /* &:hover {
    background-color: #f1f3f5;
  } */

  a {
    font-weight: 500;
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      opacity: 1!important;
    }
  }
}

.news__item:nth-child(n + 6) {
  display: none;
}

/* .news__item:last-of-type {
  border-bottom: 1px dashed #adb5bd;
} */

/* .news__link {
  display: block;
  padding: 15px 17px;
  text-decoration: none;

  @media (768px <= width) {
    padding: 15.2px 17px;
  }
}

.news__link:hover {
  background-color: #f1f3f5;
} */

.news__date {
  display: block;
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-brand);
}

.news__title {
  margin-top: 8px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--text-primary);

  a {
    transition: 0.3s;
    &:hover {
      opacity: 0.8;
      color: var(--text-primary);
    }
  }
}

.news__btn-wrap {
  width: 204px;
  margin-inline: auto;

  @media (768px <= width) {
    margin-top: 47px;
  }
}

.to-cart-btn {
  --btn-bg-color: #fff;
  --btn-hover-bg-color: #e6f4ed;
  --btn-text-color: #009140;
  --btn-border: #009140;
  --btn-shadow: #004a28;
  --btn-icon-bg-color: #fff;
  --btn-icon-color: #009140;

  display: flex;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 78px;
  aspect-ratio: 1/1;
  background: var(--btn-bg-color);
  border: 2px solid var(--btn-border);
  border-radius: calc(infinity * 1px);
  box-shadow: 0 4px 0 0 var(--btn-shadow);
  transition: 0.1s ease-out;
  cursor: pointer;

  &:hover {
    color: var(--btn-text-color);
    background: var(--btn-hover-bg-color);
  }
  &:focus {
    overflow: visible;
  }
}

.to-cart-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.to-cart-btn__count {
  display: grid;
  position: absolute;
  top: 3px;
  right: 4px;
  width: 20px;
  height: 20px;
  background-color: #d92d20;
  border-radius: calc(infinity * 1px);
  place-content: center;
}

.to-cart-btn__count-text {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.to-cart-btn__icon {
  width: 40px;
  height: 40px;
}

.to-cart-btn__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--btn-text-color);
}

.to-cart-btn:active {
  box-shadow: 0 0 0 0 var(--button-primary-shadow, #004a28);
  transform: translateY(4px);
}
