@charset "UTF-8";
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* #Typography
----------------------------------------------------------------- */
body,
html {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.78125vw;
}
@media screen and (min-width: 1280px) {
  body,
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px ) {
  body,
  html {
    font-size: 1.3333333333vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  background: #f5f3ee;
}
body * {
  box-sizing: border-box;
}

svg {
  width: 100%;
  height: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  display: block;
}

ul li {
  list-style: none;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}
/* #header
----------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #e70012;
  display: flex;
  align-items: center;
  z-index: 5000;
}
@media screen and (max-width: 767px ) {
  .l-header {
    height: 9rem;
  }
}
.l-header__inner {
  width: 100%;
  box-sizing: border-box;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px ) {
  .l-header__inner {
    padding: 0 2.5rem;
  }
}
.l-header__logo {
  width: 49px;
}
@media screen and (max-width: 767px ) {
  .l-header__logo {
    width: 24.8rem;
  }
}
.l-header__sns {
  display: flex;
  align-items: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
@media screen and (max-width: 767px ) {
  .l-header__sns {
    -moz-column-gap: 1.1rem;
         column-gap: 1.1rem;
  }
}
.l-header__snsLine {
  width: 26px;
}
@media screen and (max-width: 767px ) {
  .l-header__snsLine {
    width: 4.4rem;
  }
}
.l-header__snsX {
  width: 20px;
}
@media screen and (max-width: 767px ) {
  .l-header__snsX {
    width: 3.5rem;
  }
}

/* #main
----------------------------------------------------------------- */
.l-main {
  margin-top: 55px;
  width: 100%;
}
@media screen and (max-width: 767px ) {
  .l-main {
    margin-top: 9rem;
  }
}
.l-main__inner {
  width: 100%;
}
@media screen and (max-width: 767px ) {
  .l-main__inner {
    width: 100%;
  }
}

/* #footer
----------------------------------------------------------------- */
.l-footer {
  width: 100%;
  background: #e70012;
  padding-block: 5rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .l-footer {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.l-footer__button {
  width: 40rem;
  margin-inline: auto;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3));
  transform: translateY(0);
  transition: all 0.3s;
}
@media screen and (max-width: 767px ) {
  .l-footer__button {
    width: 70rem;
  }
}
.l-footer__button:hover {
  transform: translateY(0.3rem);
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.3));
}
.l-footer__copyright {
  margin-top: 3rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__copyright {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.4545454545;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 4rem;
  }
}
.l-footer__title01 {
  margin-top: 2rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 700;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__title01 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.625;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 3rem;
  }
}
.l-footer__title02 {
  margin-top: 3rem;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 0.8666666667;
  letter-spacing: 0em;
  font-weight: 700;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__title02 {
    font-size: 31px;
    font-size: 3.1rem;
    line-height: 1.2580645161;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 3rem;
  }
}
.l-footer__link {
  margin-top: 3rem;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px ) {
  .l-footer__link {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.7727272727;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 4rem;
  }
}
.l-footer__tel {
  margin-top: 3rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.7272727273;
  letter-spacing: 0em;
  font-weight: 700;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__tel {
    font-size: 37px;
    font-size: 3.7rem;
    line-height: 1.7567567568;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 5rem;
  }
}
.l-footer__text {
  margin-top: 0.5rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__text {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 1rem;
  }
}

/* #c-title
----------------------------------------------------------------- */
.c-title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #000000;
}
.c-title img {
  width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .c-title img {
    width: 100%;
  }
}
@media screen and (max-width: 767px ) {
  .c-title {
    width: 100%;
    margin: 0;
  }
}

/* #button  
----------------------------------------------------------------- */
.c-button {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  transition: opacity 0.3s;
  position: relative;
}
.c-button:hover {
  opacity: 0.75;
}
.c-button--close {
  pointer-events: none;
}
.c-button--close:after {
  content: "コラボキャンペーンは終了しました";
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  border-radius: 2.9rem;
  background: rgba(255, 255, 255, 0.7);
  color: #e70012;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .c-button--close:after {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    border-radius: 4rem;
  }
}
.c-button--close:hover {
  opacity: 1;
}

