@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * 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: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffffff;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
}

#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}

.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #ec6c00;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}

.loader_cover-up {
  transform-origin: center top;
}

.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}

.coveranime {
  transform: scaleY(0);
}

.swiper-button-next,
.swiper-button-prev {
  top: 45% !important;
}

.swiper-pagination {
  position: initial !important;
}
.swiper-pagination-bullet-active {
  opacity: 0.9 !important;
  background: #fff !important;
}

a {
  text-decoration: none;
  transition: 0.4s;
  color: #fdd900;
}
a img {
  transition: 0.4s;
}
a img:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  text-align: center;
}

h2 {
  font-size: 1.3rem;
}
@media print, screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3,
h4 {
  font-size: 1.1rem;
}
@media print, screen and (min-width: 768px) {
  h3,
  h4 {
    font-size: 1.5rem;
  }
}

@font-face {
  font-family: "D-DIN-Condensed-Bold";
  src: url("/fonts/D-DIN-Condensed-Bold.ttf.woff") format("woff"),
    url("/fonts/D-DIN-Condensed-Bold.ttf.svg#D-DIN-Condensed-Bold")
      format("svg"),
    url("/fonts/D-DIN-Condensed-Bold.ttf.eot"),
    url("/fonts/D-DIN-Condensed-Bold.ttf.eot?#iefix")
      format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}
.din-font {
  font-family: "D-DIN-Condensed-Bold";
}

.kome {
  text-indent: -0.8em;
  margin-left: 1em;
}

.lead {
  text-align: center;
}

.small {
  font-size: 80%;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-red {
  color: #dc000c;
}

.text-yellow {
  color: #fdd900;
}

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

@media print, screen and (min-width: 768px) {
  .none-pc {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .none-sp {
    display: none;
  }
}

.mt-1 {
  margin-top: 1em;
}

.mb-1 {
  margin-bottom: 1em;
}

.back-red {
  background-color: #bf111b;
}
.back-orange {
  background-color: #ec6c00;
}
.back-yellow {
  background-color: #fdd900;
}

.borderline {
  height: 60px;
  background-position: 50%;
}
@media only screen and (max-width: 767px) {
  .borderline {
    background-size: cover;
  }
}
.borderline-top {
  margin-top: -130px;
  z-index: 3;
}
.borderline-flour {
  background-image: url("/campaign/images/flour-line.svg");
}
.borderline-leaf {
  background-image: url("/campaign/images/leaf-line.svg");
}

.fire {
  height: 100px;
  background-position: 50%;
}
@media only screen and (max-width: 767px) {
  .fire {
    background-size: cover;
  }
}
.fire-top {
  margin-top: -100px;
  z-index: 3;
}
.fire-red {
  background-image: url("/campaign/images/fire-red.svg");
}
.fire-orange {
  background-image: url("/campaign/images/fire-orange.svg");
}
.fire-yellow {
  background-image: url("/campaign/images/fire-yellow.svg");
}

.period {
  text-align: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 1.5em;
  font-family: "D-DIN-Condensed-Bold";
  font-weight: bold;
  line-height: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .period {
    font-size: 1.5em;
    padding: 0.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .period .title {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .period .title {
    display: block;
    font-size: 3vw;
    margin-bottom: 0.5rem;
  }
}
.period .number {
  font-size: 2em;
  padding: 0 5px;
}
.period small {
  font-size: 70%;
}

.sns-list {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media not all and (-webkit-min-device-pixel-ratio: 0),
  not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (not (translate: none)) {
    .sns-list li {
      margin-left: 10px;
    }
  }
}
.sns-list img {
  width: 40px;
}
@media print, screen and (min-width: 768px) {
  .sns-list img {
    width: 96px;
  }
}

.sns .sns-list img {
  width: 190px;
}

@media screen and (max-width: 544px) {
  .sns .sns-list img {
    width: 100%;
    max-width: 150px;
  }
}
.flex {
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .flex figure {
    margin: 0;
  }
  .flex.web-site {
    flex-direction: column;
  }
}

@media not all and (-webkit-min-device-pixel-ratio: 0),
  not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (not (translate: none)) {
    @media print, screen and (min-width: 768px) {
      .flex-item + .flex-item {
        margin-left: 15px;
      }
    }
    @media only screen and (max-width: 767px) {
      .flex-item + .flex-item {
        margin-top: 15px;
      }
    }
  }
}

.inner {
  max-width: 1079px;
  margin: 0 auto;
  padding: 1em 1.5em;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 1em 0;
  }
}

header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  padding: 0 1em;
  background-color: #ec6101;
}
@media print, screen and (min-width: 768px) {
  header {
    padding: 0 2em;
  }
}
header .heder-logo {
  width: 150px;
  padding: 1em 1em 0 0;
}
@media print, screen and (min-width: 768px) {
  header .heder-logo {
    width: 200px;
  }
}
footer {
  background-color: #ec6101;
}

.key-visual {
  position: relative;
  background: url("/campaign/images/kv-back02.jpg") no-repeat;
  background-size: cover;
  background-position: 50%;
  padding-top: 1em;
}
@media only screen and (max-width: 767px) {
  .key-visual {
    padding-top: 4em;
  }
}
.key-visual .fire {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  z-index: 2;
}
.key-visual h1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10%;
  max-width: 1079px;
  z-index: 3;
  padding: 0 0.5em;
}
.key-visual img {
  max-width: 1264px;
  margin: auto;
  display: block;
}

