@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

img,
picture {
  display: inline;
  max-width: 100%;
  vertical-align: top;
}

iframe {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
  transition: ease-in-out, 0.3s;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}
@media (max-width: 430px) {
  html {
    font-size: 3.7209302326vw;
  }
}
@media (min-width: 431px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #000000;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body.is-modal-open {
  overflow: hidden;
}

.js-bubble {
  scale: 0;
  transition: scale 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-bubble.is-zoom {
  scale: 1;
}

.js-deco {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.js-deco.is-active {
  opacity: 1;
}

.js-order {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.js-order.is-active {
  opacity: 1;
}

.js-products-seq img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.js-products-seq img.is-active {
  opacity: 1;
}

.js-mv-number,
.js-mv-products {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.js-mv-number.is-active,
.js-mv-products.is-active {
  opacity: 1;
}

.js-deco-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.js-deco-item.is-active {
  opacity: 1;
}

.p-sidebar__item-img__products,
.p-sidebar__item-img__deco--05,
.p-sidebar__item-img__deco--06 {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.p-sidebar__item-img__products.is-active,
.p-sidebar__item-img__deco--05.is-active,
.p-sidebar__item-img__deco--06.is-active {
  opacity: 1;
}

button {
  color: #000000;
}

.l-contents {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 26.875rem;
  width: 26.875rem;
  margin-inline: auto;
  background: #fffdf5;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  .l-contents {
    width: 430px;
  }
}

.l-inner {
  width: 100%;
  margin-inline: auto;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.l-wrapper {
  display: flex;
}
@media (min-width: 431px) {
  .l-wrapper {
    overflow: clip;
  }
}

.c-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.875rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #ffffff;
  transition: ease-in-out, 0.13s;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  border-radius: 100vh;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-more {
  position: absolute;
  color: #834400;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 10;
}

.c-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.375rem;
  height: 6.375rem;
  background: url(../images/icon_more.webp) center/contain no-repeat;
  z-index: -1;
}

.p-anchor__inner {
  padding-top: 4.625rem;
}

.p-anchor__title {
  color: #cb8a42;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-anchor__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3125rem;
  margin-top: 1.1875rem;
}

.p-anchor__item {
  position: relative;
  width: calc((100% - 2.625rem) / 3);
  border-radius: 100vh;
  aspect-ratio: 1;
}

.p-anchor__item::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  background: #cb8a42;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 100vh;
  transition: ease-in-out, 0.5s;
}

.p-anchor__item:nth-of-type(2)::before {
  background: #834400;
}

.p-anchor__item a {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
  padding-left: 0.125rem;
  border: 0.1875rem solid #cb8a42;
  border-radius: 100vh;
  color: #cb8a42;
  font-size: 3.3125rem;
  font-weight: 700;
  line-height: 1;
  isolation: isolate;
}

.p-anchor__item:first-child a {
  background: #ffffff;
}

.p-anchor__item:nth-of-type(2) a {
  background: #fdf7df;
  border: 0.1875rem solid #834400;
  color: #834400;
}

.p-anchor__item:last-child a {
  background: #271e1d;
}

.p-anchor__item a::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #cb8a42;
  width: 1.9375rem;
  height: 0.6875rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.p-anchor__item:nth-of-type(2) a::before {
  background: #834400;
}

.p-anchor__item:nth-of-type(2) a::after {
  background: #834400;
}

@media screen and (min-width: 769px) {
  .p-anchor__item a:hover {
    transform: translateY(0.4375rem);
  }
}

.p-anchor__text {
  margin-top: 1.125rem;
  color: #cb8a42;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.06em;
  text-align: center;
}

.p-banner {
  background: url(../images/cta_habit_bg.webp) center/cover no-repeat;
  overflow-x: clip;
  box-shadow: 0 0 0.625rem rgba(203, 138, 66, 0.3);
}

.p-banner__inner {
  position: relative;
  padding-top: 3.0625rem;
  padding-bottom: 3.5625rem;
}

.p-banner__card a {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 1.1875rem;
  padding-bottom: 1.0625rem;
  padding-left: 1.875rem;
  background: #ffffff;
  border: 0.1875rem solid #cb8a42;
  color: #cb8a42;
  font-family: "Yu Mincho", "游明朝体", serif;
  font-size: 1.375rem;
  font-weight: 800;
  text-align: center;
  overflow: clip;
}

.p-banner__card a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12.8125rem;
  width: 24.125rem;
  height: 6.75rem;
  rotate: -48deg;
  background: #cb8a42;
  transition: ease-in-out, 0.13s;
}

.p-banner__card a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6875rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 2.125rem;
  background: #cb8a42;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: ease-in-out, 0.13s;
}

.p-banner__card span {
  position: relative;
  letter-spacing: -0.05em;
}

.p-banner__card span::before {
  content: "";
  position: absolute;
  top: -3.3125rem;
  left: -4.1875rem;
  width: 3.1875rem;
  height: 3rem;
  background: #ffffff;
  -webkit-mask-image: url(../images/cta_habit_logo.webp);
          mask-image: url(../images/cta_habit_logo.webp);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.13s;
}

@media screen and (min-width: 769px) {
  .p-banner__card a:hover {
    background: #cb8a42;
    color: #ffffff;
  }
  .p-banner__card a:hover::before, .p-banner__card a:hover::after {
    background: #ffffff;
  }
  .p-banner__card a:hover span::before {
    background: #cb8a42;
  }
}

.p-banner__deco {
  position: absolute;
}

.p-banner__deco-01 {
  bottom: 0;
  left: 0;
}

.p-banner__deco-02 {
  top: 0.8125rem;
  right: 0.5rem;
}

.p-banner__deco img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-banner__deco-01 img {
  width: 6.9375rem;
}

.p-banner__deco-02 img {
  width: 4.5rem;
}

.p-blend__layout {
  padding-top: 1.1875rem;
}

.p-blend__inner {
  position: relative;
  padding-inline: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 2.75rem;
  background: #ffffff;
  border: 0.1875rem solid #cb8a42;
}

.p-blend__title {
  position: relative;
  z-index: 10;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.7;
  text-align: center;
}

.p-blend__subtitle {
  margin-top: 1.5rem;
  color: #cb8a42;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.p-blend__text {
  margin-top: 1rem;
  line-height: 1.7;
}

.p-blend__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9375rem 1.125rem;
  margin-top: 0.625rem;
}

.p-blend__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 1.125rem) / 2);
  aspect-ratio: 1;
  border-radius: 100vh;
  overflow: clip;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
}

.p-blend__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  border: 0.1875rem solid #cb8a42;
}

.p-blend__item-button {
  position: relative;
  width: 9.875rem;
  height: 9.875rem;
  border-radius: 100vh;
  transition: ease-in-out, 0.3s;
  overflow: clip;
}

.p-blend__item-button__text {
  content: "";
  position: absolute;
  bottom: -0.1875rem;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.3125rem;
  width: 100%;
  height: 2.8125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: ease-in-out, 0.3s;
  background: #cb8a42;
}

