@charset "utf-8";
/* base
--------------------------------------------------------- */
.cnu-wrapper {
  padding-bottom: 116px;
  color: #301c17;
  position: relative;
}

.cnu-section-title {
  font: 6rem/1.75 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media (max-width: 768px) {
  .cnu-section-title {
    font-size: 4rem;
    text-align: center;
  }
}

/* mainvisual
--------------------------------------------------------- */
.cnu-mainvisual {
  width: 100%;
  background: linear-gradient(330deg, #c2d84e 0 10%, #d7e160 28%, #fff68c 55%, #ec777a 90%, #ea6671 100%);
  position: relative;
}
.cnu-mainvisual::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(330deg, rgba(194, 216, 78, 0.9) 0 10%, rgba(215, 225, 96, 0.9) 28%, rgba(255, 246, 140, 0.9) 55%, rgba(236, 119, 122, 0.9) 90%, rgba(234, 102, 113, 0.9) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.cnu-mainvisual__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* nav
--------------------------------------------------------- */
.cnu-nav {
  width: 100%;
  background: #eb6671;
}
.cnu-nav__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cnu-nav__inner {
    gap: 0;
    padding: 0;
  }
}
.cnu-nav__item {
  grid-column: span 1;
  background: #fff;
}
@media (max-width: 768px) {
  .cnu-nav__item {
    grid-column: span 2;
  }
}
.cnu-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 16px;
  font: 2.6rem/1.6923076923 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: bold;
  color: #fff;
  background: #eb6671;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-nav__link {
    padding: 8px 16px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.cnu-nav__link:hover {
  background: rgba(235, 102, 113, 0.6);
}
.cnu-nav__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 10px;
  transform: translateY(1px);
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-nav__icon {
    width: 20px;
    height: 20px;
  }
}
.cnu-nav__icon::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-2px) rotate(45deg);
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-nav__icon::before {
    width: 6px;
    height: 6px;
    transform: translateY(-1px) rotate(45deg);
  }
}

/* product
--------------------------------------------------------- */
.cnu-product {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .cnu-product {
    padding: 32px 0;
  }
}
.cnu-product__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.cnu-product__cell--1-col {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .cnu-product__cell--1-col {
    grid-column: span 3;
  }
}
.cnu-product__cell--2-col {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .cnu-product__cell--2-col {
    grid-column: span 3;
  }
}
.cnu-product__cell--3-col {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .cnu-product__cell--3-col {
    grid-column: span 3;
  }
}
.cnu-product__section-title {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cnu-product__section-title {
    margin-bottom: 8px;
  }
}
.cnu-product__text {
  font: 2.6rem/1.6923076923 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(235, 102, 113, 0.3);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .cnu-product__text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.cnu-product__text + .cnu-product__text {
  margin-top: 44px;
}
@media (max-width: 768px) {
  .cnu-product__text + .cnu-product__text {
    margin-top: 30px;
  }
}
.cnu-product__list {
  display: table;
  width: 100%;
  margin-top: 32px;
  list-style: none;
  counter-reset: number;
  font-size: 1.4rem;
  line-height: 1.75;
}
.cnu-product__list > li {
  display: table-row;
  counter-increment: number;
}
.cnu-product__list > li::before {
  content: "（※" counter(number) "）";
  display: table-cell;
  white-space: pre;
}
.cnu-product__list > li > div {
  display: table-cell;
  width: 100%;
}
.cnu-product__button {
  width: 100%;
  max-width: 576px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .cnu-product__button {
    max-width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .cnu-product__button {
    margin-top: 24px;
  }
}
.cnu-product__button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background: #00745d;
  font: 2.6rem/1.6923076923 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: bold;
  color: #fff;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-product__button__link {
    padding: 8px 16px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.cnu-product__button__link:hover {
  background: rgba(0, 116, 93, 0.6);
}
.cnu-product__button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 10px;
  transform: translateY(1px);
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-product__button__icon {
    width: 20px;
    height: 20px;
  }
}
.cnu-product__button__icon::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(-2px) rotate(45deg);
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .cnu-product__button__icon::before {
    width: 6px;
    height: 6px;
    transform: translateX(-1px) rotate(45deg);
  }
}
.cnu-product__claim {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .cnu-product__claim {
    flex-direction: column;
  }
}
.cnu-product__claim__title {
  flex-shrink: 0;
  padding: 2px 16px;
  border: 1px solid #301c17;
  font-weight: bold;
}
.cnu-product__claim__data {
  width: 100%;
  font-size: 1.4rem;
}
.cnu-product__image--01 {
  margin: 0 auto;
  max-width: 378px;
}
@media (max-width: 768px) {
  .cnu-product__image--01 {
    margin-top: 32px;
  }
}

