@charset "UTF-8";
html {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-size: clamp(calc(16px / 1366 * 834), calc((16 / 1366) * 100vw), calc(16px / 1366 * 1536));
  /* tablet, smartphone */
}

@media (max-width: 768px) {
  html {
    /* 16px(1rem) / 375px(アートボードサイズ) * 100 */
    font-size: clamp(1px, calc((16 / 375) * 100vw), calc(16px / 375 * 600));
  }
}

body {
  min-width: 320px;
  background: #ececea;
  color: #004414;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-break: strict;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  color: #004414;
}

img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/* line 136, _normalize.scss */
h1 {
  font-size: 2em;
  margin: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 146, _normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 155, _normalize.scss */
small {
  font-size: 80%;
}

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

/* line 171, _normalize.scss */
sup {
  top: -0.5em;
}

/* line 175, _normalize.scss */
sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
/* line 186, _normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 194, _normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/* line 205, _normalize.scss */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 213, _normalize.scss */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
/* line 222, _normalize.scss */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 230, _normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
/* line 253, _normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 267, _normalize.scss */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
/* line 278, _normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 291, _normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 303, _normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 312, _normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 323, _normalize.scss */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 335, _normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/* line 347, _normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
/* line 357, _normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/* line 368, _normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
/* line 377, _normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  padding: 0;
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 300;
}

p,
ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: top;
}

table {
  width: 100%;
}

table th {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.h-color--white {
  color: #fff;
}

.h-color--black {
  color: #000;
}

.h-pc {
  display: block;
}

.h-sp {
  display: none;
}

br.h-pc {
  display: inline-block;
}

br.h-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .h-pc {
    display: none;
  }
  .h-sp {
    display: block;
  }
  br.h-pc {
    display: none;
  }
  br.h-sp {
    display: inline-block;
  }
}

.h-font--mix, body {
  font-family: "Instrument Sans", "Noto Sans JP", sans-serif;
}

.h-font--noto {
  font-family: "Noto Sans JP", sans-serif;
}

.h-font--instrument, .campaign__goods-link {
  font-family: "Instrument Sans", sans-serif;
}

.h-font--instrument-stretch {
  font-family: "Instrument Sans", sans-serif;
  font-stretch: 87.5%;
}

.translate-y-1 {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.translate-y-minus-1 {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.js-inview,
.js-inview-box > * {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .js-inview[data-pc-only="true"],
  .js-inview[data-pc-only="true"] > *,
  .js-inview-box[data-pc-only="true"],
  .js-inview-box[data-pc-only="true"] > * {
    opacity: 1 !important;
  }
}

.l-inner-sp {
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-inner-sp {
    padding-inline: 1.5rem;
  }
}

.page-home .about__inner {
  width: 59.625rem;
  padding-top: 6.25rem;
  padding-bottom: 5.3125rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__inner {
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

.page-home .about__limit {
  width: 25rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .about__limit {
    width: 15.75rem;
  }
}

.page-home .about__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16.125rem;
  padding-bottom: 3rem;
  border: 1px solid #004414;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__body {
    margin-top: 10.625rem;
    padding-bottom: 3.25rem;
    border-radius: 0.1875rem;
  }
}

.page-home .about__pic_main {
  width: 27.875rem;
  margin-top: -9.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__pic_main {
    margin-top: -6.4375rem;
    width: 17.25rem;
  }
}

.page-home .about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__text {
    margin-top: 2.5rem;
  }
}

.page-home .about__text-head {
  display: block;
  width: 47.6875rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__text-head {
    width: 17.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .about__text-img {
    width: 18.625rem;
    margin-top: 2rem;
  }
}

.page-home .about__text-desc {
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .page-home .about__text-desc {
    margin-top: 0.5rem;
    padding-inline: 1.25rem;
    text-align: left;
  }
}

.page-home .about__text-desc--2 {
  margin-top: 1.125rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__text-desc--2 {
    margin-top: 1rem;
  }
}

.page-home .about__btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-top: 2.5rem;
  width: 39.0625rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__btns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0.625rem;
    padding-inline: 1.25rem;
    margin-top: 1.5rem;
    width: 100%;
  }
}

.page-home .about__pic--2, .page-home .about__pic--3, .page-home .about__pic--4, .page-home .about__pic--5 {
  position: absolute;
}

.page-home .about__pic--2 {
  top: -2.5625rem;
  left: -5.3125rem;
  width: 13.3125rem;
}

.page-home .about__pic--3 {
  top: 17.1875rem;
  left: -6.75rem;
  width: 10.625rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__pic--3 {
    top: auto;
    bottom: -4.375rem;
    left: 0.9375rem;
    width: 6.9375rem;
  }
}

.page-home .about__pic--4 {
  top: -2.5625rem;
  right: -7.75rem;
  width: 16.0625rem;
}

.page-home .about__pic--5 {
  bottom: 9.25rem;
  right: -5.875rem;
  width: 9.625rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__pic--5 {
    bottom: -3.75rem;
    right: 0rem;
    width: 5.9375rem;
  }
}

.page-home .about__campaign {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__campaign {
    margin-top: 8.75rem;
  }
}

.page-home .about__campaign a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1.1875rem 3.375rem 0.5rem;
  background-color: #f18203;
  border: 1px solid #004414;
  border-radius: 0.25rem;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
}

@media screen and (max-width: 768px) {
  .page-home .about__campaign a {
    padding: 1.4375rem 1.375rem 0.3125rem;
    border-radius: 0.1875rem;
  }
}

@media (hover: hover) {
  .page-home .about__campaign a:hover {
    background-color: #ffac4c;
  }
}

.page-home .about__campaign-text {
  position: relative;
}

.page-home .about__campaign-text-01 {
  width: 32.3125rem;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media screen and (max-width: 768px) {
  .page-home .about__campaign-text-01 {
    width: 14.375rem;
  }
}

.page-home .about__campaign-text-01--white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.page-home .about__campaign-text-02 {
  width: 21.6875rem;
  margin-top: 0.8125rem;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media screen and (max-width: 768px) {
  .page-home .about__campaign-text-02 {
    width: 17.625rem;
    margin-top: 1.0625rem;
  }
}

.page-home .about__campaign-text-02--white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.page-home .about__campaign-icon {
  margin-top: 0.375rem;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .about__campaign-icon {
    margin-top: 0.9375rem;
  }
}

.c-btn a,
.c-btn .c-btn--inactive__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.75rem 1.125rem 0.625rem;
  color: #004414;
  background-color: #fff;
  border: 1px solid #004414;
  border-radius: 0.25rem;
  font-weight: 700;
  -webkit-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
  transition: color 0.5s, background-color 0.5s, border-color 0.5s;
  cursor: pointer;
}

.c-btn a span,
.c-btn a p,
.c-btn a i,
.c-btn .c-btn--inactive__inner span,
.c-btn .c-btn--inactive__inner p,
.c-btn .c-btn--inactive__inner i {
  pointer-events: none;
}

.c-btn a i,
.c-btn .c-btn--inactive__inner i {
  font-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.c-btn a[data-color="green"],
.c-btn .c-btn--inactive__inner[data-color="green"] {
  color: #004414;
  border: 1px solid #004414;
}

.c-btn a[data-color="gray-light"],
.c-btn .c-btn--inactive__inner[data-color="gray-light"] {
  color: #ececea;
  border: 1px solid #ececea;
}

.c-btn a[data-color="gray"],
.c-btn .c-btn--inactive__inner[data-color="gray"] {
  color: #ccccc9;
  border: 1px solid #ccccc9;
}

.c-btn a[data-color="white"],
.c-btn .c-btn--inactive__inner[data-color="white"] {
  color: #fff;
  border: 1px solid #fff;
}

.c-btn a[data-back-color="green"],
.c-btn .c-btn--inactive__inner[data-back-color="green"] {
  background-color: #004414;
}

.c-btn a[data-back-color="gray-light"],
.c-btn .c-btn--inactive__inner[data-back-color="gray-light"] {
  background-color: #ececea;
}

.c-btn a[data-back-color="gray"],
.c-btn .c-btn--inactive__inner[data-back-color="gray"] {
  background-color: #ccccc9;
}

.c-btn a[data-back-color="white"],
.c-btn .c-btn--inactive__inner[data-back-color="white"] {
  background-color: #fff;
}

.c-btn a[data-back-color="transparent"],
.c-btn .c-btn--inactive__inner[data-back-color="transparent"] {
  background-color: transparent;
}

@media (hover: hover) {
  .c-btn a:hover,
  .c-btn .c-btn--inactive__inner:hover {
    color: #004414;
    border: 1px solid #004414;
    background-color: #ccccc9;
  }
  .c-btn a:hover[data-back-color="white"],
  .c-btn .c-btn--inactive__inner:hover[data-back-color="white"] {
    background-color: #004414;
  }
  .c-btn a:hover[data-back-color="gray"],
  .c-btn .c-btn--inactive__inner:hover[data-back-color="gray"] {
    color: #004414;
    border: 1px solid #004414;
    background-color: #ececea;
  }
  .c-btn a:hover i.c-icon__arrow_right,
  .c-btn .c-btn--inactive__inner:hover i.c-icon__arrow_right {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.c-btn .c-btn--inactive__inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  opacity: 0.7;
}

.c-btn__spacer {
  display: block;
  width: 1.25rem;
}

.campaign {
  padding-inline: 2.75rem;
}

@media screen and (max-width: 768px) {
  .campaign {
    padding-inline: 0px;
  }
}

.campaign__wrap {
  padding-block: 4.625rem;
  background-color: #004414;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .campaign__wrap {
    padding-block: 4rem 5rem;
    border-radius: 0.1875rem;
  }
}

.campaign__title-en {
  width: 12.1875rem;
}

@media screen and (max-width: 768px) {
  .campaign__title-en {
    width: 10.5625rem;
  }
}

.campaign__inner {
  width: 70.25rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .campaign__inner {
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.campaign__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8.625rem;
  margin-top: 8.875rem;
}

@media screen and (max-width: 768px) {
  .campaign__list {
    row-gap: 7.1875rem;
    margin-top: 7.0625rem;
  }
}

.campaign__head-text-ja {
  position: relative;
  width: 21.75rem;
  line-height: 1;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .campaign__head-text-ja {
    width: 16.0625rem;
  }
}

.campaign__head-speech {
  position: absolute;
  top: 0;
  left: -3.5625rem;
  -webkit-transform: translateY(-100%) rotate(-5deg);
          transform: translateY(-100%) rotate(-5deg);
  width: 5.5625rem;
}

@media screen and (max-width: 768px) {
  .campaign__head-speech {
    top: -0.3125rem;
    left: -3.125rem;
  }
}

.campaign__head-text-en {
  width: 34.375rem;
  margin-inline: auto;
  margin-top: 1.5rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .campaign__head-text-en {
    width: 20.9375rem;
    margin-top: 1.25rem;
  }
}

.campaign__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.375rem;
  padding-bottom: 4.6875rem;
  border: 1px solid #fff;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .campaign__contents {
    margin-top: 1.375rem;
    padding-inline: 1.25rem;
    padding-bottom: 1.375rem;
    border-radius: 0.1875rem;
  }
}

.campaign__item-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30.8125rem;
  padding-inline: 0.9375rem;
  background-color: #004414;
}

@media screen and (max-width: 768px) {
  .campaign__item-title {
    width: 19.5625rem;
    padding-inline: 0.75rem;
  }
}

.campaign__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.75rem;
     -moz-column-gap: 1.75rem;
          column-gap: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4.25rem;
  padding: 1.4375rem 2rem;
  background-color: #f18203;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .campaign__day {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.8125rem;
    margin-top: 2.75rem;
    padding: 0.75rem 1.25rem 0.9375rem;
    border-radius: 0.1875rem;
  }
}

.campaign__day-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}

@media screen and (max-width: 768px) {
  .campaign__day-title {
    -webkit-column-gap: 0.375rem;
       -moz-column-gap: 0.375rem;
            column-gap: 0.375rem;
  }
}

.campaign__day-text {
  font-weight: 700;
  line-height: 1;
}

.campaign__day-desc {
  line-height: 1;
  width: 23.875rem;
}

.campaign__day-desc--02 {
  width: 22rem;
}

@media screen and (max-width: 768px) {
  .campaign__day-desc {
    width: 15.9375rem;
  }
  .campaign__day-desc--02 {
    width: 14.6875rem;
  }
}

.campaign__desc {
  margin-top: 2.3125rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .campaign__desc {
    margin-top: 2rem;
    text-align: start;
  }
}

.campaign__goods {
  position: relative;
  margin-top: 1.25rem;
}

.campaign__goods-text-wrap {
  position: relative;
  width: 32.5rem;
  margin-inline: auto;
}

.campaign__goods-text-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .campaign__goods-text-wrap {
    width: 100%;
  }
}

.campaign__goods-text {
  position: relative;
  z-index: 1;
  padding-inline: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  color: #fff;
  background-color: #004414;
}

@media screen and (max-width: 768px) {
  .campaign__goods-text {
    padding-inline: 0.375rem;
  }
}

.campaign__goods-img {
  width: 25.25rem;
  margin-top: 2rem;
  margin-inline: auto;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .campaign__goods-img {
    width: 15.0625rem;
    margin-top: 1.0625rem;
  }
}

.campaign__goods-desc-warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .campaign__goods-desc-warp {
    margin-top: 1.25rem;
  }
}

.campaign__goods-desc {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.0625rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
}

.campaign__goods-desc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.4375rem;
  border: 1px solid #fff;
}

.campaign__goods-link {
  color: #fff;
  margin-top: 0.25rem;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .campaign__goods-link {
    margin-top: 0.125rem;
  }
}

.campaign__deco {
  position: absolute;
  top: -2.25rem;
  right: -9.375rem;
  width: 8.75rem;
}

@media screen and (max-width: 768px) {
  .campaign__deco {
    top: -1.125rem;
    right: -3.625rem;
    width: 5.125rem;
  }
}

.campaign__deco svg {
  width: 100%;
  height: 100%;
}

.campaign__deco--text {
  fill: #fff;
}

.campaign__deco--back {
  fill: #004414;
}

.campaign__btn {
  width: 15rem;
  margin-top: 2.125rem;
}

@media screen and (max-width: 768px) {
  .campaign__btn {
    width: 100%;
    margin-top: 2rem;
  }
}

.campaign__item-stamp .campaign__head-text-ja {
  width: 13.75rem;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__head-text-ja {
    width: 11.25rem;
  }
}

.campaign__item-stamp .campaign__item-title {
  width: 27.1875rem;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__item-title {
    width: 17.1875rem;
  }
}

.campaign__item-stamp .campaign__stamp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 57.5rem;
  margin-inline: auto;
  margin-top: 5.375rem;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__stamp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
  }
}

.campaign__item-stamp .campaign__stamp-text {
  line-height: 1.8;
  color: #fff;
}

.campaign__item-stamp .campaign__stamp-cap {
  margin-top: 1.75rem;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__stamp-cap {
    margin-top: 1rem;
  }
}

.campaign__item-stamp .campaign__stamp-img {
  width: 26.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__stamp-img {
    width: 100%;
  }
}

.campaign__item-stamp .campaign__btn {
  margin-top: 3.125rem;
}

@media screen and (max-width: 768px) {
  .campaign__item-stamp .campaign__btn {
    margin-top: 1.25rem;
  }
}

.page-home .collaboration {
  margin-top: 4.5rem;
  padding-bottom: 12.625rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration {
    margin-top: 3rem;
    padding-bottom: 11rem;
  }
}

.page-home .collaboration__title-en {
  width: 7.4375rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__title-en {
    width: 6.375rem;
  }
}

.page-home .collaboration__desc {
  margin-top: 3rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__desc {
    margin-top: 2.125rem;
  }
}

.page-home .collaboration__list {
  margin-top: 3.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__list {
    margin-top: 3.4375rem;
  }
}

.page-home .collaboration__price-img--1, .page-home .collaboration__price-img--3 {
  width: 8.3125rem;
}

.page-home .collaboration__price-img--2 {
  width: 8rem;
}

.page-home .collaboration__price-img--4, .page-home .collaboration__price-img--5 {
  width: 8.5rem;
}

.page-home .collaboration__deco--1 {
  position: absolute;
  bottom: -5.375rem;
  right: -0.4375rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 8.1875rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__deco--1 {
    top: -2.625rem;
    bottom: auto;
    right: -1rem;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: 4.8125rem;
  }
}

.page-home .collaboration__deco--2 {
  position: absolute;
  top: 1.0625rem;
  left: -1rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 3.4375rem;
}

.page-home .collaboration__deco--3 {
  position: absolute;
  top: 2.375rem;
  right: -0.5625rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 3.25rem;
}

.page-home .collaboration__deco--4 {
  position: absolute;
  top: -3.4375rem;
  left: 0px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 9.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__deco--4 {
    top: -2rem;
    left: -0.875rem;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: 4.875rem;
  }
}

.page-home .collaboration__deco--5 {
  position: absolute;
  bottom: -3.5rem;
  right: -7.75rem;
  width: 8.4375rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration__deco--5 {
    bottom: -1.6875rem;
    left: auto;
    right: 0.5rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    width: 4.375rem;
  }
}

.page-home .collaboration__deco--6 {
  position: absolute;
  bottom: -0.75rem;
  left: -2.25rem;
  -webkit-transform: translate(-100%, 100%);
          transform: translate(-100%, 100%);
  width: 4.25rem;
}

.page-home .decoration {
  padding-block: 11rem 7.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .decoration {
    padding-block: 6.25rem 5rem;
    padding-inline: 1.25rem;
  }
}

.page-home .decoration__inner {
  position: relative;
  width: 63rem;
  margin-inline: auto;
  padding-bottom: 2.1875rem;
  border: 1px solid #004414;
  text-align: center;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__inner {
    width: 100%;
    padding-inline: 1.25rem;
    padding-bottom: 1.5625rem;
    border-radius: 0.1875rem;
  }
}

.page-home .decoration__title-en {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 23.75rem;
  padding-inline: 0.5rem;
  background-color: #ececea;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__title-en {
    width: 17.8125rem;
    padding-inline: 0.375rem;
  }
}

.page-home .decoration__title-ja {
  margin-top: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__title-ja {
    margin-top: 1.125rem;
  }
}

.page-home .decoration__desc {
  font-weight: 700;
  margin-top: 2.3125rem;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__desc {
    margin-top: 1.875rem;
  }
}

.page-home .decoration__day {
  width: 13.25rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__day {
    margin-top: 1.5rem;
  }
}

.page-home .decoration__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 4.875rem;
     -moz-column-gap: 4.875rem;
          column-gap: 4.875rem;
  row-gap: 3.125rem;
  width: 51.5625rem;
  margin-top: 2.5rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2rem;
    width: 100%;
    margin-top: 2.375rem;
  }
}

.page-home .decoration__item a:hover .decoration__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.page-home .decoration__item a:hover .decoration__item-text i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.page-home .decoration__item-img {
  display: block;
  overflow: hidden;
}

.page-home .decoration__item-img img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.page-home .decoration__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  margin-top: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__item-text {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    margin-top: 0.625rem;
  }
}

.page-home .decoration__item-text i {
  font-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__item-text i {
    font-size: 1.125rem;
  }
}

.page-home .decoration__item-title {
  display: block;
  font-weight: 700;
}

.page-home .decoration__cap {
  width: 51.5625rem;
  margin-top: 4rem;
  margin-inline: auto;
  text-align: start;
}

@media screen and (max-width: 768px) {
  .page-home .decoration__cap {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.page-home .drink__title {
  padding-top: 5.375rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__title {
    padding-top: 3.5rem;
  }
}

.page-home .drink__title-en {
  width: 7.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__title-en {
    width: 6.25rem;
  }
}

.page-home .drink__body {
  margin-top: 2.375rem;
  padding-inline: 2.75rem;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__body {
    margin-top: 2.8125rem;
    padding-inline: 0;
  }
}

.page-home .drink__body-inner {
  width: 100%;
  position: relative;
  aspect-ratio: 1277 / 726;
  background-image: url(../images/home/drink_back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__body-inner {
    background-image: url(../images/home/drink_back_sp.webp);
    aspect-ratio: 375 / 445;
    border-radius: 0.1875rem;
  }
}

.page-home .drink__mango, .page-home .drink__americano {
  position: absolute;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__mango, .page-home .drink__americano {
    position: relative;
    margin-inline: auto;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    border-radius: 0.1875rem;
  }
}

.page-home .drink__mango::after, .page-home .drink__americano::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #004414;
  border-radius: 0.25rem;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .page-home .drink__mango::after, .page-home .drink__americano::after {
    border-radius: 0.1875rem;
  }
}

.page-home .drink__mango {
  top: 12.66471vw;
  right: 67.56955vw;
  width: 17.1875rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__mango {
    top: auto;
    right: auto;
    width: 100%;
  }
}

.page-home .drink__americano {
  top: 5.85652vw;
  left: 64.71449vw;
  width: 18.375rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__americano {
    top: auto;
    left: auto;
    width: 100%;
  }
}

.page-home .drink__text {
  position: relative;
  z-index: 1;
  padding-inline: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__text {
    padding-inline: 1.25rem;
    padding-bottom: 1.875rem;
  }
}

.page-home .drink__name {
  margin-top: -2.6875rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__name {
    margin-top: -2.9375rem;
  }
}

.page-home .drink__name-ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-home .drink__name-ja {
    background-color: #ececea;
  }
}

.page-home .drink__name-ja span {
  padding-left: 0.625rem;
  padding-right: 0.4375rem;
}

.page-home .drink__mango-ja .drink__name-bg {
  display: inline-block;
  background-color: #c2c3be;
}

@media screen and (max-width: 768px) {
  .page-home .drink__mango-ja .drink__name-bg {
    background-color: #ececea;
  }
}

.page-home .drink__americano-ja .drink__name-bg {
  display: inline-block;
  background-color: #bebfba;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-home .drink__americano-ja .drink__name-bg {
    background-color: #ececea;
  }
}

.page-home .drink__name-en {
  margin-top: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
}

.page-home .drink__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__desc {
    margin-top: 0.875rem;
  }
}

.page-home .drink__cap {
  line-height: 1.5;
  margin-top: 0.1875rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__cap {
    margin-top: 0.875rem;
  }
}

.page-home .drink__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.4375rem;
     -moz-column-gap: 0.4375rem;
          column-gap: 0.4375rem;
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__info {
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    margin-top: 1.5rem;
  }
}

.page-home .drink__size {
  font-size: 1.25rem;
  line-height: 1.5;
}

.page-home .drink__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.125rem;
     -moz-column-gap: 0.125rem;
          column-gap: 0.125rem;
}

.page-home .drink__price-img {
  width: 8.75rem;
}

.page-home .drink__num {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.page-home .drink__tax {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.page-home .drink__btn a {
  border: 0px;
  border-top: 1px solid #004414;
  border-radius: 0px 0px 0.25rem 0.25rem;
  padding: 0.6875rem 1.125rem 0.5625rem;
}

@media screen and (max-width: 768px) {
  .page-home .drink__btn a {
    border-radius: 0px 0px 0.1875rem 0.1875rem;
    background-color: transparent;
  }
}

@media (hover: hover) {
  .page-home .drink__btn a:hover {
    border: 0px;
    border-top: 1px solid #004414;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink-explain {
    position: absolute;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink-explain--mango {
    bottom: 8rem;
    left: 1.5rem;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink-explain--americano {
    top: 2.8125rem;
    right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink-explain__name-ja {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink-explain__name-en {
    margin-top: 0.375rem;
    font-size: 0.5625rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink__list {
    padding-inline: 1.5rem;
    padding-top: 4.25rem;
    padding-bottom: 5.875rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink__item:last-of-type {
    row-gap: 3.4375rem;
    margin-top: 4.625rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink__mango .drink__name {
    margin-top: -1rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .drink__img {
    width: 12.125rem;
  }
}

.page-home .food {
  margin-top: 6.75rem;
  padding-bottom: 9.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .food {
    margin-top: 4.125rem;
    padding-bottom: 10.75rem;
  }
}

.page-home .food__title-en {
  width: 7.125rem;
}

@media screen and (max-width: 768px) {
  .page-home .food__title-en {
    width: 6.0625rem;
  }
}

.page-home .food__list {
  margin-top: 6.5625rem;
}

@media screen and (max-width: 768px) {
  .page-home .food__list {
    margin-top: 3rem;
  }
}

.page-home .food__deco--1 {
  position: absolute;
  top: -2rem;
  right: -0.625rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 7.6875rem;
}

.page-home .food__deco--2 {
  position: absolute;
  top: -4.6875rem;
  left: -0.6875rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 7.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .food__deco--2 {
    top: -3rem;
    left: -0.875rem;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: 4.25rem;
  }
}

.page-home .food__deco--3 {
  position: absolute;
  bottom: -2.125rem;
  right: -6rem;
  width: 8.125rem;
}

@media screen and (max-width: 768px) {
  .page-home .food__deco--3 {
    bottom: -1.5625rem;
    right: 0px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    width: 4.5rem;
  }
}

.page-home .food__price-img--1, .page-home .food__price-img--2, .page-home .food__price-img--3 {
  width: 7.125rem;
}

.c-footer {
  background-color: #ccccc9;
}

.c-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.375rem;
  padding-block: 2.875rem;
}

@media screen and (max-width: 768px) {
  .c-footer__inner {
    row-gap: 2rem;
    padding-block: 2.5rem;
  }
}

.c-footer__copy-txt {
  font-weight: 700;
  margin-inline: auto;
}

.c-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .c-footer__sns {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.c-footer__sns i {
  color: #004414;
}

.c-footer__face-book {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .c-footer__face-book {
    font-size: 1.5rem;
  }
}

.c-footer__x {
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .c-footer__x {
    font-size: 1.25rem;
  }
}

.c-footer__logo {
  width: 20.375rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .c-footer__logo {
    width: 13rem;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.875rem 1.125rem;
}

@media screen and (max-width: 768px) {
  .c-header__inner {
    padding: 0.75rem 0.875rem;
  }
}

.c-header__logo {
  width: 13rem;
}

@media screen and (max-width: 768px) {
  .c-header__logo {
    width: 9.75rem;
  }
}

.c-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .c-header__sns {
    -webkit-column-gap: 0.875rem;
       -moz-column-gap: 0.875rem;
            column-gap: 0.875rem;
  }
}

.c-header__face-book {
  font-size: 1.625rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .c-header__face-book {
    font-size: 1.375rem;
  }
}

.c-header__x {
  font-size: 1.5rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .c-header__x {
    font-size: 1.1875rem;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?j1adkf");
  src: url("../fonts/icomoon.eot?j1adkf#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?j1adkf") format("truetype"), url("../fonts/icomoon.woff?j1adkf") format("woff"), url("../fonts/icomoon.svg?j1adkf#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="c-icon__"],
[class*=" c-icon__"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-icon__arrow_left:before {
  content: "\e904";
}

.c-icon__arrow_right:before {
  content: "\e905";
}

.c-icon__arrow_up:before {
  content: "\e900";
}

.c-icon__face_book:before {
  content: "\e901";
}

.c-icon__calendar:before {
  content: "\e902";
}

.c-icon__x:before {
  content: "\e903";
}

.page-home .limited {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited {
    margin-top: 0px;
  }
}

.page-home .limited__inner {
  padding-inline: 2.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__inner {
    padding-inline: 0px;
  }
}

.page-home .limited__contents {
  background-color: #fff;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__contents {
    padding-top: 5rem;
    padding-bottom: 6.375rem;
    border-radius: 0.1875rem;
  }
}

.page-home .limited__title-en {
  width: 16.1875rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__title-en {
    width: 14rem;
  }
}

.page-home .limited__desc {
  margin-top: 2.875rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-home .limited__desc {
    margin-top: 2rem;
    text-align: start;
    padding-inline: 1.5rem;
  }
}

.page-home .limited__body {
  margin-top: 4.625rem;
  margin-inline: auto;
  width: 54.6875rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__body {
    margin-top: 3.4375rem;
    width: 100%;
    padding-inline: 1.5rem;
  }
}

.page-home .limited__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
}

.page-home .limited__visual {
  position: relative;
  border: 1px solid #004414;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__visual {
    border-radius: 0.1875rem;
  }
}

.page-home .limited__day {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
}

.page-home .limited__item:first-of-type .limited__day {
  width: 15.4375rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__item:first-of-type .limited__day {
    width: 13.25rem;
  }
}

.page-home .limited__item:last-of-type .limited__day {
  width: 16rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__item:last-of-type .limited__day {
    width: 13.6875rem;
  }
}

.page-home .limited__text {
  margin-top: 0.875rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__text {
    margin-top: 1rem;
  }
}

.page-home .limited__name {
  font-weight: bold;
  line-height: 1.2;
}

.page-home .limited__type {
  margin-top: 0.6875rem;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-home .limited__type {
    margin-top: 0.3125rem;
  }
}

.page-home .limited__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.125rem;
     -moz-column-gap: 0.125rem;
          column-gap: 0.125rem;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited__price {
    margin-top: 1.25rem;
  }
}

.page-home .limited__num {
  width: 7.125rem;
  line-height: 1;
}

.page-home .limited__finish {
  margin-top: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-home .limited__finish {
    margin-top: 0.875rem;
  }
}

.page-home .limited-target {
  position: relative;
  margin-top: 5rem;
  width: 100%;
  padding: 1rem 1.5rem 2.3125rem;
  border: 1px solid #004414;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited-target {
    margin-top: 5.625rem;
    padding: 1rem 1.375rem 1.5625rem;
    border-radius: 0.1875rem;
  }
}

.page-home .limited-target__title {
  font-weight: 700;
  line-height: 1.5;
}

.page-home .limited-target__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.375rem;
  margin-top: 1.125rem;
  padding-left: 3rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited-target__list {
    margin-top: 0.75rem;
    padding-left: 0px;
  }
}

.page-home .limited-target__item {
  position: relative;
  padding-left: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-home .limited-target__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.4375rem;
  border: 1px solid #004414;
}

.page-home .limited-target__img {
  position: absolute;
  top: -1.875rem;
  right: 0.875rem;
  width: 16.5625rem;
}

@media screen and (max-width: 768px) {
  .page-home .limited-target__img {
    top: -4.5625rem;
    right: 0.4375rem;
    width: 10.25rem;
  }
}

.page-home .limited__cap {
  margin-top: 1.25rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-home .limited__cap {
    margin-top: 1.125rem;
  }
}

.c-loop-logo {
  width: 100%;
  overflow: hidden;
  padding-block: 0.75rem;
}

.c-loop-logo[data-color="green"] {
  background-color: #004414;
}

.c-loop-logo[data-color="green"] .c-loop-logo__line {
  background-color: #fff;
}

.c-loop-logo[data-color="gray"] {
  background-color: #ccccc9;
}

.c-loop-logo[data-color="gray"] .c-loop-logo__line {
  background-color: #004414;
}

.c-loop-logo[data-color="gray"] .c-loop-logo____txt,
.c-loop-logo[data-color="gray"] .c-loop-logo____tullys {
  color: #ccccc9;
}

.c-loop-logo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-loop-logo__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-loop-logo__line {
  width: 1px;
  height: 1.875rem;
}

@media screen and (max-width: 768px) {
  .c-loop-logo__line {
    height: 1.375rem;
  }
}

.c-loop-logo__txt, .c-loop-logo__tullys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 3.125rem;
}

@media screen and (max-width: 768px) {
  .c-loop-logo__txt, .c-loop-logo__tullys {
    padding-inline: 2rem;
  }
}

.c-loop-logo__txt img {
  width: 3.625rem;
}

@media screen and (max-width: 768px) {
  .c-loop-logo__txt img {
    width: 2.375rem;
  }
}

.c-loop-logo__tullys img {
  width: 3.75rem;
}

@media screen and (max-width: 768px) {
  .c-loop-logo__tullys img {
    width: 2.5rem;
  }
}

.c-loop-logo__txt-name {
  width: 18.375rem;
  padding-right: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .c-loop-logo__txt-name {
    width: 10rem;
    padding-right: 1.5rem;
  }
}

.c-loop-txt {
  background-color: #004414;
}

.txt__member-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}

@media screen and (max-width: 768px) {
  .txt__member-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.txt__member-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .txt__member-img {
    width: 9.5625rem;
  }
}

.txt__member-text {
  color: #fff;
}

.txt__member-name {
  line-height: 1.2;
}

.txt__member-name-en {
  font-weight: 700;
}

.txt__member-name-ja {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.txt__member-birthday {
  margin-top: 0.25rem;
  line-height: 1.8;
}

.page-home .ppulbatu {
  padding-block: 5.625rem 6.875rem;
}

@media screen and (max-width: 768px) {
  .page-home .ppulbatu {
    padding-block: 3.5rem;
    padding-inline: 1.5rem;
  }
}

.page-home .ppulbatu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.25rem;
     -moz-column-gap: 3.25rem;
          column-gap: 3.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72.875rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .ppulbatu__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.6875rem;
    width: 100%;
  }
}

.page-home .ppulbatu__title {
  width: 10.625rem;
}

@media screen and (max-width: 768px) {
  .page-home .ppulbatu__title {
    width: 9.3125rem;
    margin-inline: auto;
  }
}

.page-home .ppulbatu__desc {
  margin-top: 1.25rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.page-home .ppulbatu__img {
  width: 42.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .page-home .ppulbatu__img {
    width: 100%;
  }
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-section-title__head {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-section-title__head::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 1px;
}

.c-section-title-en {
  position: relative;
  z-index: 2;
  line-height: 1;
  padding-inline: 0.5rem;
}

@media screen and (max-width: 768px) {
  .c-section-title-en {
    padding-inline: 0.375rem;
  }
}

.c-section-title-en img {
  display: block;
}

.c-section-title-ja {
  font-weight: 700;
  text-align: center;
  margin-top: 0.625rem;
}

@media screen and (max-width: 768px) {
  .c-section-title-ja {
    margin-top: 0.375rem;
  }
}

.c-section-title[data-color="green"] {
  color: #004414;
}

.c-section-title[data-color="green"] .c-section-title__head::after {
  background-color: #004414;
}

.c-section-title[data-color="gray"] {
  color: #ececea;
}

.c-section-title[data-color="gray"] .c-section-title__head::after {
  background-color: #ececea;
}

.c-section-title[data-color="white"] {
  color: #fff;
}

.c-section-title[data-color="white"] .c-section-title__head::after {
  background-color: #fff;
}

.c-section-title[data-back-color="green"] .c-section-title-en {
  background-color: #004414;
}

.c-section-title[data-back-color="gray"] .c-section-title-en {
  background-color: #ececea;
}

.c-section-title[data-back-color="white"] .c-section-title-en {
  background-color: #fff;
}

.slider__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
  width: 59rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .slider__list {
    row-gap: 5rem;
    width: 19.6875rem;
  }
}

.slider__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .slider__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.25rem;
    padding-inline: 1rem;
  }
}

.slider__item[data-direction="default"] {
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}

.slider__item[data-direction="default"] .slider__text {
  width: 100%;
}

.slider__item[data-direction="reverse"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .slider__item[data-direction="reverse"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.slider__item[data-direction="reverse"] .slider__text {
  padding-left: 2.5rem;
}

@media screen and (max-width: 768px) {
  .slider__item[data-direction="reverse"] .slider__text {
    padding-left: 0px;
  }
}

.slider__img {
  width: 25rem;
  aspect-ratio: 1 / 1;
  border: 1px solid #004414;
  border-radius: 0.25rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .slider__img {
    width: 100%;
    border-radius: 0.1875rem;
  }
}

.slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider__name-ja {
  font-weight: 700;
  line-height: 1.2;
}

.slider__name-en {
  margin-top: 0.625rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .slider__name-en {
    margin-top: 0.25rem;
  }
}

.slider__desc {
  margin-top: 1.0625rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .slider__desc {
    margin-top: 0.5rem;
  }
}

.slider__info {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.slider__price {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .slider__price {
    margin-top: 1rem;
  }
}

.slider__btn {
  width: 20rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .slider__btn {
    width: 100%;
    margin-top: 2rem;
  }
}

.splide {
  width: 25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .splide {
    width: 100%;
  }
}

.splide__track {
  overflow: visible !important;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow {
  background-color: #004414 !important;
  opacity: 1 !important;
  width: 2rem;
  height: 2rem;
}

.splide__arrow i {
  color: #fff;
  font-size: 1rem;
}

.splide__arrow--prev {
  left: 0 !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.splide__arrow--next {
  right: 0 !important;
  -webkit-transform: translate(50%, -50%) !important;
          transform: translate(50%, -50%) !important;
}

.c-text--4xl, .txt__member-name-en {
  font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
  .c-text--4xl, .txt__member-name-en {
    font-size: 1.5rem;
  }
}

.c-text--3xl, .page-home .online__title {
  font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
  .c-text--3xl, .page-home .online__title {
    font-size: 1.25rem;
  }
}

.c-text--2xl, .campaign__goods-text, .page-home .limited__name, .slider__name-ja {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .c-text--2xl, .campaign__goods-text, .page-home .limited__name, .slider__name-ja {
    font-size: 1.25rem;
  }
}

.c-text--xl, .page-home .decoration__title-ja, .c-section-title-ja, .page-home .collaboration-menu__sub-title {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .c-text--xl, .page-home .decoration__title-ja, .c-section-title-ja, .page-home .collaboration-menu__sub-title {
    font-size: 1rem;
  }
}

.c-text--20-sp18, .page-home .decoration__item-title, .page-home .limited-target__title {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .c-text--20-sp18, .page-home .decoration__item-title, .page-home .limited-target__title {
    font-size: 1.125rem;
  }
}

.c-text--18-sp16, .campaign__day-text {
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .c-text--18-sp16, .campaign__day-text {
    font-size: 1rem;
  }
}

.c-text--body, body, .page-home .about__text-desc, .page-home .shop__sub-title, .page-home .shop__desc {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .c-text--body, body, .page-home .about__text-desc, .page-home .shop__sub-title, .page-home .shop__desc {
    font-size: 0.875rem;
  }
}

.c-text--16-sp15, .page-home .limited__finish {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .c-text--16-sp15, .page-home .limited__finish {
    font-size: 0.9375rem;
  }
}

.c-text--16-sp13, .page-home .ppulbatu__desc, .page-home .txt__desc {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .c-text--16-sp13, .page-home .ppulbatu__desc, .page-home .txt__desc {
    font-size: 0.8125rem;
  }
}

.c-text--body-s {
  font-size: 0.875rem;
}

.c-text--cap, .campaign__item-stamp .campaign__stamp-cap, .page-home .decoration__cap, .c-footer__copy-txt, .c-footer__copy-tullys, .page-home .limited__cap {
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .c-text--cap, .campaign__item-stamp .campaign__stamp-cap, .page-home .decoration__cap, .c-footer__copy-txt, .c-footer__copy-tullys, .page-home .limited__cap {
    font-size: 0.75rem;
  }
}

.c-text--cap-s, .campaign__goods-link, .page-home .drink__cap {
  font-size: 0.75rem;
}

.page-home .txt {
  background-color: #004414;
}

.page-home .txt__inner {
  padding-block: 3.75rem;
}

@media screen and (max-width: 768px) {
  .page-home .txt__inner {
    padding: 2.5rem 1.25rem;
  }
}

.page-home .txt__contents {
  width: 80.25rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .txt__contents {
    width: 100%;
  }
}

.page-home .txt__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .txt__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-home .txt__visual {
  width: 38.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .page-home .txt__visual {
    width: 100%;
  }
}

.page-home .txt__img {
  width: 100%;
}

.page-home .txt__logo {
  width: 15rem;
  margin-top: 3.75rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .txt__logo {
    width: 12.6875rem;
    margin-top: 2.5rem;
  }
}

.page-home .txt__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.8em;
  color: #fff;
  line-height: 1.8;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-home .txt__desc {
    row-gap: 1.25rem;
  }
}

.page-home .txt__member-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .page-home .txt__member-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    margin-top: 3.5rem;
  }
}

.page-home .txt__btn {
  width: 18.75rem;
  margin-top: 3.875rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .txt__btn {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.page-home .back-noise-parent {
  position: relative;
}

.page-home .back-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/home/noise.webp);
  background-repeat: repeat;
  background-size: auto;
  background-size: 400px 400px;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .page-home .back-noise {
    background-image: url(../images/home/noise_sp.webp);
    background-size: 375px 375px;
    opacity: 0.8;
  }
}

.page-home .back-noise-over {
  position: relative;
  z-index: 2;
}

.page-home .mv__img {
  width: 100%;
}

.page-home .shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7.25rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-home .shop__inner {
    padding-top: 3.5rem;
  }
}

.page-home .shop__sub-title {
  font-weight: 700;
}

.page-home .shop__title {
  margin-top: 1.25rem;
  width: 9.375rem;
}

@media screen and (max-width: 768px) {
  .page-home .shop__title {
    margin-top: 0.75rem;
    width: 7.375rem;
  }
}

.page-home .shop__desc {
  margin-top: 1.875rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-home .shop__desc {
    margin-top: 1.5rem;
  }
}

.page-home .shop__img {
  margin-top: 4rem;
  width: 50.4375rem;
}

@media screen and (max-width: 768px) {
  .page-home .shop__img {
    margin-top: 2.8125rem;
    width: 21.3125rem;
  }
}

.page-home .collaboration-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 3.375rem;
  text-align: center;
  background-color: #004414;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration-menu__inner {
    padding-block: 2.875rem;
  }
}

.page-home .collaboration-menu__title {
  width: 32.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .collaboration-menu__title {
    width: 18.5rem;
  }
}

.page-home .collaboration-menu__sub-title {
  margin-top: 0.625rem;
  font-weight: 700;
}

.page-home .space__img {
  width: 46.9375rem;
  margin-top: 6.625rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .page-home .space__img {
    width: 20.375rem;
    margin-top: 3.75rem;
  }
}

.page-home .online__inner {
  padding-bottom: 11.875rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__inner {
    padding-bottom: 13.75rem;
  }
}

.page-home .online__title-en {
  width: 16.125rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__title-en {
    width: 14rem;
  }
}

@media screen and (max-width: 768px) {
  .page-home .online__contents-wrap {
    padding-inline: 1.25rem;
  }
}

.page-home .online__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.875rem;
     -moz-column-gap: 3.875rem;
          column-gap: 3.875rem;
  width: 65.875rem;
  margin-top: 5.875rem;
  margin-inline: auto;
  padding: 4.5625rem 2rem 4.25rem;
  border: 1px solid #004414;
  border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    row-gap: 1.875rem;
    margin-top: 3.75rem;
    padding: 2.75rem 0.5rem 4.625rem;
    border-radius: 0.1875rem;
  }
}

.page-home .online__day {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20.75rem;
  padding-inline: 0.5rem;
  background-color: #ececea;
}

@media screen and (max-width: 768px) {
  .page-home .online__day {
    width: 17.9375rem;
  }
}

.page-home .online__img {
  width: 30.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .page-home .online__img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .page-home .online__text {
    text-align: center;
  }
}

.page-home .online__title {
  font-weight: 700;
  line-height: 1.2;
}

.page-home .online__desc {
  line-height: 1.5;
  margin-top: 1.125rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__desc {
    margin-top: 0.9375rem;
  }
}

.page-home .online__btn {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__btn {
    margin-top: 1.25rem;
    margin-inline: auto;
    width: 18.75rem;
  }
}

.page-home .online__btn p {
  line-height: 1.4;
}

.page-home .online__deco {
  position: absolute;
  bottom: -6.125rem;
  right: -4.125rem;
  width: 14.3125rem;
}

@media screen and (max-width: 768px) {
  .page-home .online__deco {
    bottom: -8.5625rem;
    right: 0;
    width: 11.375rem;
  }
}

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