.p-blend__item:nth-of-type(2) .p-blend__item-button__text {
  font-size: 1rem;
  letter-spacing: -0.1em;
}

.p-blend__item:nth-of-type(3) .p-blend__item-button__text {
  font-size: 1rem;
  letter-spacing: -0.1em;
}

.p-blend__item:nth-of-type(6) .p-blend__item-button__text {
  font-size: 1rem;
  letter-spacing: -0.1em;
}

.p-blend__item-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.4375rem;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 1.875rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #f2dabf;
}

.p-blend__item-button::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #cb8a42;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}

.p-blend__item:first-child .p-blend__item-button::after {
  top: 1.0625rem;
  width: 3.9375rem;
  height: 5.875rem;
  -webkit-mask-image: url(../images/blend_almond.svg);
          mask-image: url(../images/blend_almond.svg);
}

.p-blend__item:nth-child(2) .p-blend__item-button::after {
  top: 1.4375rem;
  width: 4.75rem;
  height: 5.125rem;
  -webkit-mask-image: url(../images/blend_hazelnut.svg);
          mask-image: url(../images/blend_hazelnut.svg);
}

.p-blend__item:nth-child(3) .p-blend__item-button::after {
  top: 1.375rem;
  width: 4.375rem;
  height: 5.375rem;
  -webkit-mask-image: url(../images/blend_cashewnuts.svg);
          mask-image: url(../images/blend_cashewnuts.svg);
}

.p-blend__item:nth-child(4) .p-blend__item-button::after {
  top: 1.25rem;
  width: 3.375rem;
  height: 5.8125rem;
  -webkit-mask-image: url(../images/blend_pecan.svg);
          mask-image: url(../images/blend_pecan.svg);
}

.p-blend__item:nth-child(5) .p-blend__item-button::after {
  top: 1.125rem;
  width: 4.0625rem;
  height: 5.75rem;
  -webkit-mask-image: url(../images/blend_pistachio.svg);
          mask-image: url(../images/blend_pistachio.svg);
}

.p-blend__item:nth-child(6) .p-blend__item-button::after {
  top: 1.5625rem;
  width: 5.625rem;
  height: 5.25rem;
  -webkit-mask-image: url(../images/blend_macadamianuts.svg);
          mask-image: url(../images/blend_macadamianuts.svg);
}

.p-blend__item:nth-child(7) .p-blend__item-button::after {
  top: 1.375rem;
  width: 5.25rem;
  height: 5.5rem;
  -webkit-mask-image: url(../images/blend_walnut.svg);
          mask-image: url(../images/blend_walnut.svg);
}

@media screen and (min-width: 769px) {
  .p-blend__item:hover {
    background: #cb8a42;
  }
  .p-blend__item:hover .p-blend__item-button::after {
    background: #ffffff;
  }
  .p-blend__item:hover .p-blend__item-button__text {
    color: #cb8a42;
    background: #ffffff;
  }
}

.p-blend__item-modal {
  position: relative;
}

.p-blend__content {
  margin-top: 1.375rem;
}

.p-blend__note {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.p-blend__table {
  position: relative;
  padding-bottom: 1.4375rem;
}

.p-blend__table img {
  min-width: 68.875rem;
  aspect-ratio: 1102/392;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-blend__table .scroll-hint-icon-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.scroll-hint-text {
  display: block;
  font-size: 0.625rem;
  text-align: center;
  margin-inline: auto;
}

.scroll-hint-icon-wrap {
  display: flex !important;
}

.simplebar-track.simplebar-horizontal {
  bottom: -0.625rem;
  bottom: 0;
}

.simplebar-track {
  background: #e2e2e2;
  border-radius: 10px;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track .simplebar-scrollbar::before {
  background: #696969;
}

.p-blend__deco {
  position: absolute;
}

.p-blend__deco--01 {
  top: 6rem;
  left: 0;
}

.p-blend__deco--02 {
  top: 1.0625rem;
  right: 0;
}

.p-blend__deco--03 {
  right: 0;
  bottom: 30.625rem;
}

.p-blend__deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-blend__deco--01 img {
  max-width: 5.875rem;
  aspect-ratio: 94/122;
}

.p-blend__deco--02 img {
  max-width: 5.5625rem;
  aspect-ratio: 89/129;
}

.p-blend__deco--03 img {
  max-width: 6.5625rem;
  aspect-ratio: 105/81;
}

.p-choice {
  position: relative;
}

.p-choice::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #271e1d;
}

.p-choice__inner {
  position: relative;
  padding-top: 3.9375rem;
  padding-bottom: 4.5625rem;
}

.p-choice__header {
  position: relative;
  text-align: center;
}

.p-choice__header::before {
  content: "";
  position: absolute;
  bottom: -1.4375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background: #cb8a42;
}

.p-choice__label {
  position: relative;
  padding-left: 0.625rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  z-index: 10;
}

.p-choice__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.25rem;
  height: 2rem;
  background: #cb8a42;
  z-index: -1;
}

.p-choice__subtile {
  margin-top: 1rem;
  color: #cb8a42;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.35;
}

.p-choice__body {
  margin-top: 4.125rem;
}

.p-choice__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-choice__description {
  margin-top: 0.6875rem;
  line-height: 1.67;
  text-align: center;
}

.p-choice__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.75rem;
}

.p-choice__item {
  width: 11.1875rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1.125rem;
}

.p-choice__item:last-child .p-choice__item {
  letter-spacing: -0.05em;
}

.p-choice__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-choice__item:first-child img {
  max-width: 9.875rem;
  aspect-ratio: 158/252;
}

.p-choice__item:last-child img {
  max-width: 9.5625rem;
  aspect-ratio: 153/252;
}

.p-choice__item-text {
  line-height: 1.67;
}

.p-choice__item:last-child .p-choice__item-text {
  color: #ffffff;
  letter-spacing: -0.07em;
}

.p-choice__button-list {
  margin-top: 1rem;
}

.p-choice__button-item + .p-choice__button-item {
  margin-top: 0.75rem;
}

.p-choice__button-item:first-child .c-arrow::before {
  background: #000000;
}

.p-choice__button-item:last-child .c-arrow::before {
  right: 1.625rem;
}

.p-choice__button-item:first-child a {
  flex-direction: column;
  gap: 0.25rem;
  background: #edba81;
  color: #000000;
}

.p-choice__button-item:last-child a {
  background: #000000;
  border: 0.125rem solid #585858;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .p-choice__button-item:first-child a:hover {
    background: #000000;
    color: #edba81;
  }
  .p-choice__button-item:first-child a:hover.c-arrow::before {
    background: #edba81;
  }
}

@media screen and (min-width: 769px) {
  .p-choice__button-item:last-child a:hover {
    background: #ffffff;
    color: #000000;
  }
  .p-choice__button-item:last-child a:hover.c-arrow::before {
    background: #000000;
  }
}