.key-visual-end {
  margin: 0 auto;
  padding: 76.89px 0 1em;
}
@media only screen and (max-width: 767px) {
  .key-visual-end {
    padding: 72px 0 1em;
  }
}
.key-visual-end img {
  max-width: 1031px;
}

.about-campaign .inner {
  padding: 0 1.5em 1em;
}
.about-campaign .lead {
  margin-top: 10%;
}
@media print, screen and (min-width: 768px) {
  .about-campaign .lead {
    margin: 2em 0;
  }
}
.about-campaign .lead p {
  line-height: 1.8em;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .about-campaign .lead p {
    font-size: 1.1em;
  }
}

.campaign-banner {
  margin-top: 2em;
}
.campaign-banner div {
  text-align: center;
  flex-basis: 100%;
}
@media print, screen and (min-width: 768px) {
  .campaign-banner div {
    flex-basis: 50%;
  }
}
.campaign-banner a {
  display: block;
  text-align: center;
}
.campaign-banner a img {
  border-radius: 5px;
}

.movie h2 {
  max-width: 500px;
  margin: 0 auto;
}
.movie-main {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1.5em 0;
}
.movie-main iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie .hamburg-youtube {
  margin-top: 1em;
}
.movie .hamburg-youtube picture img {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 1.5em;
}
.movie .hamburg-youtube-button {
  background-color: #bf111b;
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 10px;
  display: block;
  border-bottom: 2px solid #860d13;
  font-size: 1.3em;
}
@media print, screen and (min-width: 768px) {
  .movie .hamburg-youtube-button {
    font-size: 1.5em;
  }
}
.movie .hamburg-youtube-button:hover {
  background: #f53c45;
}

.campaign-01 .period {
  margin-block: 1rem;
}

.gift ul li {
  flex-basis: 100%;
}
@media print, screen and (min-width: 768px) {
  .gift ul li {
    flex-basis: 33.3333%;
  }
}

