/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.js-fadeInItem {
  opacity: 0;
  transition: opacity 1s ease-out, translate 1s ease-out;
}
.js-fadeInItem.is-active {
  opacity: 1;
}

.js-fadeInUpItem {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 1s ease-out, translate 1s ease-out;
}
@media screen and (max-width: 767px) {
  .js-fadeInUpItem {
    translate: 0 30px;
  }
}
.js-fadeInUpItem.is-active {
  opacity: 1;
  translate: 0 0;
}

.js-fadeInChild {
  opacity: 0;
  transition: opacity 1s ease-out, translate 1s ease-out;
}
.is-active .js-fadeInChild {
  opacity: 1;
}

.js-fadeInUpChild {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 1s ease-out, translate 1s ease-out;
}
@media screen and (max-width: 767px) {
  .js-fadeInUpChild {
    translate: 0 30px;
  }
}
.is-active .js-fadeInUpChild {
  opacity: 1;
  translate: 0 0;
}

html {
  font-size: 62.5%;
}

body {
  background: #f7dfa6;
  color: #000;
  font-family: "tbudmincho-std", "Noto Serif JP", serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  overflow-x: clip;
}
body.is-fixed {
  overflow-y: hidden;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 65px;
  }
}

.l-inner {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: min(3.9vw, 75px);
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding-inline: 30px;
  }
}

.c-lower-header {
  padding-top: min(15vw, 120px);
}

.c-heading-title {
  line-height: 1;
  text-align: center;
}
.c-heading-title .-en {
  font-family: "mr-gabe", sans-serif;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .c-heading-title .-en {
    font-size: 3.2rem;
  }
}
.c-heading-title .-jp {
  margin-top: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-heading-title .-jp {
    font-size: 1.5rem;
  }
}

.c-products-card {
  text-align: center;
}
.c-products-card a {
  display: block;
}

.c-products-card__img {
  overflow: hidden;
}
.c-products-card__img img {
  transition: scale 0.5s ease;
}
a:hover .c-products-card__img img {
  scale: 1.05;
  transition: scale 0.8s ease;
}

.c-products-card__name {
  position: relative;
  margin-top: 5px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-products-card__name {
    font-size: min(3vw, 1.8rem);
  }
}
@media screen and (min-width: 768px) {
  .c-products-card__name:has(.c-product-icon) {
    padding-inline: 65px;
  }
}
@media screen and (min-width: 768px) {
  .c-products-card__name .c-product-icon {
    position: absolute;
    top: 8px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-products-card__name .c-product-icon {
    display: block;
    margin-inline: auto;
  }
}

.c-takeout-card {
  text-align: center;
}
.c-takeout-card a {
  display: block;
}
.c-takeout-card .c-product-name-icon {
  display: inline-block;
}
.c-takeout-card .c-product-item-price {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-takeout-card .c-product-item-price__num {
    font-size: min(3.8vw, 1.8rem);
  }
}

.c-takeout-card__shop {
  margin-bottom: 10px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-takeout-card__shop {
    font-size: 1.8rem;
  }
}

.c-takeout-card__name {
  margin-block: 20px 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-takeout-card__name {
    margin-block: 16px 12px;
    font-size: min(3.5vw, 1.8rem);
  }
}

.c-takeout-card__desc {
  padding-inline: 25px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-takeout-card__desc {
    font-size: min(2.9vw, 1.4rem);
    padding-inline: 0;
  }
}

:where(.c-box-section) {
  padding-block: min(15vw, 120px);
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  :where(.c-box-section) {
    scroll-margin-top: 65px;
  }
}
:where(.c-box-section).-bg-color02 {
  background: #f3cf75;
}
:where(.c-box-section).-bg-alternately:nth-of-type(even) {
  background: #f3cf75;
}

.c-news-card {
  display: block;
  height: 100%;
  padding: 30px 5px;
  font-size: min(3vw, 1.6rem);
  line-height: 1.6;
}
.c-news-card .-title {
  margin-top: 8px;
  padding-inline: 10px;
}
.c-news-card .-title .-important {
  display: inline-block;
  margin-right: 8px;
  padding: 0 8px;
  color: #fff;
  background: #d63916;
}

a.c-news-card {
  transition: opacity 0.3s ease;
}
a.c-news-card:hover {
  opacity: 0.5;
}

.c-shop-card a {
  display: block;
}

.c-shop-card__img {
  overflow: hidden;
}
.c-shop-card__img img {
  transition: scale 0.5s ease;
}
a:hover .c-shop-card__img img {
  scale: 1.03;
  transition: scale 1s ease;
}

.c-shop-card__name {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.3;
}
.c-shop-card__name .-en {
  font-family: "mr-gabe", sans-serif;
  font-size: 75%;
}
@media screen and (max-width: 767px) {
  .c-shop-card__name {
    font-size: min(3vw, 1.8rem);
  }
}

.c-slider-controller {
  display: grid;
  grid-template-columns: 22px max-content 22px;
  align-items: center;
  justify-content: center;
  gap: min(5vw, 30px);
}
@media screen and (max-width: 767px) {
  .c-slider-controller {
    grid-template-columns: 22px 1fr 22px;
  }
}

.c-slider-arrow-prev,
.c-slider-arrow-next {
  cursor: pointer;
  width: 22px;
  height: 22px;
  background: url(../images/common/ico_arrow.svg) no-repeat center center/contain;
}

.c-slider-arrow-next {
  rotate: 180deg;
}

.c-slider-pagenation.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
}
.c-slider-pagenation.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10vw;
  max-width: 70px;
  height: 3px;
  margin: 0;
  border-radius: 0;
  opacity: 1;
  background: #fdf4e0;
}
.c-slider-pagenation.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #000;
}

