@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

:root {
  --brand: #9e7b37;
  --brown: #614d3c;
  --beige: #e9e4d9;
  --white: #ffffff;
  --black: #221815;
  --border: #eeeeee;
}

body {
  font-family: "ten-mincho-text", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
}

* {
  transition: 0.3s;
}

.preload,
.preload * {
  transition: none !important;
}

@media screen and (min-width: 769px) {
  .u-showonlySP {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-showonlyPC {
    display: none !important;
  }
}
.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
}
@media (min-width: 1001px) {
  .l-header {
    position: sticky;
    top: 0;
    padding: 12px 40px;
  }
}
.l-header .l-header__logo > img {
  width: 48px;
  height: auto;
}
@media (max-width: 768px) {
  .l-header .l-header__logo > img {
    width: 34px;
  }
}
.l-header .l-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1000px) {
  .l-header .l-header__nav {
    display: none;
  }
}
.l-header .l-header__main-nav {
  display: flex;
  gap: 20px;
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.l-header .l-header__btn-nav {
  display: flex;
  gap: 8px;
}
@media (max-width: 1000px) {
  .l-header .l-header__btn-nav {
    flex-direction: column;
  }
}
.l-header .l-header__btn {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 30px;
  --font-size: 14px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
@media (max-width: 1000px) {
  .l-header .l-header__btn {
    --font-size: 16px;
    --line-height: 1;
    font-size: var(--font-size);
    font-weight: 700;
    line-height: var(--line-height);
    letter-spacing: 0.05em;
    padding: 20px;
  }
}
.l-header .l-header__btn.l-header__btn--primary {
  background: var(--beige);
}
@media (max-width: 1000px) {
  .l-header .l-header__btn.l-header__btn--primary {
    background: var(--brown);
    color: var(--white);
  }
}
.l-header .l-header__btn.l-header__btn--secondary {
  background: #f1f1f1;
}
@media (max-width: 1000px) {
  .l-header .l-header__btn.l-header__btn--secondary {
    background: var(--white);
    border: 2px solid var(--brown);
  }
}
.l-header .l-header__hamburger {
  position: fixed;
  top: 28px;
  right: 20px;
  z-index: 1000;
  width: 30px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1001px) {
  .l-header .l-header__hamburger {
    display: none;
  }
}
.l-header .l-header__hamburger > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.l-header .l-header__hamburger > span:nth-child(1) {
  top: 0;
}
.l-header .l-header__hamburger > span:nth-child(2) {
  top: 9px;
}
.l-header .l-header__hamburger > span:nth-child(3) {
  top: 18px;
}
.l-header .l-header__hamburger.active > span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.l-header .l-header__hamburger.active > span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.l-header .l-header__hamburger.active > span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}
@media (min-width: 1001px) {
  .menu-nav {
    display: none;
  }
}
.menu-nav .menu-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--beige);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-nav .menu-nav__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
  max-width: 600px;
  margin: 0 auto;
}
.menu-nav .menu-nav__list {
  display: grid;
  list-style-type: circle;
  padding-left: 20px;
  color: var(--brown);
}
.menu-nav .menu-nav__list .menu-nav__item > a {
  padding: 8px 0;
  display: flex;
  --font-size: 20px;
  --line-height: 30px;
}
@media screen and (max-width: 768px) {
  .menu-nav .menu-nav__list .menu-nav__item > a {
    --font-size: 18px;
  }
}
.menu-nav .menu-nav__list .menu-nav__item > a {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
}
.menu-nav .menu-nav__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 8px;
}
.menu-nav .menu-nav__card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.menu-nav .menu-nav__card > a > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.menu-nav .menu-nav__card > a > span {
  display: flex;
  justify-content: center;
  background: var(--white);
  padding: 16px 8px;
}
.menu-nav .menu-nav__about {
  grid-column: 1/3;
}
.menu-nav .menu-nav__about > a {
  background: var(--white);
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 4px;
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.menu-nav .menu-nav__about > a > img {
  width: 40px;
}
.menu-nav .menu-nav__fade * {
  opacity: 0;
  position: relative;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-nav.active {
  visibility: visible;
}
.menu-nav.active .menu-nav__bg {
  opacity: 1;
}
.menu-nav.active .menu-nav__fade * {
  opacity: 1;
  transform: translateY(0);
}
.menu-nav.active .menu-nav__fade *:nth-child(1) {
  transition-delay: 0.2s;
}
.menu-nav.active .menu-nav__fade *:nth-child(2) {
  transition-delay: 0.3s;
}
.menu-nav.active .menu-nav__fade *:nth-child(3) {
  transition-delay: 0.4s;
}

@media (min-width: 1001px) {
  body.home .l-header:not(.is-scrolled) {
    background: transparent;
    color: var(--white);
  }
  body.home .l-header:not(.is-scrolled) .l-header__logo {
    opacity: 0;
  }
  body.home .l-header:not(.is-scrolled) a {
    color: var(--white);
  }
  body.home .l-header:not(.is-scrolled) .l-header__btn--primary,
  body.home .l-header:not(.is-scrolled) .l-header__btn--secondary {
    background: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 1001px) {
  body.home .l-header:not(.is-scrolled) {
    padding: 0;
  }
  body.home .l-header:not(.is-scrolled) .l-header__logo {
    display: none;
  }
}
body.home .l-header:not(.is-scrolled) .l-header__hamburger > span {
  background-color: var(--white);
}
body.home .l-header:not(.is-scrolled) .l-header__hamburger.active > span {
  background-color: var(--black);
}

.l-footer {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-footer {
    --font-size: 15px;
  }
}
.l-footer {
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  height: 1200px;
  background: no-repeat;
  background-image: url("../src/img/bg-footer.jpg");
  background-size: cover;
  color: var(--brand);
}
.l-footer .l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 32px 16px;
  text-align: center;
}
.l-footer .l-footer__list {
  display: flex;
  gap: 40px;
}
.l-footer .l-footer__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-footer .l-footer__name {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.l-footer .l-footer__copyright {
  text-align: center;
  padding: 12px 16px;
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__copyright {
    --font-size: 12px;
  }
}
.l-footer .l-footer__copyright {
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.l-main {
  padding: 60px 0;
}

.l-section + .l-section {
  margin-top: 64px;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.l-container.l-container--slim {
  max-width: 800px;
}

.l-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}

.l-product {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 12px;
}
@media screen and (max-width: 1180px) {
  .l-product {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .l-product {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-recipe {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .l-recipe {
    grid-template-columns: 1fr;
  }
}

.c-btn {
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
  border: 2px solid var(--brown);
  border-radius: 4px;
  color: var(--brown);
  background: none;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}

.c-product-card:hover {
  opacity: 0.7;
}
.c-product-card .c-product-card__img {
  aspect-ratio: 1/1;
}
.c-product-card .c-product-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-product-card .c-product-card__no {
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-product-card .c-product-card__no {
    --font-size: 12px;
  }
}
.c-product-card .c-product-card__no {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  color: var(--brand);
  margin-top: 12px;
}
.c-product-card .c-product-card__name {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.c-recipe-card {
  border: 1px solid var(--border);
  border-radius: 8px;
}
.c-recipe-card:hover {
  opacity: 0.7;
}
.c-recipe-card .c-recipe-card__link {
  display: flex;
  gap: 16px;
  padding: 20px;
}
.c-recipe-card .c-recipe-card__img {
  width: 40%;
  flex-shrink: 0;
}
.c-recipe-card .c-recipe-card__img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.c-recipe-card .c-recipe-card__name {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.c-recipe-card .c-recipe-card__list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.c-recipe-card .c-recipe-card__list-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.c-recipe-card .c-recipe-card__list-item::before {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.c-recipe-card .c-recipe-card__list-item:nth-child(1)::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215%22%20height%3D%2220%22%20viewBox%3D%220%200%2015%2020%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M10.2246%203.46085C8.87328%202.37929%208.34473%201.18546%208.14148%200.337062C7.97852%20-0.344695%208.0652%20-0.417938%208.0652%20-0.417938C8.05664%20-0.499109%208.0066%20-0.569305%207.93215%20-0.603484C7.85891%20-0.637664%207.77223%20-0.630945%207.7057%20-0.584578C7.7057%20-0.584578%207.44387%20-0.52782%207.0166%20-0.113367C6.04492%200.830227%204.94508%202.40495%205.67016%204.55765C6.44715%206.86722%206.03637%207.35062%205.62926%207.3189C5.10129%207.27863%205.01953%206.95331%205.10434%205.94132C5.20262%204.75847%204.12961%203.74831%204.12961%203.74831C4.12961%203.74831%202.46273%206.39847%201.1627%208.29421C0.394258%209.41484%200.0256249%2010.8388%200.0256249%2012.1382H0C0%2016.1348%203.23977%2019.3751%207.23633%2019.3751C11.2329%2019.3751%2014.4727%2016.1348%2014.4727%2012.1382C14.7473%208.66777%2012.8625%205.57081%2010.2246%203.46085ZM7.24914%2017.3372C5.04516%2017.3372%203.25742%2015.5501%203.25742%2013.3455C3.25742%2012.5947%203.46555%2011.8928%203.82566%2011.2928C4.13574%2012.4476%205.18918%2013.2978%206.44164%2013.2978C7.93699%2013.2978%209.15039%2012.0851%209.15039%2010.5891C9.15039%2010.3041%209.10523%2010.0282%209.02344%209.76999C10.3381%2010.4231%2011.2409%2011.7787%2011.2409%2013.3454C11.2408%2015.5501%209.45371%2017.3372%207.24914%2017.3372Z%22%20fill%3D%22%23C55C5C%22%2F%3E%3C%2Fsvg%3E");
}
.c-recipe-card .c-recipe-card__list-item:nth-child(2)::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_406_100)%22%3E%20%3Cpath%20d%3D%22M10%200C4.48594%200%200%204.48609%200%2010C0%2015.5142%204.48594%2020%2010%2020C15.5141%2020%2020%2015.5142%2020%2010C20%204.48609%2015.5141%200%2010%200ZM10%2017.619C5.79895%2017.619%202.38098%2014.2014%202.38098%2010C2.38098%205.79895%205.79895%202.38098%2010%202.38098C14.2011%202.38098%2017.619%205.79895%2017.619%2010C17.619%2014.2014%2014.2011%2017.619%2010%2017.619Z%22%20fill%3D%22%23A88A5D%22%2F%3E%20%3Cpath%20d%3D%22M10.0951%204.52173C9.59468%204.52173%209.18902%204.92731%209.18902%205.42778V9.52966L6.29656%2012.4221C5.94261%2012.7758%205.94261%2013.3495%206.29656%2013.7035C6.65038%2014.0572%207.22406%2014.0572%207.57796%2013.7035L11.0012%2010.2804V9.352V5.42778C11.0012%204.92731%2010.5955%204.52173%2010.0951%204.52173Z%22%20fill%3D%22%23A88A5D%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_406_100%22%3E%20%3Crect%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.c-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.c-headline.c-headline--primary {
  --font-size: 24px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-headline.c-headline--primary {
    --font-size: 22px;
  }
}
.c-headline.c-headline--primary {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  background: var(--beige);
  color: var(--brown);
  padding: 8px 20px;
  margin: 0 0 24px;
}
.c-headline.c-headline--secondary {
  --font-size: 21px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-headline.c-headline--secondary {
    --font-size: 18px;
  }
}
.c-headline.c-headline--secondary {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  border-left: 4px solid var(--brand);
  padding-left: 20px;
  margin: 24px 0 16px;
}

.c-list {
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .c-list {
    padding-left: 16px;
  }
}
.c-list li {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-list li {
    --font-size: 15px;
  }
}
.c-list li {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  list-style-type: circle;
}
.c-list li:not(:first-child) {
  margin-top: 4px;
}

.c-breadcrumb .c-breadcrumb__list {
  display: flex;
  align-items: center;
  font-size: 12px;
  background: var(--beige);
  padding: 12px 40px;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .c-breadcrumb__list {
    padding: 12px 16px;
  }
}
.c-breadcrumb .c-breadcrumb__item {
  display: inline;
}
.c-breadcrumb .c-breadcrumb__item:not(:last-child) {
  color: var(--brown);
}
.c-breadcrumb .c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--brown);
  border-right: 1.5px solid var(--brown);
  vertical-align: 1px;
  margin-left: 4px;
  margin-right: 8px;
}

.c-filter {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  cursor: pointer;
  --font-size: 14px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.c-filter:has(:checked) {
  background-color: var(--brand);
  color: var(--white);
}
.c-filter input {
  display: none;
}

.c-select {
  position: relative;
  width: fit-content;
}
.c-select select {
  appearance: none;
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 4px;
  background: var(--white);
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-select select {
    --font-size: 14px;
  }
}
.c-select select {
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.c-select::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid var(--brand);
  position: absolute;
  right: 9px;
  top: 21px;
  width: 0;
}

.c-ec-card {
  border: 1px solid var(--border);
  border-radius: 8px;
}
.c-ec-card .c-ec-card__img {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  padding: 12px 20px;
}
.c-ec-card .c-ec-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.c-ec-card .c-ec-card__body {
  position: relative;
  background: var(--border);
  padding: 8px 32px 8px 16px;
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-ec-card .c-ec-card__body {
    --font-size: 15px;
  }
}
.c-ec-card .c-ec-card__body {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-align: center;
}
.c-ec-card .c-ec-card__body::after {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M4.14999%201.55005H0.75V11.3501H10.45V7.55005%22%20stroke%3D%22%23999999%22%20stroke-width%3D%221.5%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20d%3D%22M5.65039%206.45L11.3504%200.75%22%20stroke%3D%22%23999999%22%20stroke-width%3D%221.5%22%20stroke-miterlimit%3D%2210%22%2F%3E%20%3Cpath%20d%3D%22M11.3498%205.05V0.75H7.0498%22%20stroke%3D%22%23999999%22%20stroke-width%3D%221.5%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  right: 12px;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal .c-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.c-modal .c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90%, 900px);
  transform: translate(-50%, -50%);
}
.c-modal .c-modal__movie {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-modal .c-modal__movie > iframe {
  width: 100%;
  height: 100%;
}
.c-modal .c-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.c-page-title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-page-title {
    --font-size: 24px;
  }
}
.c-page-title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 48px;
}

.p-editor-content h2 {
  --font-size: 24px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-editor-content h2 {
    --font-size: 22px;
  }
}
.p-editor-content h2 {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  background: var(--beige);
  color: var(--brown);
  padding: 8px 20px;
  margin: 40px 0 24px;
}
.p-editor-content h3 {
  --font-size: 21px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-editor-content h3 {
    --font-size: 18px;
  }
}
.p-editor-content h3 {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  border-left: 4px solid var(--brand);
  padding-left: 20px;
  margin: 32px 0 16px;
}
.p-editor-content h4 {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  margin: 24px 0 12px;
}
.p-editor-content strong {
  font-weight: 700;
}
.p-editor-content p {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-editor-content p {
    --font-size: 15px;
  }
}
.p-editor-content p {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.p-editor-content p + p {
  margin-top: 8px;
}
.p-editor-content ul {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-editor-content ul {
    --font-size: 15px;
  }
}
.p-editor-content ul {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  padding-left: 32px;
  margin: 16px 0;
}
.p-editor-content ul li {
  list-style-type: circle;
}
.p-editor-content ul li:not(:first-child) {
  margin-top: 4px;
}
.p-editor-content ol {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-editor-content ol {
    --font-size: 15px;
  }
}
.p-editor-content ol {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  padding-left: 32px;
  margin: 16px 0;
}
.p-editor-content ol li {
  list-style-type: number;
}
.p-editor-content ol li:not(:first-child) {
  margin-top: 4px;
}
.p-editor-content a {
  color: var(--brand);
  text-decoration: underline;
}
.p-editor-content img {
  margin: 16px 0;
}
.p-editor-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.p-editor-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.p-editor-content table thead,
.p-editor-content table tfoot {
  border: none;
}
.p-editor-content table th,
.p-editor-content table td {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}
.p-editor-content table th {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: center;
  background: var(--beige);
  color: var(--brown);
}
.p-editor-content table td {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-editor-content table td {
    --font-size: 14px;
  }
}
.p-editor-content table td {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.p-editor-content table tfoot td {
  background: var(--border);
  border: 1px solid var(--white);
  text-align: center;
}
.p-editor-content .wp-block-buttons.is-vertical .wp-block-button__link {
  min-width: 400px;
}
.p-editor-content .wp-block-buttons .wp-block-button__link {
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid var(--brown);
  background: var(--white);
  border-radius: 4px;
  color: var(--brown);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-width: 300px;
}
.p-editor-content .wp-block-file {
  display: flex;
  align-items: center;
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-editor-content .wp-block-file {
    --font-size: 14px;
  }
}
.p-editor-content .wp-block-file {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.p-editor-content .wp-block-file .wp-block-file__button {
  --font-size: 14px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
  text-decoration: none;
  background: var(--brand);
  border-radius: 4px;
  color: var(--white);
  padding: 8px;
}

.p-standard {
  background: var(--beige);
  border-radius: 8px;
  padding: 20px 28px;
}
.p-standard .p-standard__title {
  --font-size: 20px;
  --line-height: 30px;
}
@media screen and (max-width: 768px) {
  .p-standard .p-standard__title {
    --font-size: 18px;
  }
}
.p-standard .p-standard__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 8px;
}

.p-filter {
  display: grid;
  gap: 8px;
  margin: 40px 0 24px;
}
.p-filter .p-filter__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-filter fieldset {
  display: contents;
}
.p-filter .p-filter__label {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-filter .p-filter__label {
    --font-size: 14px;
  }
}
.p-filter .p-filter__label {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  flex-shrink: 0;
}
.p-filter .p-filter__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.p-page-title {
  height: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-page-title {
    padding: 40px 20px;
  }
}
.p-page-title .p-page-title__main {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-page-title .p-page-title__main {
    --font-size: 24px;
  }
}
.p-page-title .p-page-title__main {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 8px 20px;
  background: var(--brown);
  width: fit-content;
}
.p-page-title .p-page-title__sub {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-page-title .p-page-title__sub {
    --font-size: 14px;
  }
}
.p-page-title .p-page-title__sub {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  padding: 8px 20px;
  background: var(--white);
  width: fit-content;
}

.p-cf7 .p-cf7__form {
  display: grid;
  grid-template-columns: 240px 1fr;
}
@media screen and (max-width: 768px) {
  .p-cf7 .p-cf7__form {
    grid-template-columns: 1fr;
    border: 1px solid var(--beige);
  }
}
.p-cf7 .p-cf7__required {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  padding: 4px 8px;
  --font-size: 12px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.p-cf7 .p-cf7__required.p-cf7__required--unrequired {
  background: var(--beige);
  color: var(--brown);
  border: 1px solid var(--brown);
}
.p-cf7 dt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--beige);
  color: var(--brown);
  --font-size: 16px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .p-cf7 dt {
    border-top: 1px solid var(--white);
  }
}
@media screen and (min-width: 769px) {
  .p-cf7 dt:first-child {
    border-top: 1px solid var(--beige);
  }
}
.p-cf7 dd {
  padding: 12px;
}
@media screen and (min-width: 769px) {
  .p-cf7 dd {
    border-top: 1px solid var(--beige);
    border-right: 1px solid var(--beige);
  }
}
@media screen and (min-width: 769px) {
  .p-cf7 dd:last-child {
    border-bottom: 1px solid var(--beige);
  }
}
.p-cf7 .wpcf7-not-valid-tip {
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-cf7 .wpcf7-not-valid-tip {
    --font-size: 12px;
  }
}
.p-cf7 .wpcf7-not-valid-tip {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  margin-top: 4px;
}
.p-cf7 .wpcf7-list-item {
  margin-left: 0;
}
.p-cf7 .wpcf7-spinner {
  display: none;
}
.p-cf7 .form-radio {
  display: flex;
  flex-direction: column;
}
.p-cf7 .form-input {
  border: 1px solid var(--border);
  padding: 8px 12px;
  width: 100%;
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-cf7 .form-input {
    --font-size: 14px;
  }
}
.p-cf7 .form-input {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.p-cf7 .form-name {
  display: flex;
  gap: 8px;
}

@keyframes kv-slide {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.kv {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .kv {
    flex-direction: column;
  }
}
@media screen and (max-width: 666px) {
  .kv {
    max-height: 100dvh;
  }
}
@media screen and (min-width: 1001px) {
  .kv {
    margin-top: -98px;
  }
}
.kv .kv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: kv-slide 25s linear infinite;
}
.kv .kv__slide--1 {
  background-image: url("../src/img/home/kv-01.jpg");
  animation-delay: -1s;
}
.kv .kv__slide--2 {
  background-image: url("../src/img/home/kv-02.jpg");
  animation-delay: 4s;
}
.kv .kv__slide--3 {
  background-image: url("../src/img/home/kv-03.jpg");
  animation-delay: 9s;
}
.kv .kv__slide--4 {
  background-image: url("../src/img/home/kv-04.jpg");
  animation-delay: 14s;
}
.kv .kv__slide--5 {
  background-image: url("../src/img/home/kv-05.jpg");
  animation-delay: 19s;
}
.kv .kv__slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
}
.kv .kv__logo {
  background: var(--white);
  padding: 40px 48px;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .kv .kv__logo {
    padding: 28px 28px;
    left: 20px;
  }
}
.kv .kv__logo > img {
  height: 120px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .kv .kv__logo > img {
    height: 80px;
  }
}
.kv .kv__inner {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .kv .kv__inner {
    margin: 220px auto 0px;
  }
}
.kv .kv__title {
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-size: 78px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .kv .kv__title {
    font-size: 58px;
    letter-spacing: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 390px) {
  .kv .kv__title {
    font-size: 48px;
  }
}
.kv .kv__title > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.kv .kv__title > span > img {
  height: 100px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .kv .kv__title > span > img {
    height: 70px;
  }
}
.kv .kv__subtitle {
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .kv .kv__subtitle {
    font-size: 30px;
  }
}
.kv .kv__news {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  margin-top: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .kv .kv__news {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: auto;
    padding: 20px 32px;
  }
}
.kv .kv__news-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kv .kv__news-item {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .kv .kv__news-item {
    --font-size: 14px;
  }
}
.kv .kv__news-item {
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}
.kv .kv__news-link {
  --font-size: 14px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 16px;
}
.kv .kv__news-link::after {
  content: "→";
  margin-left: 4px;
}

.about {
  position: relative;
  padding: 40px 0 64px;
  overflow: hidden;
}
.about .about__message {
  text-align: center;
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about .about__message {
    --font-size: 15px;
  }
}
.about .about__message {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  line-height: 2.4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.about .about__img-left,
.about .about__img-right {
  position: absolute;
  top: 0;
  width: 320px;
}
@media screen and (max-width: 1100px) {
  .about .about__img-left,
  .about .about__img-right {
    display: none;
  }
}
.about .about__img-left {
  left: 5%;
}
@media screen and (max-width: 1500px) {
  .about .about__img-left {
    left: 1%;
  }
}
@media screen and (max-width: 1300px) {
  .about .about__img-left {
    left: -12%;
  }
}
.about .about__img-right {
  right: 5%;
}
@media screen and (max-width: 1500px) {
  .about .about__img-right {
    right: 1%;
  }
}
@media screen and (max-width: 1300px) {
  .about .about__img-right {
    right: -12%;
  }
}

.recipe-link {
  width: 100%;
}

.front-gallery img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.single-product .single-product__title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__title {
    --font-size: 24px;
  }
}
.single-product .single-product__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: left;
  width: fit-content;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__title {
    margin: 0 auto 24px;
  }
}
.single-product .single-product__head {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1180px) {
  .single-product .single-product__head {
    grid-template-columns: 50% 1fr;
  }
}
@media screen and (max-width: 768px) {
  .single-product .single-product__head {
    grid-template-columns: 1fr;
  }
}
.single-product .single-product__head > div {
  min-width: 0;
}
@media screen and (min-width: 769px) {
  .single-product .single-product__img {
    grid-row: 1/3;
  }
}
.single-product .single-product__img-inner {
  aspect-ratio: 3/2;
  border: 1px solid var(--border);
}
.single-product .single-product__img-inner > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.single-product .single-product__detail-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .single-product .single-product__detail-info {
    grid-column: 2;
    grid-row: 2;
  }
}
.single-product .single-product__info {
  display: flex;
}
@media screen and (min-width: 769px) {
  .single-product .single-product__info {
    grid-column: 2;
    grid-row: 1;
  }
}
.single-product .single-product__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.single-product .single-product__info-item:before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2211%22%20viewBox%3D%220%200%2016%2011%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M16%202.95262C16%202.28125%2015.4556%201.73728%2014.7842%201.73728C14.1133%201.73728%2013.5688%202.28122%2013.5688%202.95262C13.5688%203.28075%2013.6992%203.57762%2013.9107%203.79637C13.084%205.50828%2011.5039%206.10547%2010.2793%205.56444C9.1885%205.0825%208.78616%203.70359%208.64991%202.63525C9.09425%202.40088%209.39747%201.93506%209.39747%201.39794C9.39747%200.625469%208.77197%200%208%200C7.22753%200%206.60206%200.6255%206.60206%201.39794C6.60206%201.93506%206.90528%202.40088%207.35012%202.63525C7.21391%203.70363%206.81106%205.08253%205.72072%205.56444C4.49609%206.10544%202.9165%205.50828%202.08934%203.79637C2.30028%203.57762%202.43116%203.28075%202.43116%202.95262C2.43116%202.28125%201.88672%201.73728%201.21534%201.73728C0.543969%201.73728%200%202.28122%200%202.95262C0%203.57031%200.460437%204.07859%201.05666%204.15672L2.79884%2010.6416H13.2012L14.9434%204.15672C15.5391%204.07859%2016%203.57028%2016%202.95262Z%22%20fill%3D%22%239E7B37%22%2F%3E%3C%2Fsvg%3E");
}
.single-product .single-product__info-item:last-child {
  border-right: 1px solid var(--border);
}
.single-product .single-product__info-item dt {
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__info-item dt {
    --font-size: 12px;
  }
}
.single-product .single-product__info-item dt {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  color: var(--brand);
}
.single-product .single-product__info-item dd {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__info-item dd {
    --font-size: 14px;
  }
}
.single-product .single-product__info-item dd {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.single-product .single-product__description {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__description {
    --font-size: 15px;
  }
}
.single-product .single-product__description {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.single-product .single-product__producer {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__producer {
    flex-direction: column;
    align-items: center;
  }
}
.single-product .single-product__producer img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.single-product .single-product__producer .single-product__producer-name {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__producer .single-product__producer-name {
    text-align: center;
  }
}
.single-product .single-product__producer .single-product__producer-description {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__producer .single-product__producer-description {
    --font-size: 15px;
  }
}
.single-product .single-product__producer .single-product__producer-description {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  margin-top: 20px;
}
.single-product .single-product__store-address {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__store-address {
    --font-size: 15px;
  }
}
.single-product .single-product__store-address {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.single-product .single-product__hp-link {
  color: var(--brand);
  text-decoration: underline;
}
.single-product .single-product__ec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .single-product .single-product__ec {
    grid-template-columns: 2fr;
  }
}

.gallery-swiper-container {
  min-width: 0;
  overflow: hidden;
}

.gallery-swiper {
  width: 100%;
}
.gallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-swiper .swiper-slide {
  aspect-ratio: 3/2;
  border: 1px solid var(--border);
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
}
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  top: calc(var(--swiper-navigation-top-offset, 50%) + 10px);
}
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 20px;
}
.gallery-swiper .swiper-navigation-icon {
  width: 50%;
  height: 50%;
}

.gallery-thumbs {
  margin-top: 16px;
}
.gallery-thumbs .gallery-thumbs-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-thumbs .gallery-thumb {
  aspect-ratio: 3/2;
  border: 1px solid var(--border);
  padding: 0;
  background: var(--white);
  cursor: pointer;
}
.gallery-thumbs .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-recipe .page-recipe__title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__title {
    --font-size: 24px;
  }
}
.page-recipe .page-recipe__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__title {
    margin: 0 auto 24px;
    text-align: left;
  }
}
.page-recipe .page-recipe__head {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.page-recipe .page-recipe__img {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 769px) {
  .page-recipe .page-recipe__img {
    grid-row: 1/3;
  }
}
.page-recipe .page-recipe__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-recipe .page-recipe__detail-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .page-recipe .page-recipe__detail-info {
    grid-column: 2;
    grid-row: 2;
  }
}
.page-recipe .page-recipe__info {
  display: flex;
}
@media screen and (min-width: 769px) {
  .page-recipe .page-recipe__info {
    grid-column: 2;
    grid-row: 1;
  }
}
.page-recipe .page-recipe__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.page-recipe .page-recipe__info-item:nth-child(1) dt {
  color: #c55c5c;
}
.page-recipe .page-recipe__info-item:nth-child(1)::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_368_7207)%22%3E%20%3Cpath%20d%3D%22M12.7246%203.46085C11.3733%202.37929%2010.8447%201.18546%2010.6415%200.337062C10.4785%20-0.344695%2010.5652%20-0.417938%2010.5652%20-0.417938C10.5566%20-0.499109%2010.5066%20-0.569305%2010.4321%20-0.603484C10.3589%20-0.637664%2010.2722%20-0.630945%2010.2057%20-0.584578C10.2057%20-0.584578%209.94387%20-0.52782%209.5166%20-0.113367C8.54492%200.830227%207.44508%202.40495%208.17016%204.55765C8.94715%206.86722%208.53637%207.35062%208.12926%207.3189C7.60129%207.27863%207.51953%206.95331%207.60434%205.94132C7.70262%204.75847%206.62961%203.74831%206.62961%203.74831C6.62961%203.74831%204.96273%206.39847%203.6627%208.29421C2.89426%209.41484%202.52562%2010.8388%202.52562%2012.1382H2.5C2.5%2016.1348%205.73977%2019.3751%209.73633%2019.3751C13.7329%2019.3751%2016.9727%2016.1348%2016.9727%2012.1382C17.2473%208.66777%2015.3625%205.57081%2012.7246%203.46085ZM9.74914%2017.3372C7.54516%2017.3372%205.75742%2015.5501%205.75742%2013.3455C5.75742%2012.5947%205.96555%2011.8928%206.32566%2011.2928C6.63574%2012.4476%207.68918%2013.2978%208.94164%2013.2978C10.437%2013.2978%2011.6504%2012.0851%2011.6504%2010.5891C11.6504%2010.3041%2011.6052%2010.0282%2011.5234%209.76999C12.8381%2010.4231%2013.7409%2011.7787%2013.7409%2013.3454C13.7408%2015.5501%2011.9537%2017.3372%209.74914%2017.3372Z%22%20fill%3D%22%23C55C5C%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_368_7207%22%3E%20%3Crect%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
.page-recipe .page-recipe__info-item:nth-child(2) dt {
  color: var(--brand);
}
.page-recipe .page-recipe__info-item:nth-child(2)::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_368_7212)%22%3E%20%3Cpath%20d%3D%22M10%200C4.48594%200%200%204.48609%200%2010C0%2015.5142%204.48594%2020%2010%2020C15.5141%2020%2020%2015.5142%2020%2010C20%204.48609%2015.5141%200%2010%200ZM10%2017.619C5.79895%2017.619%202.38098%2014.2014%202.38098%2010C2.38098%205.79895%205.79895%202.38098%2010%202.38098C14.2011%202.38098%2017.619%205.79895%2017.619%2010C17.619%2014.2014%2014.2011%2017.619%2010%2017.619Z%22%20fill%3D%22%23A88A5D%22%2F%3E%20%3Cpath%20d%3D%22M10.0952%204.52179C9.59483%204.52179%209.18917%204.92738%209.18917%205.42784V9.52972L6.29671%2012.4222C5.94276%2012.7759%205.94276%2013.3496%206.29671%2013.7036C6.65054%2014.0573%207.22421%2014.0573%207.57812%2013.7036L11.0014%2010.2804V9.35206V5.42784C11.0014%204.92738%2010.5957%204.52179%2010.0952%204.52179Z%22%20fill%3D%22%23A88A5D%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_368_7212%22%3E%20%3Crect%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
.page-recipe .page-recipe__info-item:last-child {
  border-right: 1px solid var(--border);
}
.page-recipe .page-recipe__info-item dt {
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__info-item dt {
    --font-size: 12px;
  }
}
.page-recipe .page-recipe__info-item dt {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-recipe .page-recipe__info-item dd {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__info-item dd {
    --font-size: 14px;
  }
}
.page-recipe .page-recipe__info-item dd {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-recipe .page-recipe__description {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__description {
    --font-size: 15px;
  }
}
.page-recipe .page-recipe__description {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-recipe .page-recipe__attention {
  --font-size: 13px;
  --line-height: 1.6;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__attention {
    --font-size: 12px;
  }
}
.page-recipe .page-recipe__attention {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-recipe .page-recipe__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
}
@media screen and (max-width: 980px) {
  .page-recipe .page-recipe__inner {
    grid-template-columns: 1fr 250px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__inner {
    grid-template-columns: 1fr;
    grid-auto-flow: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__ingredients {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__howto {
    order: 2;
  }
}
.page-recipe .page-recipe__howto li {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__howto li {
    --font-size: 15px;
  }
}
.page-recipe .page-recipe__howto li {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.page-recipe .page-recipe__howto li:not(:first-child) {
  margin-top: 4px;
}
.page-recipe .page-recipe__howto ol {
  counter-reset: listnum;
}
.page-recipe .page-recipe__howto ol > li::before {
  counter-increment: listnum;
  content: counter(listnum);
  color: var(--white);
  background: var(--brand);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  --font-size: 12px;
  --line-height: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.05em;
}
.page-recipe .page-recipe__howto ul {
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__howto ul {
    padding-left: 16px;
  }
}
.page-recipe .page-recipe__howto ul > li {
  display: list-item;
  list-style-type: circle;
}
.page-recipe .page-recipe__ingredients-section {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin: 16px 0 8px;
}
.page-recipe .page-recipe__ingredients-list + .page-recipe__ingredients-list {
  margin-top: 8px;
}
.page-recipe .page-recipe__ingredients-list li {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-recipe .page-recipe__ingredients-list li {
    --font-size: 14px;
  }
}
.page-recipe .page-recipe__ingredients-list li {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.page-recipe .page-recipe__ingredients-list li > span {
  flex-shrink: 0;
}
.page-recipe .page-recipe__ingredients-list--indented {
  border-left: 3px solid var(--border);
  padding-left: 16px;
}
.page-recipe .page-recipe__preparation {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.page-recipe .page-recipe__preparation .page-recipe__preparation-title {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 12px;
}
.page-recipe .page-recipe__preparation h4 {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin: 16px 0 4px;
  color: var(--brand);
  padding: 4px 12px;
  width: fit-content;
}
.page-recipe .page-recipe__preparation h4::before {
  content: "[";
}
.page-recipe .page-recipe__preparation h4::after {
  content: "]";
}
.page-recipe .page-recipe__steps h4 {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin: 20px 0 8px;
  background: var(--beige);
  color: var(--brand);
  padding: 4px 12px;
  width: fit-content;
}
.page-recipe .page-recipe__point {
  padding: 20px;
  border-radius: 12px;
  background: #f5f2ec;
  margin-top: 24px;
}
.page-recipe .page-recipe__point .page-recipe__point-title {
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 12px;
}
.page-recipe .page-recipe__point h4 {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin: 16px 0 4px;
  color: var(--brand);
  padding: 4px 12px;
  width: fit-content;
}
.page-recipe .page-recipe__point h4::before {
  content: "[";
}
.page-recipe .page-recipe__point h4::after {
  content: "]";
}

.page-single .page-single__date {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-single .page-single__date {
    --font-size: 14px;
  }
}
.page-single .page-single__date {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  margin-bottom: 16px;
}
.page-single .page-single__title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-single .page-single__title {
    --font-size: 24px;
  }
}
.page-single .page-single__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.page-archive .page-archive__title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-archive .page-archive__title {
    --font-size: 24px;
  }
}
.page-archive .page-archive__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 48px;
}
.page-archive .page-archive__item {
  border-bottom: 1px solid var(--border);
}
.page-archive .page-archive__item-link {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 12px 0;
}
.page-archive .page-archive__item-title {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-archive .page-archive__item-title {
    --font-size: 14px;
  }
}
.page-archive .page-archive__item-title {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-archive .page-archive__item-date {
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-archive .page-archive__item-date {
    --font-size: 14px;
  }
}
.page-archive .page-archive__item-date {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.page-about .page-about__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.page-about .page-about__title > img {
  height: 120px;
}
.page-about .page-about__title {
  text-align: center;
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__title {
    --font-size: 24px;
  }
}
.page-about .page-about__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-bottom: 64px;
}
.page-about .page-about__mission {
  text-align: center;
  font-size: 26px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__mission {
    font-size: 18px;
  }
}
.page-about .page-about__mission > span {
  color: var(--brand);
}
.page-about h2 {
  --font-size: 24px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-about h2 {
    --font-size: 22px;
  }
}
.page-about h2 {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
.page-about h2 small {
  display: block;
  color: var(--brand);
  font-size: 16px;
  font-weight: 300;
}
.page-about .page-about__message {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__message {
    --font-size: 15px;
  }
}
.page-about .page-about__message {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
@media screen and (min-width: 769px) {
  .page-about .page-about__message {
    text-align: center;
  }
}
.page-about .page-about__message p + p {
  margin-top: 8px;
}
.page-about .page-about__promise {
  counter-reset: listnum;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__promise {
    grid-template-columns: 1fr;
  }
}
.page-about .page-about__promise > li {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__promise > li {
    --font-size: 15px;
  }
}
.page-about .page-about__promise > li {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  background: var(--beige);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 150px;
}
.page-about .page-about__promise > li::before {
  counter-increment: listnum;
  content: counter(listnum);
  color: var(--brand);
  flex-shrink: 0;
  font-size: 48px;
  line-height: 1;
}
.page-about .page-about__img-01 {
  width: 100%;
  height: 400px;
  margin: 64px 0;
}
.page-about .page-about__img-01 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about .page-about__img-02 {
  width: 100%;
  height: 400px;
  margin: 64px 0;
}
@media screen and (max-width: 768px) {
  .page-about .page-about__img-02 {
    height: 250px;
  }
}
.page-about .page-about__img-02 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-help .page-help__search {
  margin-bottom: 40px;
}
.page-help .page-help__search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__search-input {
    --font-size: 15px;
  }
}
.page-help .page-help__search-input {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  outline: none;
}
.page-help .page-help__search-input:focus {
  border-color: var(--brand);
}
.page-help .page-help__no-results {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__no-results {
    --font-size: 15px;
  }
}
.page-help .page-help__no-results {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-align: center;
  padding: 48px 0;
}
.page-help .page-help__section {
  margin-bottom: 56px;
}
.page-help .page-help__category-title {
  --font-size: 24px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__category-title {
    --font-size: 22px;
  }
}
.page-help .page-help__category-title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.page-help .page-help__list {
  margin-bottom: 0;
}
.page-help .page-help__item {
  border-bottom: 1px solid var(--border);
}
.page-help .page-help__item:first-of-type {
  border-top: 1px solid var(--border);
}
.page-help .page-help__item summary::-webkit-details-marker {
  display: none;
}
.page-help .page-help__item summary::marker {
  display: none;
}
.page-help .page-help__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  --font-size: 18px;
  --line-height: 24px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.page-help .page-help__icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.page-help .page-help__icon::before, .page-help .page-help__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--brand);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.page-help .page-help__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.page-help .page-help__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.page-help .page-help__item[open] .page-help__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.page-help .page-help__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 24px;
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__answer {
    --font-size: 14px;
  }
}
.page-help .page-help__answer {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.page-help .page-help__answer-body {
  flex: 1;
}
.page-help .page-help__answer-body p {
  margin-bottom: 0.8em;
}
.page-help .page-help__answer-body p:last-child {
  margin-bottom: 0;
}
.page-help .page-help__answer-body p > a {
  color: var(--brand);
  text-decoration: underline;
}
.page-help .page-help__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.page-help .page-help__label--q {
  background-color: var(--brand);
  color: var(--white);
}
.page-help .page-help__label--a {
  background-color: var(--beige);
  color: var(--brown);
}
.page-help .page-help__empty {
  --font-size: 16px;
  --line-height: 1.8;
  --letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__empty {
    --font-size: 15px;
  }
}
.page-help .page-help__empty {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-align: center;
  padding: 48px 0;
}
.page-help .page-help__contact {
  background: var(--beige);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-help .page-help__contact {
    padding: 48px 20px;
  }
}

.page-maintenance {
  text-align: center;
  background: var(--beige);
  min-height: 100dvh;
}
.page-maintenance .page-maintenance__inner {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__inner {
    padding: 40px 20px;
  }
}
.page-maintenance .page-maintenance__logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__logo {
    margin-bottom: 20px;
  }
}
.page-maintenance .page-maintenance__logo > img {
  width: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__logo > img {
    width: 80px;
  }
}
.page-maintenance .page-maintenance__title {
  --font-size: 32px;
  --line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__title {
    --font-size: 24px;
  }
}
.page-maintenance .page-maintenance__title {
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.page-maintenance .page-maintenance__info {
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 40px auto 0;
}
.page-maintenance .page-maintenance__info h4 {
  --font-size: 16px;
  --line-height: 20px;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.page-maintenance .page-maintenance__info li {
  list-style: none;
  --font-size: 15px;
  --line-height: 1.7;
  --letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__info li {
    --font-size: 14px;
  }
}
.page-maintenance .page-maintenance__info li {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
@media screen and (max-width: 768px) {
  .page-maintenance .page-maintenance__info li {
    --font-size: 13px;
    --line-height: 1.6;
    --letter-spacing: 0.08em;
    font-size: var(--font-size);
    font-weight: 500;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .page-maintenance .page-maintenance__info li {
    --font-size: 12px;
  }
}
.page-maintenance .page-maintenance__textlink {
  color: var(--brand);
  text-decoration: underline;
}
.page-maintenance p + p {
  margin-top: 16px;
}