.way-to-twitter h4 {
  text-align: center;
  margin-top: 1.5em;
}
.way-to-twitter h4::before,
.way-to-twitter h4::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 24px;
  background-image: url(/campaign/images/twitter-icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin: 0 5px 5px;
}
.way-to-twitter ol li {
  border: 1px solid #1da1f2;
  background-color: #fff;
  flex-basis: 100%;
}
@media print, screen and (min-width: 768px) {
  .way-to-twitter ol li {
    flex-basis: 33.3333%;
  }
}
.way-to-twitter ol li .step-title {
  text-align: center;
  background-color: #1da1f2;
  padding: 5px 1.5em;
  color: #fff;
  font-size: 1.5em;
  font-family: "D-DIN-Condensed-Bold";
}
.way-to-twitter ol li .step-text {
  padding: 0 1em 1em;
  text-align: center;
}
.way-to-twitter ol li .step-text p {
  font-weight: bold;
}
.way-to-twitter ol li .step-text p a {
  color: #1da1f2;
}
.way-to-twitter ol li .step-text img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}
.way-to-twitter .lead {
  margin: 2em 0;
}
.way-to-twitter .lead strong {
  font-size: 1.1em;
}
@media print, screen and (min-width: 992px) {
  .way-to-twitter .lead strong {
    font-size: 1.5em;
  }
}
.way-to-twitter .rule {
  background: #fff;
  border: 1px solid #1da1f2;
  text-align: center;
  padding: 1.5em;
  margin-top: 1em;
}
.way-to-twitter .rule p {
  margin-top: 0;
}
.way-to-twitter .rule a {
  color: #1da1f2;
  font-weight: bold;
  text-decoration: underline;
}
.way-to-twitter .rule a:hover {
  opacity: 0.6;
}

.twitter-button a {
  background: #1da1f2;
  padding: 1em;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  display: block;
  text-align: center;
  border-bottom: 2px solid #277eb4;
  flex-basis: 100%;
}
@media print, screen and (min-width: 768px) {
  .twitter-button a {
    flex-basis: 50%;
  }
}
.twitter-button a:hover {
  background-color: #65b9ee;
}

.twitter-timeline-wrap {
  margin: 2em 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3em;
}

.web-site li {
  flex-basis: 100%;
}
@media print, screen and (min-width: 768px) {
  .web-site li {
    flex-basis: 33.3333%;
  }
}
.web-site li a {
  padding: 1em;
  background-color: #350000;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 5px;
  border-bottom: 2px solid #311818;
}
.web-site li a span {
  position: relative;
}
.web-site li a span::before,
.web-site li a span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -2px;
}
.web-site li a span::before {
  background-image: url(/campaign/images/folk.svg);
  left: -25px;
}
.web-site li a span::after {
  background-image: url(/campaign/images/knife.svg);
  right: -33px;
}
.web-site li a:hover {
  background-color: #6e3838;
}

.web-site.sns {
  margin-bottom: 4rem;
}
.web-site.sns li a {
  background-color: transparent;
  border-bottom: 0;
}

.page-top-button {
  width: 130px;
  display: block;
  margin: 0 auto;
}

.follow-button {
  position: fixed;
  width: 80px;
  bottom: 4em;
  right: 1em;
  z-index: 100;
}
@media print, screen and (min-width: 768px) {
  .follow-button {
    width: 100px;
  }
}

.foot {
  padding-block: 1em 0;
}
.foot p {
  color: #fff;
  font-size: 0.8em;
  padding: 2em;
}

.copy {
  background-color: #350000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
}

.gift figcaption {
  color: #fff;
  text-align: center;
}

.about-main {
  margin: 0 auto;
  text-align: center;
}
.about-main h3 {
  color: #fff;
  text-align: left;
}
.about-main p {
  text-align: left;
  color: #fff;
  font-weight: bold;
}

.sns-wrap {
  display: flex;
  margin-bottom: 3rem;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .sns-wrap {
    display: block;
  }
  .sns-wrap div {
    text-align: center;
  }
  .sns-wrap div img {
    margin-bottom: 1rem;
  }
}

.etc {
  background-color: #ec6101;
}

.etc .inner {
  padding-inline: 1.5em;
}

.etc h2 {
  color: white;
  margin: 2rem auto 1rem;
}