.p-choice__button-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: ease-in-out, 0.2s;
}

.p-feature__layout {
  padding-top: 2.625rem;
}

.p-feature__container {
  background: #fdf7df;
  border: 0.1875rem solid #834400;
}

.p-feature__inner {
  position: relative;
  padding-inline: 1rem;
  padding-top: 1.875rem;
  padding-bottom: 3.0625rem;
  background: #fdf7df;
}

.p-feature__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6071428571;
  text-align: center;
  letter-spacing: -0.08em;
}

.p-feature__subtitle {
  margin-top: 1.3125rem;
  color: #834400;
  font-weight: 700;
  line-height: 1.6666666667;
  text-align: center;
}

.p-feature__text {
  margin-top: 0.8125rem;
  line-height: 1.7;
}

.p-feature__media {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.p-feature__media-item img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__media-item__img-wrapper {
  position: relative;
  display: inline-block;
  display: block;
  z-index: 1;
}

.p-feature__media-item__img-wrapper::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  background: #834400;
  z-index: -1;
}

.p-feature__media-item--left .p-feature__media-item__img-wrapper:first-child {
  max-width: 12rem;
}
.p-feature__media-item--left .p-feature__media-item__img-wrapper:first-child img {
  max-width: 12rem;
  aspect-ratio: 192/128;
}
.p-feature__media-item--left .p-feature__media-item__img-wrapper:last-child {
  margin-left: auto;
  margin-top: 1.1875rem;
  max-width: 8.8125rem;
}
.p-feature__media-item--left .p-feature__media-item__img-wrapper:last-child img {
  max-width: 8.8125rem;
  aspect-ratio: 141/212;
}

.p-feature__media-item--right {
  margin-top: 2.1875rem;
}

.p-feature__media-item--right img {
  max-width: 8.8125rem;
  aspect-ratio: 141/212;
}

.p-nuts-feature__intro-deco {
  position: absolute;
}

.p-nuts-feature__intro-deco--01 {
  top: 8.1875rem;
  left: 0;
}

.p-nuts-feature__intro-deco--02 {
  top: 0;
  right: 0;
}

.p-nuts-feature__intro-deco--03 {
  right: 0;
  bottom: 0.6875rem;
}

.p-nuts-feature__intro-deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-nuts-feature__intro-deco--01 img {
  max-width: 5.1875rem;
  aspect-ratio: 83/95;
}

.p-nuts-feature__intro-deco--02 img {
  max-width: 6.6875rem;
  aspect-ratio: 107/88;
}

.p-nuts-feature__intro-deco--03 img {
  max-width: 6.5rem;
  aspect-ratio: 104/121;
}

.p-feature__method {
  background: url(../images/baisen_bg.webp) center/cover no-repeat;
}

.p-feature__method-inner {
  padding-top: 2.25rem;
  padding-bottom: 2.8125rem;
  padding-inline: 0.9375rem;
}

.p-feature__method-header {
  text-align: center;
}

.p-feature__method-title span {
  display: inline-block;
  margin-top: 0.25rem;
  padding-inline: 0.1875rem;
  background: linear-gradient(to top, #ffffff, #ffffff);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4230769231;
}

.p-feature__method-list {
  margin-top: 1.875rem;
}

.p-feature__method-item + .p-feature__method-item {
  margin-top: 1.875rem;
}

.p-feature__method-item-title {
  padding-top: 0.625rem;
  padding-bottom: 0.5625rem;
  background: #000000;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-feature__method-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__cashew-inner {
  position: relative;
  padding-top: 11.625rem;
}

.p-cashew__more {
  top: 3.3125rem;
  left: 1.1875rem;
}

.p-feature__cashew-deco {
  position: absolute;
}

.p-feature__cashew-deco--01 {
  top: 3.9375rem;
  left: 6.875rem;
}

.p-feature__cashew-deco--02 {
  top: 5.875rem;
  left: 11.25rem;
}

.p-feature__cashew-deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__cashew-deco--01 img {
  max-width: 5.3125rem;
  aspect-ratio: 85/88;
}

.p-feature__cashew-deco--02 img {
  max-width: 5.8125rem;
  aspect-ratio: 93/76;
}

.p-feature__cashew-text {
  color: #834400;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.p-feature__cashew-description {
  margin-top: 0.875rem;
  line-height: 1.2222222222;
  line-height: 1.68;
}

.p-cashew__content {
  margin-top: 4.5rem;
}

.p-cashew__comparison {
  display: flex;
}

.p-cashew__comparison-item {
  position: relative;
  width: 100%;
  padding-top: 4.0625rem;
  padding-bottom: 20.75rem;
}

.p-cashew__comparison-item--light {
  background: #cb8a42;
}

.p-cashew__comparison-item--deep {
  background: #834400;
}

.p-cashew__comparison-item-feature {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1764705882;
  text-align: center;
  letter-spacing: -0.06em;
}

.p-cashew__comparison-item--light .p-cashew__comparison-item-feature {
  top: -1rem;
}

.p-cashew__comparison-item--deep .p-cashew__comparison-item-feature {
  top: -0.375rem;
}

.p-cashew__comparison-item-feature::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.875rem;
  height: 6.875rem;
  z-index: -1;
}

.p-cashew__comparison-item:first-child .p-cashew__comparison-item-feature {
  color: #cb8a42;
}
.p-cashew__comparison-item:first-child .p-cashew__comparison-item-feature::before {
  background: url(../images/icon_cashew_light.webp) center/contain no-repeat;
}

.p-cashew__comparison-item:last-child .p-cashew__comparison-item-feature {
  color: #834400;
}
.p-cashew__comparison-item:last-child .p-cashew__comparison-item-feature::before {
  background: url(../images/icon_cashew_deep.webp) center/contain no-repeat;
}

.p-cashew__comparison-item__title {
  color: #ffffff;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.22em;
  text-align: center;
}

.p-cashew__comparison-item__deco {
  position: absolute;
}

.p-cashew__comparison-item__deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cashew__comparison-item--light .p-cashew__comparison-item__deco--left {
  top: 8.8125rem;
  left: 1rem;
}
.p-cashew__comparison-item--light .p-cashew__comparison-item__deco--left img {
  max-width: 4.125rem;
  height: auto;
}

.p-cashew__comparison-item--light .p-cashew__comparison-item__deco--right {
  top: 8.5625rem;
  left: 5.25rem;
}
.p-cashew__comparison-item--light .p-cashew__comparison-item__deco--right img {
  max-width: 6.5rem;
  aspect-ratio: 104/86;
}

.p-cashew__comparison-item--deep .p-cashew__comparison-item__deco--left {
  top: 8.8125rem;
  left: 0.8125rem;
}
.p-cashew__comparison-item--deep .p-cashew__comparison-item__deco--left img {
  width: 4.8125rem;
  height: auto;
}