/* taste
--------------------------------------------------------- */
.cnu-taste {
  padding: 112px 0 152px;
  background: url(../images/index-bg-01.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .cnu-taste {
    padding: 32px 0;
  }
}
.cnu-taste__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.cnu-taste__cell--1-col {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .cnu-taste__cell--1-col {
    grid-column: span 3;
  }
}
.cnu-taste__cell--2-col {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .cnu-taste__cell--2-col {
    grid-column: span 3;
  }
}
.cnu-taste__cell--3-col {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .cnu-taste__cell--3-col {
    grid-column: span 3;
  }
}
.cnu-taste__sub-title {
  font: 2.6rem/1.6923076923 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #a6e04b;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .cnu-taste__sub-title {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }
}
.cnu-taste__text {
  font: 2.6rem/1.6923076923 "Noto Serif JP", "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media (max-width: 768px) {
  .cnu-taste__text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.cnu-taste__sub-title + .cnu-taste__text {
  margin-top: 16px;
}
.cnu-taste__list {
  display: table;
  width: 100%;
  margin-top: 16px;
  list-style: none;
  counter-reset: number;
  font-size: 1.4rem;
  line-height: 1.75;
}
.cnu-taste__list > li {
  display: table-row;
  counter-increment: number;
}
.cnu-taste__list > li::before {
  content: "（※" counter(number) "）";
  display: table-cell;
  white-space: pre;
}
.cnu-taste__list > li > div {
  display: table-cell;
  width: 100%;
}
.cnu-taste__image--01 {
  margin: 0 auto;
  max-width: 378px;
}

/* slider
--------------------------------------------------------- */
@keyframes cnu-slider-anime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }
}
.cnu-slider {
  margin-top: 32px;
  overflow: hidden;
}
.cnu-slider__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4392px;
}
@media (max-width: 768px) {
  .cnu-slider__inner {
    width: 300vw;
    width: 300dvw;
  }
}
.cnu-slider__item {
  width: 488px;
  padding: 0 8px;
  animation: cnu-slider-anime 30s linear infinite;
}
@media (max-width: 768px) {
  .cnu-slider__item {
    width: 11.1111111111%;
  }
}

/* banner
--------------------------------------------------------- */
.cnu-banner {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
}
.cnu-banner__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
  height: 100dvh;
  padding: 16px;
  position: sticky;
  top: 0;
  right: 0;
}
.cnu-banner__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cnu-banner__item.cnu-is-active {
  opacity: 1;
  pointer-events: auto;
}
.cnu-banner__item.cnu-is-deactivated {
  opacity: 0;
  pointer-events: auto;
}
.cnu-banner__close {
  width: 24px;
  height: 24px;
  border: 1px solid #00745d;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: #fff;
  padding: 0;
  margin: 0;
  text-align: inherit;
  text-transform: inherit;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.cnu-banner__close:hover {
  opacity: 0.7;
}
.cnu-banner__close::before, .cnu-banner__close::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background: #00745d;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cnu-banner__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cnu-banner__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cnu-banner__close__text {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cnu-banner__image {
  display: block;
  max-width: 400px;
  transition: opacity 0.3s ease;
}
.cnu-banner__image:hover {
  opacity: 0.7;
}