/* #gotop  
----------------------------------------------------------------- */
.c-gotop {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  display: none;
  z-index: 100;
}
.c-gotop a {
  display: block;
  width: 11rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(0);
  transition: all 0.3s;
}
.c-gotop a:hover {
  transform: translateY(-0.3rem);
}
@media screen and (max-width: 767px ) {
  .c-gotop {
    right: 2rem;
  }
  .c-gotop a {
    width: 11.2rem;
  }
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.is-active,
.js-loadEffect--fadeInUp.is-active {
  opacity: 1 !important;
  transform: translateY(0);
}
.js-scrollEffect--fadeInLeft,
.js-loadEffect--fadeInLeft {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(-10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInLeft.is-active,
.js-loadEffect--fadeInLeft.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--fadeInRight,
.js-loadEffect--fadeInRight {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInRight.is-active,
.js-loadEffect--fadeInRight.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--zoomIn,
.js-loadEffect--zoomIn {
  opacity: 0;
  transform: scale(1.2);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--zoomIn.is-active,
.js-loadEffect--zoomIn.is-active {
  opacity: 1;
  transform: scale(1);
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.is-active,
.js-loadEffect--fadeIn.is-active {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn,
.js-loadEffect--slideIn {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.is-active,
.js-loadEffect--slideIn.is-active {
  clip-path: inset(0 0 0 0);
}
.js-scrollEffect--slideIn2,
.js-loadEffect--slideIn2 {
  clip-path: polygon(0 0, 0 0%, 0% 0);
  will-change: clip-path;
  transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn2.is-active,
.js-loadEffect--slideIn2.is-active {
  clip-path: polygon(0 0, 0 200%, 200% 0);
}
.js-scrollEffect--bounceInDown,
.js-loadEffect--bounceInDown {
  opacity: 0;
  transform: translate3d(0, -6rem, 0) scaleY(1.2);
}
.js-scrollEffect--bounceInDown.is-active,
.js-loadEffect--bounceInDown.is-active {
  animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  width: 100%;
  height: 39.84375vw;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .p-mv {
    height: 56.3rem;
  }
}
.p-mv__image {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  filter: blur(2rem);
  transition: all 1.5s;
  position: relative;
}
.p-mv__image.is-active {
  transform: scale(1);
  filter: blur(0);
}
.p-mv__image.is-active .p-mv__title {
  transform: translateY(0);
  opacity: 1;
}
.p-mv__title {
  position: absolute;
  width: 52rem;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  top: 1.6rem;
  transform: translateY(-25%);
  opacity: 0;
  transition: transform 0.8s 0.8s cubic-bezier(0.67, -0.67, 0.26, 1.67), opacity 0.8s 0.8s cubic-bezier(0.67, -0.67, 0.26, 1.67);
}
@media screen and (max-width: 767px ) {
  .p-mv__title {
    width: 44.4rem;
    top: 6.7rem;
  }
}

/* #p-top
----------------------------------------------------------------- */
.p-top {
  width: 100%;
  padding: 3rem 0 6.5rem 0;
  background: url(../images/top_bg.jpg) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px ) {
  .p-top {
    padding: 4rem 0 7.5rem 0;
    background: url(../images/top_bg_sp.jpg) no-repeat center top/100% auto;
  }
}
.p-top__inner {
  width: 114rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-top__inner {
    width: 69.5rem;
  }
}
.p-top__navi {
  width: 98.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-top__navi {
    width: 100%;
  }
}
.p-top__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 32rem);
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-top__list {
    margin-inline: auto;
    grid-template-columns: repeat(2, 33.5rem);
  }
}
.p-top__item a {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-top__item a:hover {
  transform: translateY(0.4rem);
}
.p-top__content {
  width: 100%;
  margin-top: 9rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-top__content {
    margin-top: 9.5rem;
  }
}
.p-top__title {
  width: 47rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: -4rem;
}
.p-top__button {
  width: 54.3rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  opacity: 1;
}
@media screen and (max-width: 767px ) {
  .p-top__button {
    width: 59.7rem;
    bottom: 5.5rem;
  }
}

/* #p-store01
----------------------------------------------------------------- */
.p-food {
  width: 100%;
}
.p-food__inner {
  width: 100%;
  padding-block: 5.3rem 8rem;
  background: url(../images/food_bg.jpg) no-repeat top center/100% auto;
}
@media screen and (max-width: 767px ) {
  .p-food__inner {
    padding: 3rem 0 11rem 0;
    background: url(../images/food_bg_sp.jpg) no-repeat center -6.8rem/100% auto;
  }
}
.p-food__subtitle {
  width: 85.6rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-food__subtitle {
    width: 56.7rem;
    position: relative;
    left: 1.6rem;
  }
}
.p-food__block {
  width: 104.2rem;
  margin-top: 15rem;
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-food__block {
    width: 72.3rem;
    margin-top: 9rem;
    position: relative;
    left: 0.5rem;
  }
}
.p-food__block--01 .p-food__blockItem02 {
  width: 42.5rem;
  top: 39.7rem;
  right: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem02 {
    width: 35.9rem;
    top: 51rem;
  }
}
.p-food__block--01 .p-food__blockItem03 {
  width: 57.1rem;
  top: -13.5rem;
  left: -5.3rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem03 {
    width: 59.5rem;
    top: -7.6rem;
    left: -5.95rem;
  }
}
.p-food__block--01 .p-food__blockItem04 {
  width: 114.5rem;
  top: -7rem;
  left: -5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem04 {
    width: 80.4rem;
    top: 15.8rem;
    left: -2.6rem;
    rotate: -5deg;
  }
}
.p-food__block--01 .p-food__blockItem05 {
  width: 50.7rem;
  top: 53.7rem;
  left: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem05 {
    width: 50.7rem;
    top: 66.8rem;
    left: 2rem;
  }
}
.p-food__block--01 .p-food__blockItem06 {
  width: 40.5rem;
  top: 77.8rem;
  left: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem06 {
    width: 43.5rem;
    top: 93.1rem;
    left: 2.8rem;
  }
}
.p-food__block--01 .p-food__blockItem07 {
  width: 45.7rem;
  top: 87rem;
  left: 5.2rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem07 {
    width: 65.2rem;
    top: 103rem;
    left: 2.6rem;
  }
}
.p-food__block--01 .p-food__blockItem08 {
  width: 23.8rem;
  top: 80rem;
  left: 50rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem08 {
    width: 22.3rem;
    top: 83.4rem;
    left: 47.3rem;
  }
}
.p-food__block--01 .p-food__blockCaption {
  top: 101.2rem;
  left: 5.3rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockCaption {
    top: 185rem;
    left: 3.3rem;
  }
}
.p-food__block--01 .p-food__blockItem09 {
  width: 25.4rem;
  top: 74.5rem;
  right: 4.3rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem09 {
    width: 64.3rem;
    top: 122.6rem;
  }
}
.p-food__block--01 .p-food__blockItem10 {
  width: 25.4rem;
  top: 102.3rem;
  right: 10rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--01 .p-food__blockItem10 {
    width: 53.6rem;
    top: auto;
    bottom: 1.8rem;
    left: 7rem;
    right: auto;
  }
}
.p-food__block--02 {
  width: 104.9rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 {
    width: 72.4rem;
    margin-top: 13rem;
    position: relative;
    left: 0.3rem;
  }
}
.p-food__block--02 .p-food__blockItem02 {
  width: 41.3rem;
  top: 39.4rem;
  right: -2.5rem;
  left: auto;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem02 {
    width: 36.8rem;
    top: 50.5rem;
    right: 0rem;
  }
}
.p-food__block--02 .p-food__blockItem03 {
  width: 61rem;
  top: -16.5rem;
  left: -2.8rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem03 {
    width: 61rem;
    top: -12rem;
    left: -0.6rem;
  }
}
.p-food__block--02 .p-food__blockItem04 {
  width: 117.1rem;
  top: -7rem;
  left: -5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem04 {
    width: 82.2rem;
    top: 15.8rem;
    left: -3.8rem;
    rotate: -5deg;
  }
}
.p-food__block--02 .p-food__blockItem05 {
  width: 60.3rem;
  top: 55.4rem;
  left: 4.5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem05 {
    width: 66rem;
    top: 66.8rem;
    left: 2rem;
  }
}
.p-food__block--02 .p-food__blockItem06 {
  width: 40.5rem;
  top: 79.8rem;
  left: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem06 {
    width: 43.5rem;
    top: 95.6rem;
    left: 2.8rem;
  }
}
.p-food__block--02 .p-food__blockItem07 {
  width: 42.5rem;
  top: 88.8rem;
  left: 5.2rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem07 {
    width: 64.7rem;
    top: 106rem;
    left: 2.6rem;
  }
}
.p-food__block--02 .p-food__blockItem08 {
  width: 23.8rem;
  top: 80rem;
  left: 50rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem08 {
    width: 22.3rem;
    top: 87rem;
    left: 47.3rem;
  }
}
.p-food__block--02 .p-food__blockCaption {
  top: 101rem;
  left: 5.3rem;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockCaption {
    top: 185rem;
    left: 3.3rem;
  }
}
.p-food__block--02 .p-food__blockItem09 {
  width: 25.4rem;
  top: 74.5rem;
  right: 4.8rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem09 {
    width: 64.3rem;
    top: 122.6rem;
    right: 4.4rem;
  }
}
.p-food__block--02 .p-food__blockItem10 {
  width: 25.4rem;
  top: 101.8rem;
  right: 10rem;
}
@media screen and (max-width: 767px ) {
  .p-food__block--02 .p-food__blockItem10 {
    width: 53.6rem;
    top: auto;
    bottom: 1.8rem;
    left: 7rem;
    right: auto;
  }
}
.p-food__blockItem01 {
  z-index: 0;
  position: relative;
}
.p-food__blockItem02 {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem02 {
    z-index: 10;
  }
}
.p-food__blockItem03 {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}
.p-food__blockItem04 {
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem04 {
    z-index: 5;
  }
}
.p-food__blockItem05 {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 4;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem05 {
    z-index: 20;
  }
}
.p-food__blockItem06 {
  position: absolute;
  z-index: 4;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem06 {
    z-index: 5;
  }
}
.p-food__blockItem07 {
  position: absolute;
  z-index: 4;
}
.p-food__blockItem08 {
  position: absolute;
  z-index: 4;
}
.p-food__blockItem09 {
  position: absolute;
  filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.75));
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s;
  z-index: 5;
}
.p-food__blockItem09:hover {
  filter: drop-shadow(0.1rem 0.1rem 0.4rem rgba(0, 0, 0, 0.75));
  transform: translateY(0.3rem);
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem09:hover {
    filter: drop-shadow(0rem 0rem 0rem rgba(0, 0, 0, 0.75));
    transform: translateY(0);
    opacity: 0.7;
  }
}
.p-food__blockItem09--off {
  pointer-events: none;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem09 {
    filter: drop-shadow(0rem 0rem 0rem rgba(0, 0, 0, 0.75));
  }
}
.p-food__blockItem10 {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  transition: all 0.3s;
}
.p-food__blockItem10:hover {
  opacity: 0.8;
}
.p-food__blockCaption {
  position: absolute;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-food__blockCaption {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 700;
  }
  .p-food__blockCaption span {
    display: inline-block;
    width: 1em;
  }
}
.p-food__blockEnd {
  width: 130rem;
  height: calc(100% + 5rem);
  position: absolute;
  left: -14.3rem;
  top: -5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-content: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
}
@media screen and (max-width: 767px ) {
  .p-food__blockEnd {
    width: 100dvw;
    height: calc(100% + 10.5rem);
    left: -1.5rem;
    top: -10.5rem;
    display: block;
    place-content: flex-start;
    text-align: center;
    padding-top: 24rem;
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.7021276596;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-food__blockItem02 {
  opacity: 0;
  transform: scale(1.5);
  transition: all 1.2s;
}
.p-food__blockItem03 {
  opacity: 0;
  transform: translateX(15rem);
  transition: all 2s;
}
.p-food__blockItem04 {
  opacity: 0;
  transform: translateX(-10rem);
  transition: all 1.2s;
}
@media screen and (max-width: 767px ) {
  .p-food__blockItem04 {
    transform: translateX(-10rem) rotate(5deg);
  }
}
.p-food__blockItem05 {
  opacity: 0;
  transform: scale(1.5);
  transition: all 1.2s;
}
.p-food__blockItem06 {
  opacity: 0;
  transform: translateX(5rem);
  transition: all 0.8s 1.2s;
}
.p-food__blockItem07 {
  opacity: 0;
  transform: translateX(5rem);
  transition: all 0.8s 1.5s;
}
.p-food__blockItem08 {
  opacity: 0;
  transform: translateX(5rem);
  transition: all 0.8s 2s;
}
.p-food__block.is-active .p-food__blockItem02 {
  opacity: 1;
  transform: scale(1);
}
.p-food__block.is-active .p-food__blockItem03 {
  opacity: 1;
  transform: translateX(0);
}
.p-food__block.is-active .p-food__blockItem04 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 767px ) {
  .p-food__block.is-active .p-food__blockItem04 {
    transform: translateX(0rem) rotate(5deg);
  }
}
.p-food__block.is-active .p-food__blockItem05 {
  opacity: 1;
  transform: scale(1);
}
.p-food__block.is-active .p-food__blockItem06 {
  opacity: 1;
  transform: scale(1);
}
.p-food__block.is-active .p-food__blockItem07 {
  opacity: 1;
  transform: scale(1);
}
.p-food__block.is-active .p-food__blockItem08 {
  opacity: 1;
  transform: scale(1);
}

/* #p-popup
----------------------------------------------------------------- */
.p-popup {
  display: none;
}
.p-popup * {
  outline: none;
}
.p-popup.is-open {
  display: block;
}
.p-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-popup__overlay {
    align-items: flex-start;
    padding-block: 15rem;
    overflow-y: scroll;
  }
}
.p-popup__container {
  width: 100rem;
}
@media screen and (max-width: 767px ) {
  .p-popup__container {
    width: 70rem;
  }
}
.p-popup__image {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-popup__close {
  display: block;
  width: 3.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 4rem;
  top: 4rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.p-popup__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-popup__close {
    width: 4.8rem;
    right: 5rem;
    top: 5rem;
  }
}
.p-popup[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-popup[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-popup[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-popup[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-popup .modal__container,
.p-popup .modal__overlay {
  will-change: transform;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
/* #p-drink
----------------------------------------------------------------- */
.p-drink {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.p-drink__inner {
  width: 100%;
  padding-block: 8rem 7rem;
  background: url(../images/drink_bg.jpg) no-repeat top center/100% auto;
}
@media screen and (max-width: 767px ) {
  .p-drink__inner {
    padding-block: 1rem 7.5rem;
    background: url(../images/drink_bg_sp.jpg) no-repeat top center/100% auto;
  }
}
.p-drink__subtitle {
  width: 123.8rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-drink__subtitle {
    width: 68.6rem;
  }
}
.p-drink__content01 {
  height: auto;
  margin-inline: auto;
  width: 100rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-drink__content01 {
    width: 70.3rem;
  }
}
.p-drink__content02 {
  height: auto;
  margin-inline: auto;
  width: 100rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-drink__content02 {
    width: 70.3rem;
  }
}
.p-drink__note {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.6rem;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-drink__note {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 2.2rem;
  }
  .p-drink__note span {
    display: inline-block;
    width: 1em;
  }
}
.p-drink__button {
  width: 54.3rem;
  margin-top: 4.5rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px ) {
  .p-drink__button {
    width: 59.7rem;
    margin-top: 4rem;
  }
}
.p-drink__end {
  width: 88.6%;
  height: calc(100% - 23rem);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 8.8rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  padding-top: 40rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-drink__end {
    top: 6.6rem;
    width: 100dvw;
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.7021276596;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #p-drink
----------------------------------------------------------------- */
.p-danran {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: url(../images/danran_bg.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 767px ) {
  .p-danran {
    background: url(../images/danran_bg_sp.jpg) no-repeat top center/cover;
  }
}
.p-danran__inner {
  width: 112rem;
  margin-inline: auto;
  padding-block: 5.5rem 11.5rem;
  background: url(../images/danran_inner_bg.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 767px ) {
  .p-danran__inner {
    width: 100%;
    padding-block: 3.5rem 7.5rem;
    background: none;
  }
}
.p-danran__subtitle {
  width: 77.2rem;
  height: auto;
  margin-inline: auto;
  position: relative;
  left: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-danran__subtitle {
    width: 58.8rem;
    left: 1.6rem;
  }
}
.p-danran__image {
  width: 106rem;
  margin-inline: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-danran__image {
    width: 67.1rem;
    margin-top: 2rem;
  }
}
.p-danran__info {
  width: 100rem;
  margin-inline: auto;
  position: relative;
  left: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-danran__info {
    width: 61rem;
    left: 0.5rem;
    margin-top: 1rem;
  }
}
.p-danran__content01 {
  height: auto;
  margin-inline: auto;
  width: 99.7rem;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-danran__content01 {
    width: 64rem;
  }
}
.p-danran__content02 {
  height: auto;
  margin-inline: auto;
  width: 99.5rem;
  margin-top: 7rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-danran__content02 {
    width: 64rem;
    margin-top: 5rem;
  }
}
.p-danran__button {
  width: 54.3rem;
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 50;
}
@media screen and (max-width: 767px ) {
  .p-danran__button {
    width: 59.7rem;
    bottom: 6rem;
  }
}
.p-danran__end {
  width: 88.6%;
  height: calc(100% - 23rem);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 8.8rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  padding-top: 40rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-danran__end {
    top: 6.6rem;
    width: 100dvw;
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.7021276596;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #p-drink
----------------------------------------------------------------- */
.p-taiyaki {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.p-taiyaki__inner {
  width: 100dvw;
  margin-inline: auto;
  padding-block: 2.5rem 9.7rem;
  background: url(../images/taiyaki_bg.jpg) no-repeat top center/cover;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__inner {
    background: url(../images/taiyaki_bg_sp.jpg) no-repeat top center/cover;
    padding-block: 3.5rem 7.5rem;
  }
}
.p-taiyaki__pop {
  width: 54rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__pop {
    width: 46.1rem;
  }
}
.p-taiyaki__subtitle {
  width: 115.2rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px ) {
  .p-taiyaki__subtitle:before {
    content: "";
    display: block;
    width: 100dvw;
    height: 1.8rem;
    position: absolute;
    top: 0;
    left: calc((100dvw - 115.2rem) / 2 * -1);
    background: url(../images/taiyaki_subtitle_pole.png) no-repeat left center/353.9rem 1.8rem;
    z-index: 0;
  }
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__subtitle {
    width: 75rem;
  }
}
.p-taiyaki__subtitle img,
.p-taiyaki__subtitle picture {
  position: relative;
  z-index: 10;
}
.p-taiyaki__image {
  width: 117.4rem;
  margin-inline: auto;
  margin-top: -5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__image {
    width: 74.1rem;
    margin-top: -8rem;
  }
}
.p-taiyaki__info {
  width: 99.5rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__info {
    width: 65.4rem;
    left: 0.5rem;
    margin-top: 1rem;
  }
}
.p-taiyaki__button {
  width: 54.3rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__button {
    width: 59.7rem;
  }
}
.p-taiyaki__end {
  width: 88.6%;
  height: calc(100% - 23rem);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 8.8rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  padding-top: 40rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-taiyaki__end {
    top: 6.6rem;
    width: 100dvw;
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.7021276596;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #p-goods
----------------------------------------------------------------- */
.p-goods {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.p-goods__inner {
  padding-block: 5rem 8rem;
  background-color: #ffffff;
  background-image: url(../images/goods_bg.png), linear-gradient(180deg, rgb(243, 169, 158) 0%, rgb(243, 169, 158) 80%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  background-size: 100% auto, 100% 100%;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-goods__inner {
    padding-block: 3.5rem 7.5rem;
    background-color: #ffffff;
    background-image: url(../images/goods_bg_sp.png), linear-gradient(180deg, rgb(243, 169, 158) 0%, rgb(243, 169, 158) 80%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: top center, top center;
    background-size: 100% auto, 100% 100%;
  }
}
.p-goods__subtitle {
  width: 99.6rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-goods__subtitle {
    width: 63.1rem;
  }
}
.p-goods__image {
  width: 98.5rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-goods__image {
    width: 69rem;
    margin-top: 3rem;
  }
}
.p-goods__date {
  width: 98.5rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-goods__date {
    width: 69rem;
    margin-top: 3rem;
  }
}
.p-goods__info {
  width: 98.5rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-goods__info {
    width: 69rem;
    margin-top: 3rem;
  }
}
.p-goods__button {
  width: 54.3rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px ) {
  .p-goods__button {
    width: 59.7rem;
    margin-top: 6.5rem;
  }
}
.p-goods__end {
  width: 90rem;
  height: 60.8rem;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 2.7rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-goods__end {
    width: 63rem;
    height: 45rem;
    top: 3rem;
    row-gap: 2rem;
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.4255319149;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-goods__end span {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* #p-campaign
----------------------------------------------------------------- */
.p-campaign__inner {
  width: 100dvw;
  padding-block: 7rem 12.5rem;
  background-color: #ffffff;
  background-image: url(../images/campaign_bg.png), linear-gradient(0deg, rgb(161, 216, 225) 0%, rgb(161, 216, 225) 50%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom center, top center;
  background-size: 100% auto, 100% 100%;
}
@media screen and (max-width: 767px ) {
  .p-campaign__inner {
    padding-block: 3.8rem 9rem;
    background-color: #ffffff;
    background-image: url(../images/campaign_bg_sp.png), linear-gradient(0deg, rgb(161, 216, 225) 0%, rgb(161, 216, 225) 50%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, top center;
    background-size: 100% auto, 100% 100%;
  }
}
.p-campaign__subtitle {
  width: 98.3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-campaign__subtitle {
    width: 51.4rem;
  }
}
.p-campaign__button {
  width: 54.3rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__button {
    width: 59.7rem;
    margin-top: 3.3rem;
  }
}
.p-campaign__term {
  width: 78.4rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__term {
    width: 69.7rem;
    margin-top: 2rem;
  }
}
.p-campaign__content {
  width: 99.8rem;
  margin-inline: auto;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 49.1rem 49.1rem;
  gap: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__content {
    display: flex;
    flex-direction: column;
    width: 70.2rem;
    margin-top: 3rem;
    gap: 3rem;
  }
}
.p-campaign__contentItem01 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  grid-column: 1/3;
  grid-row: 1/2;
}
.p-campaign__contentItem01 img,
.p-campaign__contentItem01 picture {
  width: 101.5rem;
  max-width: none;
  margin-left: -1.7rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__contentItem01 img,
  .p-campaign__contentItem01 picture {
    width: 71.4rem;
    margin-left: -1.2rem;
  }
}
.p-campaign__contentItem02 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-campaign__contentItem03 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (min-width: 1024px ) {
  .p-campaign__contentItem03 {
    transition-delay: 0.6s;
  }
}
.p-campaign__notice {
  width: 62rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-campaign__youkou {
  width: 98.5rem;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.6);
  margin-top: 5.6rem;
  padding-block: 2.8rem 0;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkou {
    width: 69rem;
    margin-top: 5rem;
  }
}
.p-campaign__youkouTitle {
  width: 88.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkouTitle {
    width: 65.2rem;
  }
}
.p-campaign__youkouStep01 {
  width: 73.4rem;
  margin-left: 5.5rem;
  margin-top: 4.4rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkouStep01 {
    width: 59.1rem;
    margin-top: 3rem;
    margin-left: 4.5rem;
  }
}
.p-campaign__youkouStep02 {
  width: 80.8rem;
  margin-left: 5.5rem;
  margin-top: 9.2rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkouStep02 {
    width: 60.4rem;
    margin-top: 6rem;
    margin-left: 4.5rem;
  }
}
.p-campaign__youkouStep03 {
  width: 86.3rem;
  margin-left: 5.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkouStep03 {
    width: 61.7rem;
    margin-top: 5rem;
    margin-left: 4.5rem;
  }
}
.p-campaign__youkouButton {
  width: 54.3rem;
  position: absolute;
  margin: 0;
  left: 20.5rem;
  bottom: -1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__youkouButton {
    width: 59.7rem;
    position: static;
    margin-top: 2rem;
  }
}
.p-campaign__kiyaku {
  width: 100%;
  background: #ffffff;
  padding: 0 2.5rem 2.5rem 2.5rem;
  margin-top: 8.4rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__kiyaku {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: 7.4rem;
  }
}
.p-campaign__kiyakuTitle {
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 2.5925925926;
  letter-spacing: 0em;
  font-weight: 400;
  font-weight: 700;
  color: #000000;
  text-align: center;
  width: 100%;
  border-bottom: solid 0.3rem #009cb1;
}
@media screen and (max-width: 767px ) {
  .p-campaign__kiyakuTitle {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 2.5;
    letter-spacing: 0em;
    font-weight: 500;
    border-bottom: solid 2px #009cb1;
  }
}
.p-campaign__kiyakuContent {
  width: 100%;
  height: 28rem;
  overflow-y: scroll;
  margin-inline: auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  padding-bottom: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-campaign__kiyakuContent {
    height: 37.6rem;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0em;
    font-weight: 400;
    padding-bottom: 2rem;
    margin-top: 1.5rem;
  }
}
.p-campaign__kiyakuContent dl dt {
  margin-top: 2.4rem;
}
.p-campaign__kiyakuContent dl dt:first-of-type {
  margin-top: 0;
}
.p-campaign__kiyakuContent dl dd a {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.3s;
}
.p-campaign__kiyakuContent dl dd a:hover {
  opacity: 0.7;
}
.p-campaign__bottom {
  width: 100dvw;
  background: #000000;
  padding-block: 7.5rem;
}
.p-campaign__bottomTitle {
  width: 57rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-campaign__bottomTitle {
    width: 57rem;
  }
}
.p-campaign__end {
  width: 100%;
  height: calc(100% - 33rem);
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  padding-top: 33rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e70012;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-campaign__end {
    height: calc(100% - 55rem);
    font-size: 47px;
    font-size: 4.7rem;
    line-height: 1.7021276596;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #p-end
----------------------------------------------------------------- */
.p-end {
  width: 100%;
  background: #ffffff;
  padding-block: 5rem 5.6rem;
  background: #d3bb70;
  background: linear-gradient(0deg, rgb(211, 187, 112) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px ) {
  .p-end {
    padding-block: 6.5rem 6.5rem;
  }
}
.p-end__title {
  width: 54.3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-end__title {
    width: 68.4rem;
  }
}
.p-end__button {
  width: 54.3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-end__button {
    width: 59.6rem;
    margin-top: 3rem;
  }
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */