@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(0.9);
  }
}

a,
button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =14px */
  line-height: 1.5;
  font-family: "Kiwi Maru", serif;
  color: #222;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.inner {
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}

.indent {
  display: inline-block;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  width: min(23.6363636364vw, 260px);
  min-height: min(5.4545454545vw, 60px);
  font-weight: bold;
  font-size: min(1.8181818182vw, 2rem);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 45.3333333333vw;
    min-height: 16vw;
    font-size: 3.7333333333vw;
    gap: 1.8666666667vw;
  }
}
.btn img {
  width: 12px;
}
@media screen and (max-width: 768px) {
  .btn img {
    width: 2.1333333333vw;
  }
}
.btn-green {
  background-color: #a3c435;
}
.btn-brown {
  background-color: #6e2925;
}

.section-title {
  text-align: center;
  padding-top: 20px;
  font-size: 3.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4.8vw;
    padding-top: 2.6666666667vw;
  }
}
.section-title::after {
  content: "";
  width: 120px;
  height: 6px;
  border-radius: 3px;
  background-color: #a3c435;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-title::after {
    width: 16vw;
    height: 0.8vw;
  }
}

.header__inner {
  max-width: 1240px;
  padding: 20px 20px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    max-width: 100%;
    padding: 4.8vw 4.8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header__logo {
  width: 345px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 56.5333333333vw;
  }
}
.header__nav {
  margin-top: min(5vw, 50px);
}
.header__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav ul li:not(:last-of-type) {
  position: relative;
}
.header__nav ul li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header__nav ul li a {
  display: block;
  color: #333;
  font-size: min(1.9130434783vw, 2.2rem);
  font-weight: 500;
  padding: 0 min(1.7391304348vw, 20px);
}
.header__nav ul li a.is-current {
  position: relative;
}
.header__nav ul li a.is-current::after {
  content: "";
  position: absolute;
  left: min(1.7391304348vw, 20px);
  right: min(1.7391304348vw, 20px);
  bottom: -8px;
  height: 3px;
  border-radius: 9999px;
  background-color: #a3c435;
}
.header__btn {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  position: absolute;
  top: 0;
  right: 120px;
  width: 100%;
  max-width: 535px;
  z-index: 100;
}
@media screen and (max-width: 1440px) {
  .header__btn {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__btn-menu button {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .header__btn-menu button.on .header__line:first-of-type {
    transform: translate(0, -50%);
    opacity: 0;
  }
}
.header__btn-menu button.on .header__line:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.header__btn-menu button.on .header__line:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .header__line {
    width: 8vw;
    height: 1.5px;
    position: absolute;
    background-color: #222;
    transition: opacity 0.3s, transform 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .header__line:first-of-type {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .header__line:nth-of-type(2) {
    top: calc(50% - 2.9333333333vw);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .header__line:nth-of-type(3) {
    top: calc(50% + 2.9333333333vw);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.header {
  /* ---- スクロールで縮小して追従（JSが .is-fixed / body.js-header-fixed を付与） ---- */
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: header-slide-down 0.3s ease;
}
.header.is-fixed .header__inner {
  max-width: 1240px;
  height: 66px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header.is-fixed .header__inner {
    max-width: 100%;
    height: 14.9333333333vw;
    padding: 0 4.8vw;
  }
}
.header.is-fixed .header__logo {
  width: min(15.625vw, 200px);
  flex: 0 0 auto;
}
.header.is-fixed .header__nav {
  margin-top: 0;
}
.header.is-fixed .header__nav ul li a {
  white-space: nowrap;
  font-size: min(1.40625vw, 1.8rem);
  padding: 0 min(0.9375vw, 12px);
}
.header.is-fixed .header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header.is-fixed {
    background-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }
  .header.is-fixed .header__inner {
    height: auto;
    padding: 2.6666666667vw 3.7333333333vw;
    justify-content: flex-end;
  }
  .header.is-fixed .header__logo {
    display: none;
  }
  .header.is-fixed .header__btn-menu button {
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .header.is-fixed .header__line {
    width: 6.4vw;
  }
  .header.is-fixed .header__btn-menu button:not(.on) .header__line:nth-of-type(2) {
    top: calc(50% - 2.1333333333vw);
  }
  .header.is-fixed .header__btn-menu button:not(.on) .header__line:nth-of-type(3) {
    top: calc(50% + 2.1333333333vw);
  }
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.js-header-fixed .page-products .menu-tab {
  top: 66px;
}
@media screen and (max-width: 768px) {
  body.js-header-fixed .page-products .menu-tab {
    top: 0;
  }
}

.footer {
  background-color: #f0e8e3;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__nav ul li:not(:last-of-type) {
  position: relative;
}
.footer__nav ul li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer__nav ul li a {
  display: block;
  color: #333;
  font-size: min(2vw, 2.2rem);
  font-weight: 500;
  padding: 0 min(1.8181818182vw, 20px);
}
.footer__body {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__body {
    margin-top: 0;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5.3333333333vw;
  }
}
.footer__logo {
  width: 345px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 56.5333333333vw;
  }
}
.footer__btn {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer__btn {
    margin-top: 0;
    gap: 2.1333333333vw;
  }
}
.footer__bottom {
  margin-top: 45px;
  height: 260px;
  background-image: url("/assets/images/bg-footer.jpg");
  background-size: cover;
  background-position: 50% 75%;
  position: relative;
}
.footer__bottom img {
  width: min(54.1vw, 541px);
  position: absolute;
  top: 116px;
  left: calc(50% - 95px);
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}
.sp-menu__inner {
  width: 100%;
  height: 100%;
}
.sp-menu__top {
  width: 100%;
  height: 100%;
  position: relative;
}
.sp-menu__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90.6666666667vw;
  height: 90%;
  max-height: none;
}
.sp-menu__body > div {
  height: 100%;
  background-color: #fff;
  padding: 16vw 5.3333333333vw 8vw;
  box-sizing: border-box;
  overflow: auto;
}
.sp-menu__close {
  width: 10.6666666667vw;
  position: absolute;
  top: 2.6666666667vw;
  right: 2.6666666667vw;
  z-index: 10;
}
.sp-menu__text-top {
  font-size: 4.2666666667vw;
  font-weight: bold;
  text-align: center;
}
.sp-menu__cta-list {
  margin-top: 2.6666666667vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4vw;
  position: relative;
}
.sp-menu__cta-btn {
  width: 100%;
  min-height: 17.3333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 4vw;
  font-weight: bold;
  border-radius: 2.6666666667vw;
  color: #fff;
}
.sp-menu__cta-btn .font-small {
  display: block;
  font-size: 3.2vw;
  margin-top: 0.5333333333vw;
}
.sp-menu__cta-btn-green {
  background-color: #a3c435;
}
.sp-menu__cta-btn-brown {
  background-color: #6e2925;
}
.sp-menu__cta-notes {
  display: block;
  color: #000000;
  font-size: 2.9333333333vw;
  margin-top: 1.6vw;
  line-height: 1.3;
  text-align: center;
}
.sp-menu__nav {
  margin-top: 5.3333333333vw;
}
.sp-menu__nav ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sp-menu__nav ul li:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.sp-menu__nav ul li a {
  padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 0;
  font-size: 3.7333333333vw;
  position: relative;
  display: block;
}
.sp-menu__nav ul li a img {
  width: 2.1333333333vw;
  position: absolute;
  top: 50%;
  right: 0.5333333333vw;
  transform: translateY(-50%);
}
.sp-menu__bottom {
  background-color: #dcdcdc;
  padding: 5.3333333333vw 3.4666666667vw;
  display: flex;
  justify-content: space-between;
}

.breadcrumb {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-top: 5.8666666667vw;
  }
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 32px;
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    gap: 1.3333333333vw 6.4vw;
    padding-left: 5.8666666667vw;
  }
}
.breadcrumb__list::after {
  content: "";
  width: 20px;
  height: 21px;
  background-image: url("/assets/images/icon-home.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list::after {
    width: 4.2666666667vw;
    height: 4.5333333333vw;
    top: -0.5333333333vw;
  }
}
.breadcrumb__list li:not(:first-of-type) {
  position: relative;
}
.breadcrumb__list li:not(:first-of-type)::after {
  content: "";
  width: 8px;
  height: 14px;
  background-image: url("/assets/images/arrow-to-right-brown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 53%;
  left: -19px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumb__list li:not(:first-of-type)::after {
    top: 57%;
    width: 1.8666666667vw;
    height: 3.4666666667vw;
    left: -4.2666666667vw;
  }
}
.breadcrumb__list li a {
  display: block;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.5;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list li a {
    font-size: 2.6666666667vw;
  }
}
.breadcrumb__list li a.current {
  pointer-events: none;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.category {
  flex: 0 0 auto;
  width: 148px;
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-weight: bold;
  padding: 4px 5px;
  border: 2px solid #a3c435;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .category {
    width: 26.6666666667vw;
    min-height: 8.2666666667vw;
    font-size: 2.9333333333vw;
    line-height: 1.2;
    padding: 0.5333333333vw 1.3333333333vw;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pagination {
    gap: 6.1333333333vw;
  }
}
.pagination__text {
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 768px) {
  .pagination__text {
    font-size: 3.2vw;
  }
}
.pagination a {
  text-decoration: underline;
}

.toppage .header__btn {
  position: fixed;
}

.toppage main {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .toppage main {
    padding-bottom: 16vw;
  }
}
.toppage .mv__top {
  position: relative;
}
.toppage .mv__slider-inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__slider-inner {
    padding-bottom: 16vw;
  }
}
.toppage .mv__slider-inner .swiper-options {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__slider-inner .swiper-options {
    bottom: 5.3333333333vw;
    gap: 1.3333333333vw;
  }
}
.toppage .mv__slider-inner .swiper-pagination {
  position: static;
  display: flex;
}
.toppage .mv__slider-inner .swiper-pagination-bullet {
  cursor: pointer;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #6e2925;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .toppage .mv__slider-inner .swiper-pagination-bullet {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.toppage .mv__slider-inner .swiper-pagination-bullet-active {
  background-color: #6e2925;
}
.toppage .mv__slider-inner .swiper-pause {
  cursor: pointer;
  opacity: 1;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__slider-inner .swiper-pause {
    width: 8vw;
  }
}
.toppage .mv__slider-inner .swiper-button-prev, .toppage .mv__slider-inner .swiper-button-next {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__slider-inner .swiper-button-prev, .toppage .mv__slider-inner .swiper-button-next {
    display: none;
    width: 10.6666666667vw;
  }
}
.toppage .mv__cta {
  position: relative;
  background-color: #a3c435;
  padding: 25px 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta {
    padding: 5.3333333333vw 9.8666666667vw;
  }
}
.toppage .mv__cta-deco01 {
  width: 240px;
  position: absolute;
  top: 63px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-deco01 {
    width: 40.2666666667vw;
    top: inherit;
    bottom: -4vw;
  }
}
.toppage .mv__cta-deco02 {
  width: 245px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-deco02 {
    width: 27.4666666667vw;
    bottom: inherit;
    top: -5.3333333333vw;
  }
}
.toppage .mv__cta-top {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-top {
    font-size: 4.2666666667vw;
  }
}
.toppage .mv__cta-list {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-list {
    margin-top: 2.6666666667vw;
    gap: 4vw;
    flex-direction: column;
  }
}
.toppage .mv__cta-btn {
  width: min(46vw, 460px);
  min-height: min(9.4vw, 94px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: min(2.4vw, 2.4rem);
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-btn {
    width: 100%;
    min-height: 17.3333333333vw;
    font-size: 4vw;
    border-radius: 2.6666666667vw;
  }
}
.toppage .mv__cta-btn .font-small {
  display: block;
  font-size: min(1.6vw, 1.6rem);
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-btn .font-small {
    font-size: 3.2vw;
    margin-top: 0.5333333333vw;
  }
}
.toppage .mv__cta-btn-white {
  background-color: #fff;
}
.toppage .mv__cta-btn-brown {
  background-color: #6e2925;
  color: #fff;
}
.toppage .mv__cta-notes {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .toppage .mv__cta-notes {
    font-size: 2.9333333333vw;
    margin-top: 1.6vw;
    line-height: 1.3;
  }
}
.toppage .area-news {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-news {
    padding-top: 5.3333333333vw;
  }
}
.toppage .area-news__list {
  display: flex;
  flex-direction: column;
}
.toppage .area-news__list li {
  min-width: 0;
}
.toppage .area-news__list a {
  min-height: 75px;
  padding: 19px 30px;
  border: 1px solid #a3c435;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toppage .area-news__list a {
    padding: 2.1333333333vw 8vw 2.1333333333vw 2.6666666667vw;
    flex-wrap: wrap;
    gap: 0 2.6666666667vw;
  }
}
.toppage .area-news__date {
  flex: 0 0 auto;
  color: #6e2925;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .toppage .area-news__date {
    font-size: 2.9333333333vw;
  }
}
.toppage .area-news__category {
  flex: 0 0 160px;
  min-height: 35px;
  padding: 4px 5px;
  border: 2px solid #a3c435;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .toppage .area-news__category {
    flex-basis: auto;
    min-width: 28.2666666667vw;
    min-height: 6.1333333333vw;
    padding: 0.8vw 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.toppage .area-news__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .toppage .area-news__title {
    flex: 0 0 100%;
    font-size: 3.2vw;
  }
}
.toppage .area-news__arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 14px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .toppage .area-news__arrow {
    width: 2.1333333333vw;
    height: auto;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 3.2vw;
    transform: translateY(-50%);
  }
}
.toppage .area-event {
  padding: 72px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toppage .area-event {
    padding-top: 7.4666666667vw;
  }
}
.toppage .area-event__illust01 {
  width: 69px;
  position: absolute;
  top: 79px;
  left: calc(50% - 438px);
}
@media screen and (max-width: 900px) {
  .toppage .area-event__illust01 {
    top: 40px;
    left: 10px;
  }
}
.toppage .area-event__illust02 {
  width: 67px;
  position: absolute;
  top: 130px;
  right: calc(50% - 418px);
}
@media screen and (max-width: 900px) {
  .toppage .area-event__illust02 {
    top: 60px;
    right: 10px;
  }
}
.toppage .area-event__title {
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toppage .area-event__title {
    font-size: 4.8vw;
  }
}
.toppage .area-event__title + p {
  margin-top: 15px;
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-event__title + p {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-event__list {
  position: relative;
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event__list {
    margin-top: 5.3333333333vw;
  }
}
.toppage .area-event__list-inner {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .toppage .area-event__list-inner {
    width: calc(100% - 14.9333333333vw);
    margin-inline: auto;
  }
}
.toppage .area-event .list-event .swiper-slide a {
  display: flex;
  flex-direction: column;
}
.toppage .area-event .list-event__img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  height: 0;
  margin-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__img {
    margin-bottom: 2.1333333333vw;
  }
}
.toppage .area-event .list-event__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.toppage .area-event .list-event__date {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__date {
    font-size: 2.6666666667vw;
    margin-bottom: 1.6vw;
  }
}
.toppage .area-event .list-event__shop {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .toppage .area-event .list-event__shop {
    flex-direction: column;
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__shop {
    flex-direction: column;
    gap: 0;
  }
}
.toppage .area-event .list-event__shop dt {
  font-weight: bold;
  font-size: 1.2rem;
  padding: 4px 11px;
  background-color: #a3c435;
  border-radius: 20px;
  color: #fff;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__shop dt {
    font-size: 2.6666666667vw;
    padding: 1.0666666667vw 1.6vw;
    border-radius: 5.3333333333vw;
  }
}
.toppage .area-event .list-event__shop dd {
  margin-top: 3px;
  font-size: 1.5rem;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1000px) {
  .toppage .area-event .list-event__shop dd {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__shop dd {
    margin-top: 0;
    font-size: 3.2vw;
  }
}
.toppage .area-event .list-event__desc {
  margin-top: auto;
  margin-bottom: 7px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .list-event__desc {
    margin-bottom: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.toppage .area-event .event-swiper-prev,
.toppage .area-event .event-swiper-next {
  width: 16px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .event-swiper-prev,
  .toppage .area-event .event-swiper-next {
    width: 4.2666666667vw;
  }
}
.toppage .area-event .event-swiper-prev {
  left: -40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .event-swiper-prev {
    left: 0;
  }
}
.toppage .area-event .event-swiper-next {
  right: -40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .event-swiper-next {
    right: 0;
  }
}
.toppage .area-event .event-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .event-swiper-pagination {
    margin-top: 5.3333333333vw;
  }
}
.toppage .area-event .event-swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #6e2925;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .toppage .area-event .event-swiper-pagination .swiper-pagination-bullet {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.toppage .area-event .event-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6e2925;
}
.toppage .area-products {
  padding: 127px 0 132px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toppage .area-products {
    padding-top: 10.6666666667vw;
    padding-bottom: 16.5333333333vw;
  }
}
.toppage .area-products__illust01 {
  width: 195px;
  position: absolute;
  top: 163px;
  left: calc(50% - 536px);
}
@media screen and (max-width: 1100px) {
  .toppage .area-products__illust01 {
    top: 80px;
    left: 20px;
  }
}
.toppage .area-products__illust02 {
  width: 119px;
  position: absolute;
  top: 184px;
  right: calc(50% - 484px);
}
@media screen and (max-width: 1000px) {
  .toppage .area-products__illust02 {
    right: 0px;
  }
}
.toppage .area-products .section-title + p {
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-products .section-title + p {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-products h3 {
  text-align: center;
  font-size: 2.4rem;
  color: #381200;
}
@media screen and (max-width: 768px) {
  .toppage .area-products h3 {
    font-size: 4.2666666667vw;
  }
}
.toppage .area-products h3 + p {
  text-align: center;
  margin-top: 15px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .toppage .area-products h3 + p {
    margin-top: 3.2vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-products h3 + p.font-brown {
  color: #381200;
}
.toppage .area-products__btn {
  margin: 40px auto 0;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  font-weight: bold;
  font-size: 1.8rem;
  gap: 11px;
  background-color: #fff;
  border: 2px solid #a3c435;
}
@media screen and (max-width: 768px) {
  .toppage .area-products__btn {
    margin-top: 5.8666666667vw;
    padding: 4.5333333333vw 4vw;
    gap: 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
}
.toppage .area-products__btn img {
  width: 8px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products__btn img {
    width: 1.8666666667vw;
  }
}
.toppage .area-products01 {
  margin-top: 71px;
  padding: 55px 0 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .toppage .area-products01 {
    margin-top: 10.9333333333vw;
    padding: 14.6666666667vw 0 5.0666666667vw;
  }
}
.toppage .area-products01::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: rgba(163, 196, 53, 0.1);
  position: absolute;
  top: 0;
  right: 120px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products01::before {
    right: 10.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.toppage .area-products01__deco {
  width: 242px;
  position: absolute;
  top: -18px;
  left: calc(50% - 298px);
}
@media screen and (max-width: 768px) {
  .toppage .area-products01__deco {
    width: 46.4vw;
    top: -4.2666666667vw;
    left: 4.8vw;
  }
}
.toppage .area-products01__list {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products01__list {
    margin-top: 5.3333333333vw;
    flex-wrap: wrap;
    gap: 5.3333333333vw 4.2666666667vw;
  }
}
.toppage .area-products01__list li {
  width: calc(20% - 15px);
}
@media screen and (max-width: 768px) {
  .toppage .area-products01__list li {
    width: calc(50% - 2.1333333333vw);
  }
}
.toppage .area-products02 {
  margin-top: 101px;
  padding: 55px 0 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02 {
    margin-top: 16vw;
    padding: 14.6666666667vw 0 5.3333333333vw;
  }
}
.toppage .area-products02::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: rgba(163, 196, 53, 0.1);
  position: absolute;
  top: 0;
  left: 120px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02::before {
    left: 10.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.toppage .area-products02__illust {
  width: 159px;
  position: absolute;
  top: -35px;
  right: calc(50% - 411px);
}
.toppage .area-products02__deco {
  width: 286px;
  position: absolute;
  top: -18px;
  left: calc(50% - 330px);
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__deco {
    width: 54.9333333333vw;
    top: -4vw;
    left: 0.5333333333vw;
  }
}
.toppage .area-products02__deco01 {
  width: min(44.75vw, 537px);
  position: absolute;
  top: min(5.5833333333vw, 67px);
  left: -90px;
}
@media screen and (max-width: 1060px) {
  .toppage .area-products02__deco01 {
    top: 18.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__deco01 {
    position: static;
    margin: 5.3333333333vw auto 0;
    width: 89.6vw;
  }
}
.toppage .area-products02__deco02 {
  width: min(47vw, 564px);
  position: absolute;
  top: min(30.4166666667vw, 365px);
  left: 25px;
}
@media screen and (max-width: 1060px) {
  .toppage .area-products02__deco02 {
    top: 45.8333333333vw;
    left: -5vw;
  }
}
.toppage .area-products02__body {
  max-width: min(58.3333333333vw, 700px);
  margin-top: 40px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__body {
    max-width: 100%;
    margin-top: 7.2vw;
  }
}
.toppage .area-products02__body > p:first-of-type {
  font-size: 2rem;
  font-weight: 500;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__body > p:first-of-type {
    font-size: 3.7333333333vw;
    text-align: right;
  }
}
.toppage .area-products02__body > p:nth-of-type(2) {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__body > p:nth-of-type(2) {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-products02__body > ul {
  margin-top: 90px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__body > ul {
    margin-top: 5.3333333333vw;
    gap: 4.2666666667vw;
  }
}
.toppage .area-products02__body > ul li {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__body > ul li {
    width: calc(50% - 2.1333333333vw);
  }
}
.toppage .area-products02__btn {
  margin-left: auto;
  margin-right: 72px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products02__btn {
    margin-right: auto;
    margin-top: 11.7333333333vw;
  }
}
.toppage .area-products03 {
  margin-top: 122px;
  padding: 55px 0 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03 {
    margin-top: 8.2666666667vw;
    padding: 14.6666666667vw 0 8vw;
  }
}
.toppage .area-products03::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: rgba(163, 196, 53, 0.1);
  position: absolute;
  top: 0;
  right: 120px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03::before {
    right: 10.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
.toppage .area-products03__illust01 {
  width: 95px;
  position: absolute;
  top: 65px;
  left: calc(50% - 458px);
}
@media screen and (max-width: 900px) {
  .toppage .area-products03__illust01 {
    left: -10px;
  }
}
.toppage .area-products03__illust02 {
  width: 105px;
  position: absolute;
  top: -37px;
  right: calc(50% - 406px);
}
@media screen and (max-width: 900px) {
  .toppage .area-products03__illust02 {
    right: 40px;
  }
}
.toppage .area-products03__deco {
  width: 298px;
  position: absolute;
  top: -18px;
  left: calc(50% - 334px);
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__deco {
    width: 57.0666666667vw;
    top: -4.8vw;
    left: -0.5333333333vw;
  }
}
.toppage .area-products03__deco01 {
  width: min(51.75vw, 621px);
  position: absolute;
  top: 0;
  right: -135px;
}
@media screen and (max-width: 1150px) {
  .toppage .area-products03__deco01 {
    top: 5.2173913043vw;
    right: -10.4347826087vw;
  }
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__deco01 {
    position: static;
    width: 85.8666666667vw;
    padding-left: 20px;
    margin: 4vw auto 0;
  }
}
.toppage .area-products03__deco02 {
  width: min(36.6666666667vw, 440px);
  position: absolute;
  top: min(40.5vw, 486px);
  right: 165px;
}
@media screen and (max-width: 1150px) {
  .toppage .area-products03__deco02 {
    top: 48.6956521739vw;
    right: 1.7391304348vw;
  }
}
.toppage .area-products03__body {
  max-width: min(58.3333333333vw, 700px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__body {
    max-width: 100%;
    margin-top: 5.3333333333vw;
  }
}
.toppage .area-products03__body > p:first-of-type {
  font-size: 2rem;
  font-weight: 500;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__body > p:first-of-type {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.toppage .area-products03__body > p:nth-of-type(2) {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__body > p:nth-of-type(2) {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-products03__body > ul {
  margin-top: 30px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__body > ul {
    margin-top: 5.3333333333vw;
    gap: 4.2666666667vw;
  }
}
.toppage .area-products03__body > ul li {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__body > ul li {
    width: calc(50% - 2.1333333333vw);
  }
}
.toppage .area-products03__btn {
  margin-left: 146px;
}
@media screen and (max-width: 768px) {
  .toppage .area-products03__btn {
    margin-left: auto;
    margin-top: 11.7333333333vw;
  }
}
.toppage .area-attempt h2 + p {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt h2 + p {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-attempt__body {
  border: 2px solid #a3c435;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__body {
    padding: 5.3333333333vw 4.5333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.toppage .area-attempt__illust {
  width: 164px;
  position: absolute;
  top: 41px;
  right: calc(50% - 404px);
}
@media screen and (max-width: 900px) {
  .toppage .area-attempt__illust {
    right: 20px;
  }
}
.toppage .area-attempt strong {
  font-style: normal;
  font-weight: bold;
}
.toppage .area-attempt__list {
  margin: 40px 0;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__list {
    margin: 5.3333333333vw 0;
    gap: 2.6666666667vw;
  }
}
.toppage .area-attempt__list li {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__list li {
    width: calc(33.3333333333% - 1.7777777778vw);
  }
}
.toppage .area-attempt__list li img {
  aspect-ratio: 706/600;
  object-fit: cover;
  object-position: center;
}
.toppage .area-attempt__list + p {
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__list + p {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.toppage .area-attempt__btn {
  margin: 40px auto 0;
  display: flex;
  width: fit-content;
  min-width: 250px;
  align-items: center;
  justify-content: center;
  padding: 14px 15px;
  font-weight: bold;
  font-size: 1.8rem;
  gap: 11px;
  border: 2px solid #a3c435;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__btn {
    margin-top: 5.3333333333vw;
    min-width: 50.4vw;
    padding: 4.5333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    gap: 2.1333333333vw;
  }
}
.toppage .area-attempt__btn img {
  width: 8px;
}
@media screen and (max-width: 768px) {
  .toppage .area-attempt__btn img {
    width: 1.8666666667vw;
  }
}

.lowpage main {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .lowpage main {
    padding-bottom: 13.3333333333vw;
  }
}
.lowpage .mv {
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-image: url("/assets/images/store-info/bg-mv.webp");
}
.lowpage .mv.--store-info {
  background-image: url("/assets/images/store-info/bg-mv.webp");
}
.lowpage .mv.--news {
  background-image: url("/assets/images/news/bg-mv.webp");
}
.lowpage .mv.--recruit {
  background-image: url("/assets/images/recruit/bg-mv.webp");
}
.lowpage .mv.--about {
  background-image: url("/assets/images/about/bg-mv.webp");
}
.lowpage .mv.--custom-cake {
  background-image: url("/assets/images/custom-cake/bg-mv.webp");
}
.lowpage .mv .inner {
  position: relative;
  height: 260px;
}
@media screen and (max-width: 768px) {
  .lowpage .mv .inner {
    height: 18.1333333333vw;
  }
}
.lowpage .mv__bg {
  height: 100%;
  padding: 0 40px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 20px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lowpage .mv__bg {
    min-width: 36.8vw;
    padding: 0 1.3333333333vw;
    left: 0;
    padding-bottom: 1.8666666667vw;
  }
}
.lowpage .mv__title {
  width: 100%;
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lowpage .mv__title {
    font-size: 4.8vw;
  }
}
.lowpage .mv__deco {
  width: 313px;
  position: absolute;
  top: -56px;
  right: 82px;
}
.lowpage .lowpage-contents {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .lowpage .lowpage-contents {
    padding-top: 9.3333333333vw;
  }
}
.lowpage .lowpage-contents__desc {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .lowpage .lowpage-contents__desc {
    font-size: 3.2vw;
    line-height: 1.5;
    font-weight: normal;
  }
}
.lowpage .lowpage-contents__news-tag {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lowpage .lowpage-contents__news-tag {
    max-width: 100%;
  }
}
.lowpage .lowpage-contents__news-list {
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .lowpage .lowpage-contents__news-list {
    margin-top: 4vw;
  }
}
.lowpage .lowpage-contents__pagination {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .lowpage .lowpage-contents__pagination {
    margin-top: 4vw;
  }
}

.page-store-info .store-info-body {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body {
    margin-top: 9.3333333333vw;
    flex-direction: column;
    gap: 4vw;
  }
}
.page-store-info .store-info-body dl {
  flex: 0 0 auto;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body dl {
    width: 100%;
  }
}
.page-store-info .store-info-body dl dt {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body dl dt {
    font-size: 3.7333333333vw;
    padding-bottom: 2.1333333333vw;
  }
}
.page-store-info .store-info-body dl dd {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body dl dd {
    padding-top: 2.1333333333vw;
  }
}
.page-store-info .store-info-body__tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 2rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__tel {
    gap: 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page-store-info .store-info-body__tel img {
  width: 23px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__tel img {
    width: 4vw;
  }
}
.page-store-info .store-info-body__address {
  font-size: 2rem;
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__address {
    font-size: 4.2666666667vw;
    padding-top: 2.6666666667vw;
    padding-bottom: 2.1333333333vw;
  }
}
.page-store-info .store-info-body__time {
  padding: 20px 0;
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__time {
    padding: 2.6666666667vw 0;
  }
}
.page-store-info .store-info-body__time > p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__time > p {
    gap: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.page-store-info .store-info-body__time > p:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__time > p:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
.page-store-info .store-info-body__time > p .--title {
  padding: 2px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
  background-color: #6e2925;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__time > p .--title {
    padding: 0.5333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.page-store-info .store-info-body__insta {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__insta {
    padding-top: 2.1333333333vw;
    gap: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page-store-info .store-info-body__insta img {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__insta img {
    width: 8vw;
  }
}
.page-store-info .store-info-body__row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: calc(100% - 390px);
}
@media screen and (max-width: 950px) {
  .page-store-info .store-info-body__row {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__row {
    width: 100%;
    gap: 4vw;
  }
}
.page-store-info .store-info-body__img {
  width: calc(50% - 15px);
}
@media screen and (max-width: 950px) {
  .page-store-info .store-info-body__img {
    width: 100%;
  }
}
.page-store-info .store-info-body__map {
  position: relative;
  width: calc(50% - 15px);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 950px) {
  .page-store-info .store-info-body__map {
    width: 100%;
  }
}
.page-store-info .store-info-body__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-store-info .store-info-body__map-link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  padding: 8px 14px;
  color: #6e2925;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .page-store-info .store-info-body__map-link {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    padding: 1.6vw 2.6666666667vw;
    font-size: 3.4666666667vw;
    border-radius: 1.0666666667vw;
  }
}

.page-news .lowpage-contents__news-tag {
  max-width: none;
  margin: 0;
}
.page-news .tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-news .tag-list {
    gap: 2.1333333333vw;
  }
}
.page-news .tag-list--store {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-news .tag-list--store {
    margin-top: 3.2vw;
  }
}
.page-news .tag-list li a {
  height: 35px;
  padding: 2px 8px 3px;
  background-color: #fff;
  border: 2px solid #a3c435;
  border-radius: 0;
  box-sizing: border-box;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.875;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page-news .tag-list li a {
    min-width: 0;
    height: 6.1333333333vw;
    padding: 0.8vw 2.1333333333vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.page-news .tag-list li a.is-active {
  background-color: #cee582;
  border-color: #cee582;
  color: #000;
}
.page-news .lowpage-contents__news-list {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-news .lowpage-contents__news-list {
    margin-top: 4vw;
  }
}
.page-news .news-list li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 29px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-news .news-list li:not(:last-of-type) {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.page-news .news-list a {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-news .news-list a {
    flex-wrap: wrap;
    align-items: center;
    gap: 2.6666666667vw;
    padding: 4vw 0;
  }
}
.page-news .news-list__arrow {
  flex: 0 0 auto;
  width: 24px;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .page-news .news-list__arrow {
    width: 2.1333333333vw;
    height: auto;
    position: absolute;
    top: 50%;
    right: 1.3333333333vw;
    transform: translateY(-50%);
  }
}
.page-news .news-list__date {
  flex: 0 0 auto;
  width: 132px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.25;
  color: #6e2925;
}
@media screen and (max-width: 768px) {
  .page-news .news-list__date {
    width: auto;
    font-size: 2.9333333333vw;
    line-height: 2.7272727273;
  }
}
.page-news .news-list__cat {
  width: calc(10em + 24px);
  min-height: 35px;
  padding: 2px 10px 3px;
  background-color: #a87f7c;
  border-color: #a87f7c;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.875;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .page-news .news-list__cat {
    width: calc(10em + 2.6666666667vw + 4px);
    min-height: 8.2666666667vw;
    padding: 0.5333333333vw 1.3333333333vw;
    font-size: 2.9333333333vw;
    line-height: 1.2;
  }
}
.page-news .news-list__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-news .news-list__text {
    flex: 0 0 100%;
    display: block;
    position: relative;
  }
}
.page-news .news-list__text p {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .page-news .news-list__text p {
    font-size: 3.2vw;
    padding-right: 6.6666666667vw;
    -webkit-line-clamp: 4;
  }
}
.page-news .pagination {
  justify-content: flex-start;
  gap: 30px;
  margin: 60px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .page-news .pagination {
    justify-content: center;
    gap: 6.1333333333vw;
    margin-top: 4vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.page-news .pagination .page-numbers {
  text-decoration: underline;
}
.page-news .pagination .page-numbers.dots {
  text-decoration: none;
}

/* =========================================================
   商品メニュー コンテンツ（lowpage-contents 内）
   ※ 既存 .page-products ブロック内に追加
   ========================================================= */
.page-products {
  /* 追従タブをビューポート全幅にした際に出る横スクロールを抑制
    （overflow: clip はスクロールコンテナを作らないので position: sticky は維持される） */
}
.page-products .lowpage-contents {
  overflow-x: clip;
}
.page-products {
  /* このページの h2 見出し（Figma SP: 32px / バー 120×6） */
}
@media screen and (max-width: 768px) {
  .page-products .section-title {
    font-size: 8.5333333333vw;
    padding-top: 6.9333333333vw;
  }
  .page-products .section-title::after {
    width: 32vw;
    height: 1.6vw;
  }
}
.page-products {
  /* 共通ボタン（カード/特集用・.btn とは別サイズ） */
}
.page-products .menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  color: #fff;
  background-color: #a3c435;
}
@media screen and (max-width: 768px) {
  .page-products .menu-btn {
    min-height: 11.7333333333vw;
    font-size: 4.2666666667vw;
    gap: 2.6666666667vw;
    padding: 2.6666666667vw 4.2666666667vw;
  }
}
.page-products .menu-btn img {
  width: 10px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-btn img {
    width: 3.2vw;
  }
}
.page-products .menu-btn.--brown {
  background-color: #6e2925;
}
.page-products .menu-btn.--mauve {
  background-color: #a87f7c;
  min-height: 56px;
  font-size: 1.7rem;
  padding: 10px 36px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-btn.--mauve {
    min-height: 13.3333333333vw;
    font-size: 4.8vw;
  }
}
.page-products .menu-btn.--soldout {
  background-color: #b6b6b6;
  pointer-events: none;
}
.page-products {
  /* アレルギー注記 */
}
.page-products .menu-allergy {
  color: #bf0a00;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .page-products .menu-allergy {
    font-size: 4.2666666667vw;
  }
}
.page-products {
  /* ---- 注意リンク ---- */
}
.page-products .menu-notice {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-notice {
    margin-bottom: 5.3333333333vw;
  }
}
.page-products .menu-notice__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  border: 2px solid #d1e19a;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #222;
}
@media screen and (max-width: 768px) {
  .page-products .menu-notice__link {
    padding: 4.2666666667vw;
    font-size: 3.7333333333vw;
    gap: 2.6666666667vw;
  }
}
.page-products .menu-notice__link img {
  width: 8px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .page-products .menu-notice__link img {
    width: 1.8666666667vw;
  }
}
.page-products {
  /* ---- カテゴリータブ（上部追従） ---- */
}
.page-products .menu-tab {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 18px 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab {
    padding: 3.7333333333vw 14.9333333333vw 0 5.3333333333vw;
  }
}
.page-products .menu-tab.is-stuck {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.page-products .menu-tab__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab__list {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .page-products .menu-tab__list::-webkit-scrollbar {
    display: none;
  }
}
.page-products .menu-tab__list > li {
  position: relative;
  flex: 0 0 auto;
  /* 区切り線（PC） */
}
.page-products .menu-tab__list > li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 4px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab__list > li:not(:last-of-type)::after {
    display: none;
  }
}
.page-products .menu-tab__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px 14px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab__item {
    padding: 0 4.8vw 3.2vw;
    font-size: 3.7333333333vw;
    font-weight: 500;
    white-space: nowrap;
    gap: 1.6vw;
  }
}
.page-products .menu-tab__item {
  /* 下向き山括弧 */
}
.page-products .menu-tab__item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #9a9a9a;
  border-bottom: 2px solid #9a9a9a;
  transform: rotate(45deg);
  order: 2;
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab__item::before {
    width: 2.4vw;
    height: 2.4vw;
  }
}
.page-products .menu-tab__item {
  /* アクティブ下線（Figma: モーヴ #a87f7c の細線） */
}
.page-products .menu-tab__item.is-active::after {
  content: "";
  width: 88px;
  height: 2px;
  background-color: #a87f7c;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .page-products .menu-tab__item.is-active::after {
    width: 14.4vw;
    height: 2px;
  }
}
.page-products {
  /* ---- セクション ---- */
}
.page-products .menu-section {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-section {
    scroll-margin-top: 17.0666666667vw;
  }
}
.page-products .menu-section:not(:first-of-type) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-section:not(:first-of-type) {
    margin-top: 13.3333333333vw;
  }
}
.page-products .menu-section__head {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-section__head {
    margin-top: 9.0666666667vw;
  }
}
.page-products .menu-section__desc {
  margin-top: 34px;
  text-align: center;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .page-products .menu-section__desc {
    margin-top: 4.8vw;
    font-size: 4.2666666667vw;
    line-height: 1.875;
  }
}
.page-products {
  /* ---- 特集カード ---- */
}
.page-products .menu-feature {
  margin-top: 44px;
  display: flex;
  gap: 40px;
  padding: 30px;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature {
    margin-top: 6.4vw;
    flex-direction: column;
    gap: 5.3333333333vw;
    padding: 5.3333333333vw 4.2666666667vw;
  }
}
.page-products .menu-feature__img {
  flex: 0 0 44%;
  max-width: 44%;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__img {
    flex: none;
    max-width: 100%;
  }
}
.page-products .menu-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__img img {
    height: auto;
  }
}
.page-products .menu-feature__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-products .menu-feature__title {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__title {
    font-size: 6.4vw;
  }
}
.page-products .menu-feature__desc {
  margin-top: 20px;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__desc {
    margin-top: 4vw;
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
}
.page-products .menu-feature .menu-allergy {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature .menu-allergy {
    margin-top: 4vw;
  }
}
.page-products .menu-feature__btn {
  margin-top: auto;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__btn {
    margin-top: 5.3333333333vw;
    padding-top: 0;
  }
}
.page-products .menu-feature__btn .menu-btn {
  width: min(360px, 100%);
}
@media screen and (max-width: 768px) {
  .page-products .menu-feature__btn .menu-btn {
    width: 100%;
  }
}
.page-products {
  /* ---- カテゴリー（葉飾り見出し + グリッド） ---- */
}
.page-products .menu-cat {
  margin-top: 30px;
}
.page-products .menu-cat__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 56px 0 40px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #6e2925;
}
@media screen and (max-width: 768px) {
  .page-products .menu-cat__title {
    gap: 2.6666666667vw;
    margin: 8vw 0 5.3333333333vw;
    font-size: 5.8666666667vw;
  }
}
.page-products .menu-cat__title {
  /* 左右の葉飾り */
}
.page-products .menu-cat__title::before, .page-products .menu-cat__title::after {
  content: "";
  width: 150px;
  height: 34px;
  background-image: url("/assets/images/products/leaf.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* SP は Figma 専用の葉 SVG（#a87f7c ベイク済）に差し替え */
}
@media screen and (max-width: 768px) {
  .page-products .menu-cat__title::before, .page-products .menu-cat__title::after {
    width: 14.9333333333vw;
    height: 4.8vw;
    background-image: url("/assets/images/products/leaf-sp.svg");
  }
}
.page-products .menu-cat__title {
  /* SP は Figma に合わせ小さく傾ける（左右対称） */
}
@media screen and (max-width: 768px) {
  .page-products .menu-cat__title::before {
    transform: rotate(18deg);
  }
}
.page-products .menu-cat__title::after {
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .page-products .menu-cat__title::after {
    transform: scaleX(-1) rotate(18deg);
  }
}
.page-products {
  /* ---- 商品カードグリッド ---- */
}
.page-products .menu-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 20px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-cards {
    flex-direction: column;
    gap: 8vw;
  }
}
.page-products .menu-card {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #e2e2e2;
}
@media screen and (max-width: 1000px) {
  .page-products .menu-card {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .page-products .menu-card {
    width: 100%;
    padding: 6.4vw;
    border-color: #ccc;
  }
}
.page-products .menu-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card__img {
    margin-bottom: 4.2666666667vw;
  }
}
.page-products .menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .menu-card__title {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card__title {
    font-size: 4.8vw;
    margin-bottom: 3.2vw;
  }
}
.page-products .menu-card__prices {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card__prices {
    margin-bottom: 3.2vw;
  }
}
.page-products .menu-card__prices li {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card__prices li {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
}
.page-products .menu-card__note {
  margin-bottom: 22px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card__note {
    margin-bottom: 4.2666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.6;
    color: #333;
  }
}
.page-products .menu-card {
  /* アレルギー注記もカード内では下余白を合わせる */
}
.page-products .menu-card .menu-allergy {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .page-products .menu-card .menu-allergy {
    margin-bottom: 4.2666666667vw;
  }
}
.page-products .menu-card__btn {
  margin-top: auto;
}

.page-news-detail .news-detail__top {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__top {
    gap: 2.6666666667vw;
  }
}
.page-news-detail .news-detail__date {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__date {
    font-size: 2.9333333333vw;
  }
}
.page-news-detail .news-detail h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 20px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail h1 {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.page-news-detail .news-detail__body {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__body {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.page-news-detail .news-detail__body > * {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__body > * {
    margin-bottom: 2.6666666667vw;
  }
}
.page-news-detail .news-detail__body a.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 59px;
  max-width: 100%;
  padding: 10px 23px;
  background-color: #ffffff;
  border: 2px solid #a3c435;
  border-radius: 0;
  box-sizing: border-box;
  color: #222222;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
}
.page-news-detail .news-detail__body a.wp-block-button__link::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 24px;
  background: url("../images/icon-link-internal.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__body a.wp-block-button__link {
    gap: 1.0666666667vw;
    min-height: 11.2vw;
    padding: 1.6vw 2.6666666667vw;
    font-size: 3.2vw;
  }
  .page-news-detail .news-detail__body a.wp-block-button__link::after {
    width: 2.1333333333vw;
    height: 4.2666666667vw;
  }
}
.page-news-detail .news-detail__body a.wp-block-button__link[target=_blank]::after {
  width: 24px;
  height: 23px;
  background-image: url("../images/icon-link-external.svg");
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__body a.wp-block-button__link[target=_blank]::after {
    width: 4.2666666667vw;
    height: 4vw;
  }
}
.page-news-detail .news-detail__img-row {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__img-row {
    margin-top: 5.3333333333vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.page-news-detail .news-detail__img-row img {
  display: block;
  width: 460px;
  max-width: 48.4210526316%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 460/360;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__img-row img {
    width: 61.3333333333vw;
    max-width: 100%;
  }
}
.page-news-detail .news-detail__bottom {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__bottom {
    margin-top: 8vw;
  }
}
.page-news-detail .news-detail__bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__bottom ul {
    gap: 8vw;
  }
}
.page-news-detail .news-detail__bottom ul a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__bottom ul a {
    font-size: 3.2vw;
  }
}

.page-recruit .recruit01,
.page-recruit .recruit02,
.page-recruit .recruit03 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01,
  .page-recruit .recruit02,
  .page-recruit .recruit03 {
    margin-top: 8vw;
  }
}
.page-recruit .recruit01__box {
  margin-top: 63px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2.5423728814%;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box {
    margin-top: 8vw;
    flex-direction: column;
    gap: 4vw;
  }
}
.page-recruit .recruit01__box:first-of-type {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box:first-of-type {
    margin-top: 8vw;
  }
}
.page-recruit .recruit01__box > img {
  width: 32.2033898305%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box > img {
    width: 100%;
  }
}
.page-recruit .recruit01__box dl {
  flex: 0 0 auto;
  width: 30.5084745763%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box dl {
    width: 100%;
  }
}
.page-recruit .recruit01__box dl dt {
  padding: 20px 0;
  border-top: 1px solid rgba(110, 41, 37, 0.6);
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box dl dt {
    padding: 2.1333333333vw 0;
    font-size: 3.7333333333vw;
  }
}
.page-recruit .recruit01__box dl dd {
  margin-top: 20px;
  font-size: min(1.6vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box dl dd {
    margin-top: 4vw;
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit01__box dl dd > img {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.page-recruit .recruit02__table {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit02__table {
    margin-top: 8vw;
  }
}
.page-recruit .recruit03 ul {
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1.6949152542%;
}
@media screen and (max-width: 1200px) {
  .page-recruit .recruit03 ul {
    justify-content: center;
    flex-wrap: wrap;
    width: 580px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit03 ul {
    margin-top: 8vw;
    width: 100%;
    gap: 5.3333333333vw 6.6666666667vw;
  }
}
.page-recruit .recruit03 ul li {
  width: 260px;
  background-color: #f6f9eb;
  padding: 20px 5px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit03 ul li {
    width: calc(50% - 3.3333333333vw);
    font-size: 3.7333333333vw;
    min-height: 41.3333333333vw;
    padding: 6.6666666667vw 0.5333333333vw;
  }
}
.page-recruit .recruit03 ul li > div {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit03 ul li > div {
    min-height: 10.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.page-recruit .recruit03 ul li > div img {
  height: 48px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit03 ul li > div img {
    height: 8.5333333333vw;
  }
}
.page-recruit .recruit03 ul li:last-of-type > div img {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit03 ul li:last-of-type > div img {
    height: 10.6666666667vw;
  }
}
.page-recruit .area-contact {
  margin-top: 60px;
  padding: 40px 20px;
  border-radius: 10px;
  border: 2px solid #a3c435;
}
@media screen and (max-width: 768px) {
  .page-recruit .area-contact {
    margin-top: 8vw;
    padding: 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.page-recruit .area-contact p:first-of-type {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-recruit .area-contact p:first-of-type {
    font-size: 4.2666666667vw;
  }
}
.page-recruit .area-contact p:nth-of-type(2) {
  margin: 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 40px;
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-recruit .area-contact p:nth-of-type(2) {
    margin: 2.6666666667vw auto 0;
    font-size: 4.2666666667vw;
    display: block;
    width: fit-content;
  }
}
.page-recruit .area-contact p:nth-of-type(2) a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .page-recruit .area-contact p:nth-of-type(2) a {
    gap: 1.0666666667vw;
    font-size: 5.3333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.page-recruit .area-contact p:nth-of-type(2) a img {
  width: 26px;
}
@media screen and (max-width: 768px) {
  .page-recruit .area-contact p:nth-of-type(2) a img {
    width: 5.8666666667vw;
  }
}

.area-table > div {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
}
@media screen and (max-width: 768px) {
  .area-table > div {
    padding: 5.3333333333vw 0;
  }
}
.area-table > div:first-of-type {
  border-top: 1px solid rgba(110, 41, 37, 0.6);
}
.area-table dt {
  min-width: 220px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .area-table dt {
    font-size: 3.7333333333vw;
    min-width: 26.6666666667vw;
  }
}
.area-table dd {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .area-table dd {
    font-size: 3.2vw;
  }
}

.page-about .about-top p {
  margin-top: 41px;
  font-size: 2rem;
  line-height: 1.6;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-about .about-top p {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.page-about .about01 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-about .about01 {
    margin-top: 8vw;
  }
}
.page-about .about01__list {
  margin-top: 60px;
  display: flex;
  gap: 4.2372881356%;
}
@media screen and (max-width: 768px) {
  .page-about .about01__list {
    margin-top: 8vw;
    flex-direction: column;
    gap: 8vw;
  }
}
.page-about .about01__list li {
  width: 30.5084745763%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-about .about01__list li {
    width: 100%;
    display: block;
  }
}
.page-about .about01__item-top {
  border-top: 1px solid rgba(110, 41, 37, 0.6);
  border-bottom: 1px solid rgba(110, 41, 37, 0.6);
  padding: 0 5px 20px;
}
@media screen and (max-width: 768px) {
  .page-about .about01__item-top {
    padding: 0 1.3333333333vw 2.6666666667vw;
  }
}
.page-about .about01__item-top > span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 9px 20px;
  font-weight: bold;
  color: #fff;
  background-color: #a87f7c;
  font-size: min(1.3559322034vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page-about .about01__item-top > span {
    padding: 1.6vw 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
.page-about .about01__item-top h3 {
  font-size: min(2.0338983051vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page-about .about01__item-top h3 {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.page-about .about01__item-desc {
  padding: 20px 20px 25px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-about .about01__item-desc {
    padding: 2.6666666667vw 0 4vw;
    font-size: 3.2vw;
  }
}
.page-about .about01__item-img {
  margin-top: auto;
}
.page-about .about02 {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .page-about .about02 {
    margin-top: 13.3333333333vw;
  }
}
.page-about .about02__desc {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-about .about02__desc {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
    font-weight: normal;
  }
}
.page-about .about02__box {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 5.0847457627%;
}
@media screen and (max-width: 768px) {
  .page-about .about02__box {
    flex-direction: column;
    gap: 4vw;
    margin-top: 8vw;
  }
}
.page-about .about02__box > img {
  width: 52.5423728814%;
}
@media screen and (max-width: 768px) {
  .page-about .about02__box > img {
    width: 100%;
  }
}
.page-about .about02__box h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-about .about02__box h3 {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-about .about02__box p {
    font-size: 3.2vw;
  }
}
.page-about .about02__btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page-about .about02__btn {
    margin-top: 4vw;
  }
}
.page-about .about02__btn a {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  border: 2px solid #a3c435;
}
@media screen and (max-width: 768px) {
  .page-about .about02__btn a {
    padding: 2.6666666667vw 4.5333333333vw;
    gap: 2.1333333333vw;
    font-size: 3.7333333333vw;
    margin: 0 auto;
  }
}
.page-about .about02__btn a img {
  width: 8px;
}
@media screen and (max-width: 768px) {
  .page-about .about02__btn a img {
    width: 2.1333333333vw;
  }
}
.page-about .about03 {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .page-about .about03 {
    margin-top: 13.3333333333vw;
  }
}
.page-about .about03__title {
  aspect-ratio: 1180/420;
  background-image: url("/assets/images/about/bg-about.webp");
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-about .about03__title {
    aspect-ratio: 334/119;
  }
}
.page-about .about03__title h2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  font-size: 3.2rem;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-about .about03__title h2 {
    font-size: 4.2666666667vw;
    padding: 2.4vw;
  }
}
.page-about .about03__box {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 5.9322033898%;
}
@media screen and (max-width: 768px) {
  .page-about .about03__box {
    margin-top: 8vw;
    flex-direction: column;
    gap: 8vw;
  }
}
.page-about .about03__box dl {
  width: 55.0847457627%;
}
@media screen and (max-width: 768px) {
  .page-about .about03__box dl {
    width: 100%;
  }
}
.page-about .about03__box dl dt {
  width: min(18.3333333333vw, 220px);
}
@media screen and (max-width: 768px) {
  .page-about .about03__box dl dt {
    width: 26.6666666667vw;
  }
}
.page-about .about03__box > img {
  width: 38.9830508475%;
}
@media screen and (max-width: 768px) {
  .page-about .about03__box > img {
    width: 100%;
  }
}
.page-about .about04 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-about .about04 {
    margin-top: 13.3333333333vw;
  }
}
.page-about .about04 h2 {
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-about .about04 h2 {
    font-size: 4.2666666667vw;
  }
}
.page-about .about04__table {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-about .about04__table {
    margin-top: 8vw;
  }
}

/* 商品メニュー(products)ページ MV背景 */
.lowpage .mv.--products {
  background-image: url("/assets/images/products/bg-mv.jpg");
}

@media screen and (max-width: 768px) {
  .fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background-color: #dcdcdc;
    padding: 2.1333333333vw 3.4666666667vw;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  body.js-menu-open .fixed-cta {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  }
  .fixed-cta .btn {
    width: 45.3333333333vw;
    min-height: 11.7333333333vw;
  }
}