.winnerTable h2 {
  color: #e6450a;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .winnerTable h2 {
    text-align: left;
  }
}
.winnerTable h3 {
  color: white;
  margin: 1rem 0;
  text-align: left;
}
.winnerTable-box table {
  width: 100%;
}
.winnerTable-box table th,
.winnerTable-box table td {
  text-align: center;
}
.winnerTable-box table th {
  background-color: #fff;
  color: #e6450a;
  padding: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .winnerTable-box table th {
    display: none;
  }
}
.winnerTable-box table td {
  color: #fff;
  padding: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .winnerTable-box table td {
    display: block;
    text-align: left;
  }
  .winnerTable-box table td:nth-child(1) {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .winnerTable-box table td {
    border-bottom: 1px solid #fff;
    vertical-align: top;
  }
}
.winnerTable-box table td:nth-child(3) {
  font-weight: bold;
}
.winnerTable-box table td:nth-child(3)::after {
  content: "さん";
  font-size: 80%;
  padding-left: 0.25rem;
  vertical-align: text-bottom;
}
.winnerTable-box table td:last-child {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 768px) {
  .winnerTable-box table td:nth-child(even) {
    white-space: nowrap;
  }
}
.winnerTable a {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .winnerTable a {
    text-align: center;
  }
}

.kv-ttl-end {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .kv-ttl-end {
    margin-bottom: 0;
  }
  .kv-ttl-end .camYamada img {
    margin-top: 0;
  }
}

.kv-img {
  position: relative;
}

.kv-img_top,
.kv-img_bottom {
  background-size: 100% 100%;
  width: 100%;
  height: 60px;
  display: block;
}
.kv-img_top {
  background-image: url(../images/border_top.webp);
}
.kv-img_bottom {
  background-image: url(../images/border_bottom.webp);
}

.mb-3 {
  margin-bottom: 1rem;
}

.inner.rule ul li {
  list-style-type: disc;
}

.camYamada {
  text-align: center;
}
.camYamada img {
  width: 100%;
  max-width: 1030px;
  margin: 2rem auto 0;
}
@media only screen and (max-width: 767px) {
  .camYamada img {
    padding: 10px;
    margin: 1em auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .inner.rule {
    margin: 3em 10px !important;
  }
  .inner.oubo {
    padding-bottom: 0.5em;
  }
}
.imgArc h2 {
  font-size: 24px;
  margin-top: 2rem;
}
.imgArc h3 {
  background-color: #fff;
  padding: 0.5em 0.9em;
  border-radius: 5px;
  line-height: 1.3;
  color: #ec6c00;
  border-bottom: none;
  margin: 0;
}
.imgArc-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.imgArc-wrap figure {
  width: 48%;
  background-color: #fff;
  margin: 1rem 0;
}
.imgArc-wrap figure figcaption {
  text-align: center;
  font-weight: bold;
  padding: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .imgArc-wrap {
    flex-direction: column;
  }
  .imgArc-wrap figure {
    width: 100%;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.about-campaign a {
  color: white;
  text-decoration: underline;
}
.about-campaign a:hover {
  opacity: 0.7;
}

.campaign-01 h2,
.campaign-02 h2,
.campaign-03 h2 {
  color: #e6450a;
  background-color: #fff;
  margin-block: 0 1rem;
  font-size: 3rem;
}

.campaign-01 .inner .ouboImg,
.campaign-02 .inner .ouboImg,
.campaign-03 .inner .ouboImg {
  position: relative;
}
.campaign-01 .inner .ouboImg h2,
.campaign-02 .inner .ouboImg h2,
.campaign-03 .inner .ouboImg h2 {
  background-color: #fff;
  color: #ec6c00;
  margin: 2rem 0;
}
.campaign-01 .inner .ouboImg::after,
.campaign-02 .inner .ouboImg::after,
.campaign-03 .inner .ouboImg::after {
  position: absolute;
  content: "";
  background-color: #fff;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.7;
}
.campaign-01 .inner .ouboImg .camEnd,
.campaign-02 .inner .ouboImg .camEnd,
.campaign-03 .inner .ouboImg .camEnd {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 20;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #bf111b;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .campaign-01 .inner .ouboImg .camEnd,
  .campaign-02 .inner .ouboImg .camEnd,
  .campaign-03 .inner .ouboImg .camEnd {
    font-size: 16px;
  }
}
.campaign-01 .inner h3,
.campaign-02 .inner h3,
.campaign-03 .inner h3 {
  color: #fff;
  text-align: left;
}
.campaign-01 .inner h4,
.campaign-02 .inner h4,
.campaign-03 .inner h4 {
  color: #fff;
}

.giftList .giftA {
  display: flex;
}
.giftList .giftA > div {
  margin: 0.5rem;
  border: 3px solid red;
  background-color: #fff;
}
.giftList .giftA > div p {
  margin: 0 0.5rem 0.5rem;
}
.giftList .giftA > div .leftAw {
  width: 33%;
  margin: 0.25rem;
}
.giftListWrap > div {
  position: relative;
}
.giftListWrap > div .rightAw {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 33%;
}

.giftLi {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.giftLi li img {
  max-width: 200px;
  margin: 5px 0;
}

.about-8anniv .d-flex {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .about-8anniv .d-flex {
    display: block;
  }
}
.about-8anniv .d-flex > div {
  width: 100%;
}

h3 + p {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  h3 + p {
    font-size: 14px;
  }
}

.mainText {
  margin-top: 2rem;
}
.mainText p {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.mainText p span {
  font-weight: bold;
  font-size: 120%;
}
@media only screen and (max-width: 767px) {
  .mainText p {
    font-size: 14px;
    padding-inline: 1.5em;
  }
}
.mainText .mainBn {
  display: flex;
}
.mainText .mainBn > a {
  display: block;
  background-color: #fff;
  font-weight: bold;
  width: 100%;
  margin: 0.5rem;
  padding: 1rem;
  text-align: center;
  border: 3px solid;
  color: #000;
  text-decoration: none;
}
.mainText .mainBn > a div span {
  color: #bf111b;
  font-size: 120%;
}
@media only screen and (max-width: 767px) {
  .mainText .mainBn {
    flex-direction: column;
  }
  .mainText .mainBn > a {
    font-size: 80%;
  }
  .mainText .mainBn > a span br {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}
.smallText {
  margin: 0 auto;
  text-align: center;
}
.smallText p {
  display: inline-block;
  text-align: left;
  font-size: 70%;
  line-height: 20px;
  margin-bottom: 0;
}

.insta_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.insta_list li {
  position: relative;
  width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 750px) {
  .insta_list li {
    width: calc((100% - 20px) / 2);
  }
}
.insta_list li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.insta_list a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.insta_btn {
  background-color: #542b21;
  width: 100%;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 5px;
  border-bottom: 2px solid #542b21;
  transition: 0.3s;
}

.insta_btn a {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bolder;
  text-decoration: none;
}

@media screen and (max-width: 544px) {
  .insta_btn a {
    font-size: 1rem;
  }
}
.insta_btn img {
  width: 1.25rem;
  margin: 0 0 3px 4px;
  font-weight: bolder;
}

.insta_btn:hover {
  background-color: #7a3f31;
}

.note {
  position: relative;
  img {
    position: absolute;
    height: 100%;
  }
  ul {
    margin: 0;
  }
}

.note-text {
  position: relative;
  z-index: 1;
  padding-inline: 100px;
  .top_text {
    font-size: 20px;
  }
  > ul {
    margin: 16px 0 0 0;
  }
  ul {
    padding-inline-start: 16px;
  }
  @media only screen and (max-width: 767px) {
    padding-inline: 60px;
    .top_text {
      font-size: 16px;
    }
  }
}

.footlogo {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ec6101;
}
.footlogo_img {
  max-width: 240px;
  margin: 0 auto;
  @media only screen and (max-width: 767px) {
    max-width: 180px;
  }
}
.footlogo_text {
  position: absolute;
  bottom: 0;
  right: 6em;
  color: white;
  @media only screen and (max-width: 767px) {
    right: 1em;
  }
}