.c-slider-caption {
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-slider-caption {
    margin-top: 8px;
    font-size: 1.3rem;
  }
}

.c-product-icon {
  --corner: 15px;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 24px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: #f7dfa6;
  background-color: #d63916;
  clip-path: polygon(calc(0% + var(--corner)) 0, calc(100% - var(--corner)) 0, 100% 50%, calc(100% - var(--corner)) 100%, calc(0% + var(--corner)) 100%, 0 50%);
}
.c-product-icon.-small {
  --corner: 10px;
  padding: 3px 15px;
  font-size: min(3vw, 1.5rem);
}

.c-product-icon-group {
  margin-bottom: 15px;
}

.c-product-icon-text {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #d63916;
}
@media screen and (max-width: 767px) {
  .c-product-icon-text {
    font-size: 1.5rem;
  }
}

.c-modal {
  position: fixed;
  top: 126px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100dvh - 126px);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-modal {
    top: 65px;
    padding: 40px 15px;
    height: calc(100dvh - 65px);
  }
}

.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.c-modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .c-modal-container {
    width: 100%;
  }
}

.c-modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modal-close {
    top: -25px;
    right: -10px;
  }
}
.c-modal-close::before, .c-modal-close::after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 2px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #fff;
  transition: 0.2s ease;
}
.c-modal-close::before {
  rotate: 45deg;
}
.c-modal-close::after {
  rotate: -45deg;
}

.c-modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
  max-height: calc(100dvh - 126px - 60px);
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .c-modal-content {
    max-height: calc(100dvh - 65px - 40px);
  }
}

.c-modal-shop-info {
  line-height: 1.6;
}

.c-modal-shop-info__map {
  margin-top: 10px;
}
.c-modal-shop-info__map iframe {
  width: 100%;
  height: 200px;
}

.c-modal-shop-info__name {
  margin-top: 15px;
  font-size: 1.5rem;
}

.c-modal-shop-info__address,
.c-modal-shop-info__time {
  margin-top: 8px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-modal-shop-info__address,
  .c-modal-shop-info__time {
    font-size: 1.3rem;
  }
}

.c-box-news {
  max-width: 960px;
  margin-inline: auto;
  padding: 60px 80px;
  background: #fdf4e0;
}
@media screen and (max-width: 767px) {
  .c-box-news {
    padding: 30px 20px;
    font-size: 1.4rem;
  }
}

.c-box-news__title {
  font-size: 3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-box-news__title {
    font-size: 2.5rem;
  }
}

.c-box-news__heading {
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-box-news__heading {
    font-size: 1.6rem;
  }
}