.p-cashew__comparison-item--deep .p-cashew__comparison-item__deco--right {
  top: 8.625rem;
  left: 5.6875rem;
}
.p-cashew__comparison-item--deep .p-cashew__comparison-item__deco--right img {
  aspect-ratio: 99/81;
}

.p-cashew__table {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 23.1875rem;
  margin-inline: auto;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.p-cashew__table-td,
.p-cashew__table-th {
  padding-block: 0.625rem;
  padding-block: 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  text-align: center;
}

.p-cashew__table-tr:first-child .p-cashew__table-td,
.p-cashew__table-tr:first-child .p-cashew__table-th {
  padding-top: 0.5rem;
  padding-bottom: 0.6875rem;
}

.p-cashew__table-tr:last-child .p-cashew__table-td,
.p-cashew__table-tr:last-child .p-cashew__table-th {
  padding-top: 0.25rem;
  padding-bottom: 0.375rem;
}

.p-cashew__table-th {
  width: 6.5rem;
  background: #463018;
  color: #ffffff;
  font-weight: 700;
}

.p-cashew__table-tr:not(:last-child) {
  border-bottom: 0.0625rem solid #937e7c;
}

.p-cashew__table-td {
  background: #ffffff;
}

.p-cashew__table-tr:not(:last-child) .p-cashew__table-td {
  border-bottom: 0.0625rem solid #cb8a42;
}

.p-cashew__step {
  margin-top: 2.375rem;
}

.p-cashew__step-header {
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
  background: #834400;
}

.p-cashew__step-badge {
  padding-left: 2.75rem;
  padding-block: 1.1875rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.p-cashew__step-img {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.1875rem;
}

.p-cashew__step-img img {
  max-width: 5.375rem;
  aspect-ratio: 86/80;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cashew__step-body {
  position: relative;
  padding-top: 1.1875rem;
  padding-bottom: 5.0625rem;
  padding-inline: 1.0625rem;
  background: linear-gradient(to top, #d08639, #efbc85);
  border-radius: 0 0 1.25rem 1.25rem;
}

.p-cashew__step-title {
  text-align: center;
}

.p-cashew__step-title img {
  width: 17.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cashew__step-list {
  margin-top: 1.6875rem;
}

.p-cashew__step-item:not(:first-child) {
  margin-top: 1.1875rem;
}

.p-cashew__step-item__number {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  z-index: 10;
}

.p-cashew__step-item__number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
  width: 7.5rem;
  height: 2.1875rem;
  background: #834500;
  z-index: -1;
}

.p-cashew__step-item__number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 2.3125rem;
  background: #834500;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-cashew__step-item__text {
  margin-top: 0.5rem;
  font-weight: 700;
  line-height: 1.64;
}

.p-cashew__step-deco {
  position: absolute;
}

.p-cashew__step-deco--01 {
  top: 7.25rem;
  right: 1.75rem;
}

.p-cashew__step-deco--02 {
  top: 17.1875rem;
  right: 1.5625rem;
}

.p-cashew__step-deco--03 {
  bottom: 0.75rem;
  left: 6.625rem;
}

.p-cashew__step-deco--04 {
  bottom: 0.75rem;
  right: 6.4375rem;
}

.p-cashew__step-deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cashew__step-deco--01 img {
  max-width: 4.0625rem;
  aspect-ratio: 65/67;
}

.p-cashew__step-deco--02 img {
  max-width: 4.4375rem;
  aspect-ratio: 71/57;
}

.p-cashew__step-deco--03 img {
  max-width: 5.375rem;
  aspect-ratio: 86/70;
}

.p-cashew__step-deco--04 img {
  max-width: 5.25rem;
  aspect-ratio: 84/70;
}

.p-cashew__pistachio {
  position: relative;
  padding-top: 5.375rem;
  padding-bottom: 2.4375rem;
  padding-inline: 1.25rem;
}

.p-cashew__pistachio-more {
  top: 3.75rem;
  left: 1.25rem;
}

.p-cashew__pistachio-deco {
  text-align: center;
}

.p-cashew__pistachio-deco img {
  max-width: 5.4375rem;
  aspect-ratio: 87/54;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cashew__pistachio-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #834400;
}

.p-cashew__pistachio-body {
  margin-top: 0.875rem;
}

.p-cashew__pistachio-text {
  line-height: 1.64;
}

.p-cashew__pistachio-img {
  margin-top: 2.5625rem;
  text-align: center;
}

.p-cashew__pistachio-img img {
  max-width: 21.875rem;
  aspect-ratio: 350/197;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer {
  box-shadow: 0 0 0.625rem rgba(203, 138, 66, 0.3);
}

.p-footer__top {
  background: #ffffff;
}

.p-footer__top-inner {
  padding-top: 3.25rem;
  padding-bottom: 2.125rem;
}

.p-footer__logo {
  text-align: center;
}

.p-footer__logo img {
  max-height: 10.1875rem;
  height: auto;
  aspect-ratio: 163/53;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5625rem;
}

.p-footer__sns-item img {
  max-width: 3.75rem;
  height: auto;
  aspect-ratio: 1;
}

@media screen and (min-width: 769px) {
  .p-footer__sns-item a:hover {
    opacity: 0.7;
    transition: ease-in-out, 0.3s;
  }
}

.p-footer__bottom {
  background: #000000;
}

.p-footer__bottom-inner {
  padding-top: 1.8125rem;
  padding-bottom: 7.8125rem;
}

.p-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1875rem;
}

.p-footer__link-item a {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .p-footer__link-item a:hover {
    opacity: 0.7;
    transition: ease-in-out, 0.3s;
  }
}

.p-footer__copyright {
  margin-top: 0.9375rem;
  text-align: center;
}

.p-footer__copyright-text {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-footer__banner {
  margin-top: 2.5rem;
}

.p-footer__banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-footer__banner-list {
  margin-top: 1.5rem;
}

.p-footer__banner-item {
  width: 100%;
  height: auto;
  aspect-ratio: 390/132;
}

.p-footer__banner-item:not(:first-child) {
  margin-top: 1rem;
}

.p-footer__banner-item a {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .p-footer__banner-item a:hover {
    opacity: 0.7;
    transition: ease-in-out, 0.3s;
  }
}

.p-footer__banner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header {
  background: #cb8a42;
}

.p-header__inner {
  padding-top: 1.3125rem;
  padding-bottom: 1.125rem;
  text-align: center;
}

.p-header__logo {
  font-size: inherit;
}

.p-header__logo img {
  max-width: 17.75rem;
  height: auto;
  aspect-ratio: 284/30;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mix {
  position: relative;
  background: url(../images/combination_bg.webp) center/cover no-repeat;
}

.p-mix::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.p-mix__inner {
  position: relative;
  padding-top: 4.1875rem;
  padding-bottom: 3.625rem;
}

.p-mix__header {
  text-align: center;
}

.p-mix__label {
  position: relative;
  color: #ffc584;
  font-weight: 700;
  line-height: 1;
}

.p-mix__label::before {
  content: "";
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15.75rem;
  height: 3.3125rem;
  background: url(../images/mix_label.webp) center/contain no-repeat;
}

.p-mix__title {
  position: relative;
  margin-top: 2rem;
  color: #ffc584;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.p-mix__title::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 48%;
  transform: translateX(-50%);
  width: 91%;
  height: 0.1875rem;
  background: #ffc584;
}

.p-mix__subtitle {
  margin-top: 2.25rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2222222222;
  line-height: 1.64;
}

.p-mix__body {
  margin-top: 0.75rem;
}

.p-mix__text {
  color: #ffffff;
  line-height: 1.67;
}

.p-mix__text + .p-mix__text {
  margin-top: 1.5625rem;
}

.p-mix__img {
  margin-top: 1.3125rem;
}

.p-mix__img img {
  max-width: 24.375rem;
  aspect-ratio: 390/219;
}

.p-mix__note {
  margin-top: 0.375rem;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.p-modal {
  display: none;
  opacity: 0;
  transition: opacity 0.13s ease;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
}

.p-modal.is-active {
  display: block;
  opacity: 1;
  cursor: default;
}

.p-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 24.1875rem;
  padding-left: 1.6875rem;
  padding-right: 1.5625rem;
  padding-bottom: 1.625rem;
  background: #ffffff;
  border-radius: 1.25rem;
  cursor: default;
  z-index: 999;
}
.p-modal__close {
  position: absolute;
  top: 1.4375rem;
  right: 1.6875rem;
  width: 1.5625rem;
  height: 1.5625rem;
  background: #000000;
  -webkit-mask-image: url(../images/icon_modal_close.svg);
          mask-image: url(../images/icon_modal_close.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  cursor: pointer;
}

.p-modal__header {
  text-align: center;
}

.p-modal__title {
  color: #834400;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-modal__text {
  margin-top: 1.3125rem;
  color: #cb8a42;
  font-weight: 700;
  line-height: 1.2222222222;
  line-height: 1.44;
}

.p-modal__body {
  margin-top: 0.875rem;
  max-height: 60vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.p-modal__wrapper {
  overflow-y: auto;
  max-height: 80vh;
  max-height: 85vh;
}

.p-modal__table {
  border: 0.0625rem solid #cb8a42;
}

.p-modal__th,
.p-modal__td {
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.p-modal__tr:first-child .p-modal__th,
.p-modal__tr:first-child .p-modal__td {
  padding-top: 0.75rem;
  padding-bottom: 0.6875rem;
}

.p-modal__tr:nth-of-type(2) .p-modal__th,
.p-modal__tr:nth-of-type(2) .p-modal__td {
  padding-top: 0.75rem;
  padding-bottom: 0.6875rem;
}

.p-modal__tr:nth-of-type(3) .p-modal__th,
.p-modal__tr:nth-of-type(3) .p-modal__td {
  padding-top: 0.9375rem;
  padding-bottom: 1.125rem;
}

.p-modal__tr:nth-of-type(4) .p-modal__th,
.p-modal__tr:nth-of-type(4) .p-modal__td {
  padding-top: 0.9375rem;
  padding-bottom: 1.125rem;
}

.p-modal__th {
  width: 6.5rem;
  background: #cb8a42;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-modal__tr:not(:first-child) .p-modal__th {
  border-top: 0.0625rem solid #ffffff;
}

.p-modal__td {
  width: 14.375rem;
  color: #271e1d;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 0.75rem;
  padding-right: 0.8125rem;
}

.p-modal__tr:not(:first-child) .p-modal__td {
  border-top: 0.0625rem solid #cb8a42;
}

.p-blend__item:first-child .p-modal__inner {
  padding-top: 1.4375rem;
}
.p-blend__item:first-child .p-modal__header img {
  width: 4.375rem;
  height: auto;
  aspect-ratio: 70/90;
}
.p-blend__item:first-child .p-modal__header .p-modal__title {
  margin-top: 1rem;
}

.p-blend__item:nth-child(2) .p-modal__inner {
  padding-top: 1.6875rem;
}
.p-blend__item:nth-child(2) .p-modal__header img {
  width: 4.625rem;
  height: auto;
  aspect-ratio: 74/86;
}
.p-blend__item:nth-child(2) .p-modal__header .p-modal__title {
  margin-top: 1rem;
}

.p-blend__item:nth-child(3) .p-modal__inner {
  padding-top: 1.3125rem;
}
.p-blend__item:nth-child(3) .p-modal__header img {
  width: 8.5625rem;
  height: auto;
  aspect-ratio: 137/111;
}

.p-blend__item:nth-child(4) .p-modal__inner {
  padding-top: 1.4375rem;
}
.p-blend__item:nth-child(4) .p-modal__header {
  margin-top: 0.875rem;
}
.p-blend__item:nth-child(4) .p-modal__header img {
  width: 3.9375rem;
  height: auto;
  aspect-ratio: 63/92;
}
.p-blend__item:nth-child(4) .p-modal__header .p-modal__title {
  margin-top: 0.875rem;
}

.p-blend__item:nth-child(5) .p-modal__inner {
  padding-top: 2.5rem;
}
.p-blend__item:nth-child(5) .p-modal__header img {
  width: 6.625rem;
  height: auto;
  aspect-ratio: 106/66;
}
.p-blend__item:nth-child(5) .p-modal__header .p-modal__title {
  margin-top: 1.4375rem;
}

.p-blend__item:nth-child(6) .p-modal__inner {
  padding-top: 1.0625rem;
}
.p-blend__item:nth-child(6) .p-modal__header img {
  width: 6.875rem;
  height: auto;
  aspect-ratio: 110/112;
}

.p-blend__item:last-child .p-modal__inner {
  padding-top: 1.0625rem;
}
.p-blend__item:last-child .p-modal__header img {
  width: 6.0625rem;
  height: auto;
  aspect-ratio: 97/102;
}
.p-blend__item:last-child .p-modal__header .p-modal__title {
  margin-top: 0.625rem;
}

.p-mv {
  background: linear-gradient(50deg, #6e6868, #271e1d);
}

.p-mv__inner {
  padding-top: 2.9375rem;
  padding-bottom: 5.25rem;
}

.p-mv__title {
  text-align: center;
}

.p-mv__title img {
  max-width: 17.6875rem;
  height: auto;
  aspect-ratio: 283/100;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1875rem;
}

.p-mv__item:nth-of-type(2) {
  margin-left: 0.5rem;
}

.p-mv__item img {
  width: 5.8125rem;
  height: auto;
  aspect-ratio: 89/186;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__item:nth-of-type(3) img {
  width: 5.625rem;
  height: auto;
  aspect-ratio: 87/188;
}

.p-mv__products-list {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
  margin-right: 0.9375rem;
  gap: 0.9375rem;
}

.p-mv__products-item img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__products-item:first-child img {
  max-width: 9.875rem;
  aspect-ratio: 158/252;
}

.p-mv__products-item:last-child img {
  max-width: 9.5625rem;
  aspect-ratio: 153/252;
}

.p-mv__content {
  position: relative;
}

.p-mv__lead {
  position: relative;
  z-index: 1;
  margin-top: 5.625rem;
  color: #ffffff;
  font-size: 1.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-mv__lead + .p-mv__lead {
  margin-top: 2.5625rem;
}

.p-mv__text {
  position: relative;
  z-index: 1;
  margin-top: 2.625rem;
  color: #ffffff;
  line-height: 1.67;
}

.p-mv__text + .p-mv__text {
  margin-top: 1.75rem;
}

.p-mv__text-small {
  font-size: 0.75rem;
}

.p-mv__img {
  margin-top: 2.125rem;
}

.p-mv__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 383/255;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__button {
  margin-top: 2rem;
}

.p-mv__button a {
  background: #cb8a42;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .p-mv__button a:hover {
    background: #ffffff;
    color: #cb8a42;
  }
}

@media screen and (min-width: 769px) {
  .p-mv__button a:hover::before {
    background: #cb8a42;
  }
}

.p-mv__deco-1 {
  content: "";
  position: absolute;
  top: 6.25rem;
  right: -1.25rem;
}

.p-mv__deco-2 {
  content: "";
  position: absolute;
  top: 19.25rem;
  left: -1.25rem;
}

.p-mv__deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__deco-1 img {
  max-width: 15.625rem;
  aspect-ratio: 250/253;
}

.p-mv__deco-2 img {
  max-width: 19.875rem;
  aspect-ratio: 318/270;
}

.p-cta {
  position: fixed;
  right: calc(50% - 13.4375rem + 1.25rem);
  bottom: 1.3125rem;
  width: 6rem;
  height: 6rem;
  padding-top: 1.125rem;
  background: #ffffff;
  border: 0.1875rem solid #834400;
  border-radius: 100vh;
  text-align: center;
  overflow: clip;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(100%);
  transition: ease-in-out, 0.3s;
}

.p-cta::before {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1.6875rem;
  background: #834400;
  transition: ease-in-out, 0.3s;
}

.p-cta.UpMove {
  animation: UpAnime 0.16s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-cta.DownMove {
  animation: DownAnime 0.16s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.p-cta__text {
  display: block;
  color: #834400;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  transition: ease-in-out, 0.3s;
}

.p-cta__arrow {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
}

.p-cta__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.4375rem;
  width: 0.625rem;
  height: 0.75rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #cb8a42;
}

.p-cta__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0.0625rem;
  width: 0.625rem;
  height: 0.75rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #cb8a42;
}

@media screen and (min-width: 769px) {
  .p-cta:hover {
    background: #834400;
  }
  .p-cta:hover::before {
    background: #ffffff;
  }
  .p-cta:hover::after {
    background: #834400;
  }
  .p-cta:hover .p-cta__text {
    color: #ffffff;
  }
}

.p-products__inner {
  padding-top: 4.4375rem;
  padding-bottom: 3.9375rem;
}

.p-products__list {
  display: flex;
  justify-content: space-between;
}

.p-products__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-products__item:first-child img {
  max-width: 11.6875rem;
  aspect-ratio: 187/299;
}

.p-products__item:last-child img {
  max-width: 11.3125rem;
  aspect-ratio: 181/299;
}

.p-products__buttons {
  margin-top: 1.5625rem;
}

.p-products__button + .p-products__button {
  margin-top: 1.125rem;
}

.p-products__button a {
  background: #cb8a42;
  border: 0.125rem solid #cb8a42;
  color: #ffffff;
}

.p-products__button:last-child a {
  background: #271e1d;
  border: 0.125rem solid #271e1d;
  letter-spacing: 0.15em;
}

.p-products__button .c-button::before {
  background: #ffffff;
}

@media screen and (min-width: 769px) {
  .p-products__button:first-child a:hover {
    background: #ffffff;
    color: #cb8a42;
  }
  .p-products__button:first-child a:hover.c-arrow::before {
    background: #cb8a42;
  }
}

@media screen and (min-width: 769px) {
  .p-products__button:last-child a:hover {
    background: #ffffff;
    color: #271e1d;
  }
  .p-products__button:last-child a:hover.c-arrow::before {
    background: #271e1d;
  }
}

.p-quality__layout {
  padding-top: 2.4375rem;
  padding-bottom: 3.625rem;
}

.p-quality__inner {
  position: relative;
  padding-top: 1.375rem;
  padding-bottom: 2.8125rem;
  border: 0.1875rem solid #cb8a42;
  background: #271e1d;
}

.p-quality__intro {
  padding-inline: 1.25rem;
}

.p-quality__intro-title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.07em;
  text-align: center;
}

.p-quality__intro-lead {
  margin-top: 1.125rem;
  color: #cb8a42;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.01em;
  text-align: center;
}

.p-quality__intro-text {
  color: #ffffff;
  margin-top: 0.1875rem;
  line-height: 1.72;
}

.p-quality__intro-text + .p-quality__intro-text {
  margin-top: 1.4375rem;
}

.p-quality__detail {
  margin-top: 2.5rem;
}

.p-quality__detail-block:last-child {
  margin-top: 3.8125rem;
}

.p-quality__detail-img {
  text-align: center;
}

.p-quality__detail-block:last-child .p-quality__detail-img {
  margin-top: 1.875rem;
}

.p-quality__detail-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-quality__detail-block:first-child .p-quality__detail-img img {
  width: 100%;
  height: auto;
}

.p-quality__detail-block:last-child .p-quality__detail-img img {
  max-width: 18.5625rem;
  aspect-ratio: 297/192;
}

.p-quality__detail-title {
  position: relative;
  padding-inline: 1.0625rem;
  color: #ffffff;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  z-index: 10;
}

.p-quality__detail-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22.9375rem;
  height: 4.875rem;
  background: linear-gradient(to right, #cb8a42, #271e1d);
  z-index: -1;
}

.p-quality__detail-text {
  margin-top: 0.5rem;
  padding-inline: 1.25rem;
  color: #ffffff;
  line-height: 1.72;
}

.p-quality__detail-block:first-child .p-quality__detail-img {
  margin-top: 0.25rem;
}

.p-quality__button {
  margin-top: 1.25rem;
  padding-inline: 1.25rem;
}

.p-quality__button a {
  background: #cb8a42;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .p-quality__button a:hover {
    background: #ffffff;
    color: #cb8a42;
  }
  .p-quality__button a:hover.c-arrow::before {
    background: #cb8a42;
  }
}

.p-quality__deco {
  position: absolute;
}

.p-quality__deco--01 {
  top: 4.5rem;
  left: 0;
}

.p-quality__deco--02 {
  top: 1.1875rem;
  right: 0;
}

.p-quality__deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-quality__deco--01 img {
  max-width: 4.375rem;
  aspect-ratio: 70/100;
}

.p-quality__deco--02 img {
  max-width: 4.125rem;
  aspect-ratio: 66/99;
}

.p-sidebar {
  display: none;
  width: 100%;
  width: calc((100% - 26.875rem) / 2);
  height: 100svh;
}
@media screen and (min-width: 431px) {
  .p-sidebar {
    display: block;
  }
}

.p-sidebar__item {
  position: relative;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  width: calc((100% - 430px) / 2);
}

.p-sidebar__item--01 {
  background: #fffdf5;
}

.p-sidebar__item.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.p-sidebar--left .p-sidebar__item.is-active {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
}

.p-sidebar--right .p-sidebar__item.is-active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
}

.p-sidebar__item img {
  position: relative;
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sidebar__item-img {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .p-sidebar__item-img {
    display: block;
    width: 29.3125rem;
  }
}

.p-sidebar--left .p-sidebar__item-img__products {
  position: absolute;
  top: 51%;
  left: -0.0625rem;
  transform: translateY(-50%);
  width: 21.625rem;
  height: auto;
  aspect-ratio: 346/591;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0.9375rem 0.9375rem 1.25rem #e8e0d6;
}
@media screen and (min-width: 769px) {
  .p-sidebar--left .p-sidebar__item-img__products {
    left: auto;
    right: 12.0790629575vw;
    width: 25.3294289898vw;
  }
}
@media (max-width: 1100px) {
  .p-sidebar--left .p-sidebar__item-img__products {
    right: 14.6412884334vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar--left .p-sidebar__item-img__products {
    right: auto;
    left: -0.25rem;
    width: 21.625rem;
  }
}
.p-sidebar--left .p-sidebar__item-img__deco--05 {
  content: "";
  position: absolute;
  top: 7.75rem;
  right: -4.6875rem;
  width: 24.9375rem;
  height: auto;
  aspect-ratio: 317/238;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .p-sidebar--left .p-sidebar__item-img__deco--05 {
    right: -2.196193265vw;
    width: 29.2093704246vw;
  }
}
@media (max-width: 1150px) {
  .p-sidebar--left .p-sidebar__item-img__deco--05 {
    top: 10.541727672vw;
    right: 2.196193265vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar--left .p-sidebar__item-img__deco--05 {
    right: -4.6875rem;
    width: 24.9375rem;
  }
}

.p-sidebar__item-deco {
  position: absolute;
  display: none;
}
@media (min-width: 900px) {
  .p-sidebar__item-deco {
    display: block;
  }
}

@media (min-width: 900px) {
  .p-sidebar__item-deco--01 {
    left: auto;
    top: -25vw;
    right: 6.6666666667vw;
  }
}
@media (min-width: 1101px) {
  .p-sidebar__item-deco--01 {
    left: auto;
    top: -25vw;
    right: 3.6330608538vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--01 {
    right: auto;
    top: -20.25rem;
    left: 20.3125rem;
  }
}
.p-sidebar__item-deco--01 img {
  width: 7.125rem;
  height: auto;
}
@media (min-width: 900px) {
  .p-sidebar__item-deco--01 img {
    width: 10vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--01 img {
    width: 7.125rem;
  }
}

@media (min-width: 900px) {
  .p-sidebar__item-deco--02 {
    right: auto;
    top: -25vw;
    left: 6.6666666667vw;
  }
}
@media (min-width: 1101px) {
  .p-sidebar__item-deco--02 {
    top: -25vw;
    left: 3.6330608538vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--02 {
    left: auto;
    top: -19.75rem;
    right: 21rem;
  }
}
.p-sidebar__item-deco--02 img {
  width: 6.3125rem;
  height: auto;
}
@media (min-width: 900px) {
  .p-sidebar__item-deco--02 img {
    width: 8.8888888889vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--02 img {
    width: 6.25rem;
  }
}

@media (min-width: 900px) {
  .p-sidebar__item-deco--03 {
    left: auto;
    top: -7.7777777778vw;
    right: 4.2222222222vw;
  }
}
@media (min-width: 1101px) {
  .p-sidebar__item-deco--03 {
    right: 1.4532243415vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--03 {
    top: -5.1875rem;
    left: 19.875rem;
  }
}
.p-sidebar__item-deco--03 img {
  width: 8rem;
  height: auto;
}
@media screen and (min-width: 769px) {
  .p-sidebar__item-deco--03 img {
    width: 12.2222222222vw;
  }
}
@media (min-width: 900px) {
  .p-sidebar__item-deco--03 img {
    width: 12.2222222222vw;
  }
}

@media (min-width: 900px) {
  .p-sidebar__item-deco--04 {
    right: auto;
    top: -7.7777777778vw;
    left: 5.3333333333vw;
  }
}
@media (min-width: 1101px) {
  .p-sidebar__item-deco--04 {
    left: 2.9972752044vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--04 {
    left: auto;
    top: -4.125rem;
    right: 21rem;
  }
}
.p-sidebar__item-deco--04 img {
  width: 6.9375rem;
  height: auto;
}
@media (min-width: 900px) {
  .p-sidebar__item-deco--04 img {
    width: 10vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item-deco--04 img {
    width: 6.875rem;
  }
}

.p-sidebar__item-deco img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sidebar--right .p-sidebar__item-img__products {
  position: absolute;
  top: 52%;
  right: -0.25rem;
  transform: translateY(-48.7%);
  width: 21.625rem;
  height: auto;
  aspect-ratio: 346/591;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0.9375rem 0.9375rem 1.25rem #e8e0d6;
}
@media screen and (min-width: 769px) {
  .p-sidebar--right .p-sidebar__item-img__products {
    right: auto;
    left: 12.0790629575vw;
    width: 25.3294289898vw;
  }
}
@media (max-width: 1100px) {
  .p-sidebar--right .p-sidebar__item-img__products {
    left: 14.6412884334vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar--right .p-sidebar__item-img__products {
    left: auto;
    right: -0.25rem;
    width: 21.625rem;
  }
}
.p-sidebar--right .p-sidebar__item-img__deco--06 {
  content: "";
  position: absolute;
  top: 8.125rem;
  left: -2.5rem;
  width: 24rem;
  height: auto;
  aspect-ratio: 317/238;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .p-sidebar--right .p-sidebar__item-img__deco--06 {
    left: -2.196193265vw;
    width: 29.2093704246vw;
  }
}
@media (max-width: 1150px) {
  .p-sidebar--right .p-sidebar__item-img__deco--06 {
    top: 10.541727672vw;
    left: 2.196193265vw;
  }
}
@media (min-width: 1366px) {
  .p-sidebar--right .p-sidebar__item-img__deco--06 {
    left: -4.6875rem;
    left: -2.5rem;
    width: 24.9375rem;
  }
}

.p-sidebar__item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.p-sidebar__item-text {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-sidebar__item-text {
    display: flex;
    justify-content: center;
  }
}

.p-sidebar__item--02 .p-sidebar__item-text {
  width: 100%;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.p-sidebar__item--02 .p-sidebar__item-text img {
  display: none;
  width: 24rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .p-sidebar__item--02 .p-sidebar__item-text img {
    display: block;
    width: 90%;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item--02 .p-sidebar__item-text img {
    width: 24rem;
  }
}

.p-sidebar__item--03 .p-sidebar__item-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.p-sidebar__item--03 .p-sidebar__item-text img {
  display: none;
  width: 24rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .p-sidebar__item--03 .p-sidebar__item-text img {
    display: block;
    width: 90%;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item--03 .p-sidebar__item-text img {
    width: 24rem;
  }
}

.p-sidebar__item--04 .p-sidebar__item-text {
  width: 100%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.p-sidebar__item--04 .p-sidebar__item-text img {
  display: none;
  width: 24rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .p-sidebar__item--04 .p-sidebar__item-text img {
    display: block;
    width: 90%;
  }
}
@media (min-width: 1366px) {
  .p-sidebar__item--04 .p-sidebar__item-text img {
    width: 24rem;
  }
}

.p-story {
  margin-top: 0.375rem;
  background: url(../images/story_bg.webp) center/cover no-repeat, #ffffff;
}

.p-story__inner {
  padding-top: 3.375rem;
  padding-bottom: 3.3125rem;
}

.p-story__header {
  text-align: center;
}

.p-story__title {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-story__header img {
  margin-top: 1.1875rem;
  max-width: 11.25rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-story__name {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-story__body {
  margin-top: 2.25rem;
}

.p-story__item + .p-story__item {
  margin-top: 2.1875rem;
}

.p-story__item-title {
  position: relative;
  padding-left: 1.25rem;
  color: #cb8a42;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.p-story__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 108%;
  background: #cb8a42;
}

.p-story__item-text {
  margin-top: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 300;
}

.p-story__item:nth-of-type(3) .p-story__item-text {
  letter-spacing: 0.001em;
}

.p-story__item:last-child .p-story__item-text {
  letter-spacing: normal;
}

.p-voice {
  background: linear-gradient(to top, #664521, #cb8a42);
}

.p-voice__inner {
  padding-top: 4rem;
  padding-bottom: 4.9375rem;
}

.p-voice__title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-voice__body {
  margin-top: 1.5rem;
}

.p-voice__item {
  position: relative;
  padding-top: 1.4375rem;
  padding-bottom: 2.75rem;
  background: #ffffff;
}

.p-voice__item + .p-voice__item {
  margin-top: 1.5rem;
}

.p-voice__item-header {
  text-align: center;
}

.p-voice__item-img img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice__item:first-child .p-voice__item-img img {
  max-width: 4.8125rem;
  aspect-ratio: 77/118;
}

.p-voice__item:nth-child(2) .p-voice__item-img img {
  max-width: 4.8125rem;
  aspect-ratio: 77/117;
}

.p-voice__item:last-child .p-voice__item-img img {
  max-width: 5.3125rem;
  aspect-ratio: 85/133;
}

.p-voice__item-profile {
  display: inline-block;
  margin-top: 0.5625rem;
  color: #cb8a42;
  font-weight: 700;
  line-height: 1.67;
}

.p-voice__item-body {
  margin-top: 1.6875rem;
}

.p-voice__item-catch {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.01em;
  text-align: center;
}

.p-voice__item-text {
  margin-top: 0.625rem;
  line-height: 1.67;
}

.p-voice__item-demo {
  position: absolute;
  z-index: 10;
}

.p-voice__item-deco-01 {
  top: 5.3125rem;
  left: -1rem;
}

.p-voice__item-deco-02 {
  top: -1.5625rem;
  right: -0.0625rem;
}

.p-voice__item-deco-03 {
  top: 4.75rem;
  left: -0.625rem;
}

.p-voice__item-deco-04 {
  bottom: -3.75rem;
  right: -0.625rem;
}

.p-voice__item-deco-05 {
  top: 2.5625rem;
  left: -0.875rem;
}

.p-voice__item-deco-06 {
  bottom: -2.75rem;
  left: -0.8125rem;
}

.p-voice__item-deco-07 {
  bottom: -2.1875rem;
  right: -1.25rem;
}

.p-voice__item-deco-08 {
  top: 14.75rem;
  right: -1.25rem;
}

.p-voice__item-demo img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice__item-deco-01 img {
  width: 3.625rem;
  aspect-ratio: 58/60;
}

.p-voice__item-deco-02 img {
  width: 2.9375rem;
}

.p-voice__item-deco-03 img {
  width: 4rem;
}

.p-voice__item-deco-04 img {
  width: 3.9375rem;
}

.p-voice__item-deco-05 img {
  width: 3.9375rem;
}

.p-voice__item-deco-06 img {
  width: 2.6875rem;
}

.p-voice__item-deco-07 img {
  width: 3.9375rem;
}

.p-voice__item-deco-08 img {
  width: 4.0625rem;
}

.p-zentos {
  background: #003d6b;
}

.p-zentos__inner {
  padding-top: 2.25rem;
  padding-bottom: 2.625rem;
  text-align: center;
}

.p-zentos img {
  width: 99%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-zentos__button {
  margin-top: 1.3125rem;
}

.p-zentos__button a {
  flex-direction: column;
  gap: 0.25rem;
  background: #ffffff;
  color: #003d6b;
  font-size: 1.625rem;
  border: 0.125rem solid #ffffff;
}

.p-zentos__button span {
  color: #003d6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: ease-in-out, 0.2s;
}

.p-zentos__button .c-arrow::before {
  background: #003d6b;
}

@media screen and (min-width: 769px) {
  .p-zentos__button a:hover {
    background: #003d6b;
    color: #ffffff;
  }
  .p-zentos__button a:hover span {
    color: #ffffff;
  }
  .p-zentos__button a:hover.c-arrow::before {
    background: #ffffff;
  }
}

.u-fw-bold {
  font-weight: 700;
}

.u-marker {
  background: linear-gradient(to top, #fff580, #fff580);
}

.u-md-block {
  display: none;
}
@media screen and (min-width: 769px) {
  .u-md-block {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .u-shadow {
    position: relative;
    z-index: 20;
  }
}

@media screen and (min-width: 769px) {
  .u-shadow::before,
  .u-shadow::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0.75rem;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
}

.u-shadow::before {
  left: -0.8125rem;
  background: linear-gradient(to left, rgba(203, 138, 66, 0.1), transparent);
}

.u-shadow::after {
  right: -0.8125rem;
  background: linear-gradient(to right, rgba(203, 138, 66, 0.1), transparent);
}

.u-text-accent {
  color: #cb8a42;
}

.u-text-brown {
  color: #834400;
}

.u-text-narrow-100 {
  letter-spacing: -0.1em;
}

.u-text-narrow-200 {
  letter-spacing: -0.2em;
}

.u-text-narrow-250 {
  letter-spacing: -0.25em;
}

.u-text-narrow-50 {
  letter-spacing: -0.05em;
}

.u-text-white {
  color: #ffffff;
}
/*# sourceMappingURL=style.css.map */