.p-product-grid, .p-product-seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 15px));
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-product-grid, .p-product-seasonal-grid {
    grid-template-columns: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-product-grid, .p-product-seasonal-grid {
    grid-template-rows: max-content 1fr;
  }
}

.p-product-grid-main {
  opacity: 0;
  transition: opacity 1s ease-out, translate 1s ease-out;
}

.p-product-grid-thumb {
  opacity: 0;
  transition: opacity 1s ease-out, translate 1s ease-out;
}
@media screen and (min-width: 1100px) {
  .p-product-grid-thumb {
    translate: 0 40px;
    transition-delay: 0.5s;
  }
}
.p-product-grid-thumb .c-slider-caption {
  display: none;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1100px) {
  .p-product-grid-detail {
    transition-delay: 0.5s;
  }
}

.is-active .p-product-grid-main,
.is-active .p-product-grid-thumb {
  opacity: 1;
  translate: 0 0;
}

@media screen and (min-width: 768px) {
  .p-product-grid-main {
    grid-row: 1/2;
    align-self: start;
  }
}
@media screen and (min-width: 1100px) {
  .p-product-grid-main {
    grid-row: 1/3;
  }
}

.p-product-grid-thumb {
  position: relative;
}
.p-product-grid-thumb img {
  aspect-ratio: 190/150;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-grid-thumb .swiper-slide {
  position: relative;
}
.p-product-grid-thumb .swiper-slide:hover {
  cursor: pointer;
}
.p-product-grid-thumb .swiper-slide::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s ease;
  border: 5px solid transparent;
}
@media screen and (max-width: 767px) {
  .p-product-grid-thumb .swiper-slide::before {
    border-width: 3px;
  }
}
.p-product-grid-thumb .swiper-slide.swiper-slide-thumb-active::before {
  border-color: #e9b000;
}
@media screen and (min-width: 768px) {
  .p-product-grid-thumb {
    grid-row: 2/3;
    align-self: start;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .p-product-grid-thumb {
    grid-row: 2/3;
    align-self: end;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-grid-thumb {
    margin-block: 10px 30px;
  }
}
.p-product-grid-thumb .c-slider-arrow-prev,
.p-product-grid-thumb .c-slider-arrow-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.p-product-grid-thumb .c-slider-arrow-prev {
  left: 2px;
}
.p-product-grid-thumb .c-slider-arrow-next {
  right: 2px;
}

.p-product-grid-thumb__slider {
  margin-inline: 30px;
}

@media screen and (min-width: 768px) {
  .p-product-grid-detail {
    grid-row: 1/3;
  }
}
@media screen and (min-width: 1100px) {
  .p-product-grid-detail {
    grid-row: 1/2;
  }
}

.p-product-grid-detail__name .-en {
  font-family: "mr-gabe", sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.p-product-grid-detail__name .-en small {
  display: inline-block;
  font-size: 70%;
}
@media screen and (max-width: 767px) {
  .p-product-grid-detail__name .-en {
    font-size: 3.2rem;
  }
}
.p-product-grid-detail__name .-jp {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.p-product-grid-detail__desc, .p-product-seasonal-grid-detail__desc {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-product-grid-detail__desc, .p-product-seasonal-grid-detail__desc {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.p-product-grid-detail__note {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 5px;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.c-product-item-price {
  line-height: 1.5;
}
.c-product-item-price + .c-product-item-price {
  margin-top: 8px;
}

.c-product-item-price-column .c-product-item-price + .c-product-item-price {
  margin-top: 20px;
}

.c-product-item-price-row .c-product-item-price {
  margin-top: 20px;
}
@media screen and (min-width: 1100px) {
  .c-product-item-price-row {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: start;
    justify-content: start;
    gap: 30px;
  }
  .c-product-item-price-row .c-product-item-price,
  .c-product-item-price-row .c-product-item-price + .c-product-item-price {
    margin-top: 0;
  }
  .c-product-item-price-row + .c-product-item-price-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #000;
  }
}

.c-product-item-price__name {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.c-product-item-price__name .-square {
  display: inline-block;
  padding: 0 10px;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #000;
}
.c-product-item-price__name .-main {
  display: block;
  width: 100%;
  margin-top: 3px;
}

.c-product-item-price__num {
  font-size: 1.8rem;
  line-height: 1;
}
.c-product-item-price__num span:not(.u-comma) {
  font-family: "baskerville-urw", "Cormorant Infant", serif;
  font-size: 170%;
  font-weight: 400;
}
.c-product-item-price__num .u-comma {
  font-size: 90%;
}

.c-product-item-price__detail {
  margin-top: 10px;
  font-size: 1.2rem;
}

.c-product-name-icon {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 4px;
  padding: 0 10px;
  font-size: 1.2rem;
  color: #f7dfa6;
  background: #000;
  border-radius: 20px;
  border: 1px solid transparent;
}
.c-product-name-icon.-limited {
  color: #000;
  background: transparent;
  border-color: currentColor;
}
.c-product-name-icon.-square {
  color: #000;
  background: transparent;
  border-color: currentColor;
  border-radius: 0;
}

.p-products-takeout-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  gap: 60px min(3.4vw, 60px);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-products-takeout-list {
    row-gap: 40px;
  }
  .p-products-takeout-list .c-takeout-card:nth-child(even) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .p-products-takeout-list :where(.c-takeout-card:nth-child(even)) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 1100px) {
  .p-products-takeout-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-products-takeout-list :where(.c-takeout-card:nth-child(even)) {
    transition-delay: 0s;
  }
  .p-products-takeout-list .c-takeout-card:nth-child(2),
  .p-products-takeout-list .c-takeout-card:nth-child(5) {
    transition-delay: 0.3s;
  }
  .p-products-takeout-list .c-takeout-card:nth-child(3),
  .p-products-takeout-list .c-takeout-card:nth-child(6) {
    transition-delay: 0.6s;
  }
}
.p-products-takeout-list .c-takeout-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
}
.p-products-takeout-list .c-takeout-card__name {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-products-takeout-list .c-product-item-price__detail {
    font-size: min(2.5vw, 1.4rem);
  }
}

.p-products-seasonal-list {
  margin-top: 50px;
}
.p-products-seasonal-list .c-slider-controller {
  margin-top: 30px;
}

.p-products-seasonal-box {
  background: #fdf4e0;
}

.p-product-seasonal-grid {
  padding: min(5vw, 50px);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-product-seasonal-grid {
    grid-template-columns: repeat(2, calc(50% - 25px));
  }
}

.p-product-seasonal-grid-detail__name {
  margin-top: 20px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-product-seasonal-grid-detail__name {
    font-size: 1.8rem;
  }
}

.p-product-seasonal-grid-detail__desc {
  margin-top: 20px;
}

.p-top-mainvisual__img {
  height: 100dvh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__img {
    height: calc(100dvh - 65px);
    max-height: 120vw;
  }
}
.p-top-mainvisual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1.1;
}
.p-top-mainvisual__img img.-top {
  -o-object-position: top center;
     object-position: top center;
}

.p-top-mainvisual__text {
  position: absolute;
  top: 50%;
  text-align: center;
}
.p-top-mainvisual__text .c-product-icon {
  font-size: 1.2vw;
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__text .c-product-icon {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}

.p-top-mainvisual__text-title {
  font-family: "mr-gabe", sans-serif;
  line-height: 1.1;
  font-weight: 400;
  color: #231815;
}

.p-top-mainvisual__item {
  position: relative;
}
.p-top-mainvisual__item.-slide01 .p-top-mainvisual__logo {
  position: absolute;
  top: 6.7%;
  left: 50%;
  translate: -50% 0;
  width: 15.1041666667%;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide01 .p-top-mainvisual__logo {
    width: 32.8767123288%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide01 .p-top-mainvisual__img img {
    -o-object-position: 65% 0;
       object-position: 65% 0;
  }
}
.p-top-mainvisual__item.-slide02 .p-top-mainvisual__logo {
  position: absolute;
  top: 50%;
  left: 7.8125%;
  translate: 0 -50%;
  width: 29.375%;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide02 .p-top-mainvisual__logo {
    width: 60%;
  }
}
.p-top-mainvisual__item.-slide04 .p-top-mainvisual__logo {
  position: absolute;
  top: 50%;
  left: 5.7291666667%;
  translate: 0 -50%;
  width: 33.6458333333%;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide04 .p-top-mainvisual__logo {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide04 .p-top-mainvisual__img img {
    -o-object-position: 70% 0;
       object-position: 70% 0;
  }
}
.p-top-mainvisual__item.-slide05 .p-top-mainvisual__text {
  top: 50%;
  left: 5.7291666667%;
  translate: 0 -50%;
}
.p-top-mainvisual__item.-slide05 .p-top-mainvisual__text-title {
  font-size: 3.5vw;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__item.-slide05 .p-top-mainvisual__text-title {
    font-size: 6.8vw;
  }
}

.is-animated .p-top-mainvisual__img img {
  animation: mvSlide 7s linear;
}

@keyframes mvSlide {
  0% {
    translate: 3.5% 0;
  }
  100% {
    translate: -3.5% 0;
  }
}
.p-top-introduction {
  padding-block: min(20vw, 120px);
  text-align: center;
  background: #e9b000;
}

.p-top-introduction__logo {
  width: 40vw;
  max-width: 364px;
  margin-inline: auto;
}

.p-top-introduction__desc {
  margin-top: min(10vw, 50px);
  font-size: min(3.5vw, 2.4rem);
  line-height: 2.5;
}

.p-top-products {
  padding-block: min(15vw, 120px);
}

.p-top-products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(3.4vw, 60px);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-products-list .c-products-card:nth-child(even) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .p-top-products-list :where(.c-products-card:nth-child(even)) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 1100px) {
  .p-top-products-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-top-products-list :where(.c-products-card:nth-child(even)) {
    transition-delay: 0s;
  }
  .p-top-products-list .c-products-card:nth-child(2),
  .p-top-products-list .c-products-card:nth-child(5) {
    transition-delay: 0.3s;
  }
  .p-top-products-list .c-products-card:nth-child(3),
  .p-top-products-list .c-products-card:nth-child(6) {
    transition-delay: 0.6s;
  }
}

.p-top-news {
  padding-block-start: min(12vw, 80px);
  background: #e9b000;
}
.p-top-news:first-child {
  background: none;
}

.p-top-news-list {
  margin-top: 50px;
}

.p-top-news-list__wrap {
  align-items: stretch;
  margin-bottom: 30px;
}

.p-top-news-list__item {
  height: auto;
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
}

.p-top-shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(3.4vw, 40px);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-shop-list {
    margin-top: 40px;
  }
}
.p-top-shop-list .c-shop-card:nth-child(even) {
  transition-delay: 0.3s;
}

.p-top-event {
  background-image: repeating-linear-gradient(45deg, #e9911e 0px, #e9911e 3px, transparent 3px, transparent 112px), repeating-linear-gradient(-45deg, #e9911e 0px, #e9911e 3px, transparent 3px, transparent 112px);
  background-color: #f5d15e;
}
@media screen and (max-width: 767px) {
  .p-top-event {
    background-image: repeating-linear-gradient(45deg, #e9911e 0px, #e9911e 2px, transparent 2px, transparent 64px), repeating-linear-gradient(-45deg, #e9911e 0px, #e9911e 2px, transparent 2px, transparent 64px);
  }
}

.p-top-event-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 0;
  width: 100%;
  max-width: 900px;
  margin-top: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-event-list {
    grid-template-columns: max-content 1fr;
    margin-top: 50px;
  }
}

.p-top-event-row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 0 min(60px, 5vw);
  padding: min(15px, 3vw) min(90px, 5vw);
  font-size: min(3vw, 1.7rem);
  line-height: 1.6;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
}
.p-top-event-row dt {
  text-align: center;
  font-size: 110%;
}
@media screen and (max-width: 767px) {
  .p-top-event-row dt {
    grid-row: span 2;
    padding: 0 10px;
  }
}

.js-endTimerElms.-end {
  display: none;
  visibility: hidden;
}

.s-header {
  z-index: 1000;
  position: sticky;
  top: 0;
  width: 100%;
  height: 126px;
  padding-right: min(3.9vw, 75px);
  padding-left: min(3.9vw, 90px);
  color: #fff;
  background: #231815;
}
@media screen and (max-width: 767px) {
  .s-header {
    position: fixed;
    height: 65px;
    padding: 0;
  }
}

.s-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .s-header__inner {
    grid-template-columns: 100%;
    justify-content: center;
  }
}

.s-header__logo-img {
  width: min(15vw, 195px);
}
@media screen and (max-width: 767px) {
  .s-header__logo-img {
    width: 96px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .s-header__button {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .s-header__button {
    position: absolute;
    top: 50%;
    left: 20px;
    translate: 0 -50%;
  }
}
.s-header__button button {
  position: relative;
  display: block;
  width: 36px;
  height: 30px;
}
.s-header__button button::before, .s-header__button button::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #fff;
  transition: 0.2s ease;
}
.s-header__button button::before {
  top: 6px;
  transform-origin: top left;
}
.s-header__button button::after {
  bottom: 6px;
  transform-origin: bottom left;
}

.is-active .s-header__button button::before {
  top: 2px;
  left: 6px;
  rotate: 45deg;
}
.is-active .s-header__button button::after {
  bottom: 2px;
  left: 6px;
  rotate: -45deg;
}

.s-header__menu {
  height: 100%;
  line-height: 1;
}
.s-header__menu a {
  transition: opacity 0.3s ease;
}
.s-header__menu a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .s-header__menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 65px);
    background: #f7dfa6;
    overflow-y: auto;
  }
}

.s-header__menu-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .s-header__menu-inner {
    display: block;
    padding: 60px 0;
    height: auto;
  }
}

.s-header__menu-list {
  display: flex;
  align-items: center;
  gap: min(3vw, 30px);
  height: 100%;
  font-family: "mr-gabe", sans-serif;
  font-size: min(2.5vw, 2.6rem);
}
@media screen and (max-width: 767px) {
  .s-header__menu-list {
    flex-direction: column;
    gap: min(10vw, 50px);
    color: #000;
    text-align: center;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .s-header__sns-list {
    position: absolute;
    top: 35px;
    right: 35px;
  }
}
.s-header__sns-list .c-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media screen and (max-width: 767px) {
  .s-header__sns-list .c-icon {
    width: 22px;
    height: 22px;
    fill: #000;
  }
}

.s-footer {
  z-index: 1000;
  width: 100%;
  height: 460px;
  padding-right: min(3.9vw, 75px);
  padding-left: min(3.9vw, 90px);
  background: #e9b000;
}
@media screen and (max-width: 767px) {
  .s-footer {
    height: auto;
    padding-block: 50px;
  }
}

.s-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding-top: 75px;
}
@media screen and (max-width: 767px) {
  .s-footer__inner {
    display: block;
    padding-top: 0;
  }
}

.s-footer__logo-img {
  width: min(15vw, 195px);
}
@media screen and (max-width: 767px) {
  .s-footer__logo-img {
    width: 96px;
    margin-inline: auto;
  }
}

.s-footer__menu {
  height: 100%;
  line-height: 1;
}
.s-footer__menu a {
  transition: opacity 0.3s ease;
}
.s-footer__menu a:hover {
  opacity: 0.5;
}
.s-footer__menu-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .s-footer__menu-inner {
    display: block;
  }
}

.s-footer__menu-list {
  display: flex;
  align-items: center;
  gap: min(3vw, 30px);
  height: 100%;
  font-family: "mr-gabe", sans-serif;
  font-size: min(2.5vw, 2.6rem);
}
@media screen and (max-width: 767px) {
  .s-footer__menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 20px;
    font-size: min(3.8vw, 2rem);
  }
}

.s-footer__sns-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .s-footer__sns-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}
.s-footer__sns-list .c-icon {
  width: 30px;
  height: 30px;
}

.s-footer__copyright {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .s-footer__copyright {
    margin-top: 20px;
    font-size: 1.2rem;
    text-align: center;
  }
}

.s-footer__contactArea {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .s-footer__contactArea {
    align-items: center;
  }
}

.s-footer__contactArea-tel a {
  pointer-events: none;
}
.s-footer__contactArea-tel a span {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .s-footer__contactArea-tel a {
    pointer-events: auto;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-comma {
  font-family: "dalliance-script", "Cormorant Infant", serif;
}

.u-amp {
  font-family: "baskerville-urw", "Cormorant Infant", serif;
}