@charset "UTF-8";
.for-large {
  display: none;
}

.for-small {
  display: block;
}

.hover-fade {
  transition-property: opacity;
  transition-duration: var(--animate-duration);
  transition-timing-function: var(--animate-easing);
  transition-delay: 0s;
}
.hover-fade:hover {
  opacity: var(--animate-opacity);
}

.img-fit {
  height: auto;
  width: 100%;
}

.layout-max,
.layout-primary,
.layout-secondary {
  margin-right: var(--margin-side-small);
  margin-left: var(--margin-side-small);
  width: auto;
}

.ol-lower,
.ol-number,
.ol-upper {
  overflow: visible;
  padding-left: 2rem;
}

.ol-lower {
  list-style-type: lower-alpha;
}

.ol-number {
  list-style-type: decimal;
}

.ol-upper {
  list-style-type: upper-alpha;
}

.text-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.ul-disc,
.ul-halfnote,
.ul-hyphen,
.ul-note {
  overflow: hidden;
}
.ul-disc li,
.ul-halfnote li,
.ul-hyphen li,
.ul-note li {
  padding-left: 1em;
}
.ul-disc li:before,
.ul-halfnote li:before,
.ul-hyphen li:before,
.ul-note li:before {
  margin-left: -1rem;
  width: 1rem;
}

.ul-disc li:before {
  content: "・";
}

.ul-halfnote li:before {
  content: "*";
}

.ul-hyphen li:before {
  content: "-";
}

.ul-note li:before {
  content: "※";
}

.site-block {
  padding: 3.75rem 0;
  position: relative;
}
.site-block > * {
  position: relative;
  z-index: 2;
}
.site-block + .site-block {
  padding-top: 0;
}
.site-block:first-child {
  padding-top: 0;
}
.site-block:last-child {
  padding-bottom: 2.188rem;
}
.site-block.-fill::before {
  background-color: var(--color-project-orange);
  content: "";
  height: calc(100% - 0.625rem);
  position: absolute;
  top: 0.625rem;
  left: -3.125rem;
  width: calc(100% + 6.25rem);
  z-index: 1;
}
.site-block.-fill::after {
  background-color: var(--color-project-orange);
  content: "";
  -webkit-mask-image: url(../images/common/deco_bg_sp.svg);
  mask-image: url(../images/common/deco_bg_sp.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: 100vw;
  mask-size: 100vw;
  padding-top: 12.9333333333vw;
  position: absolute;
  top: -0.625rem;
  left: max(-7.69vw, -1.875rem);
  width: min(100% + 15.38vw, 100% + 3.75rem);
  z-index: 1;
}
.site-block.-fill + .-fill::before {
  height: 100%;
  top: 0;
}
.site-block.-fill + .-fill::after {
  content: none;
}
.site-block.-fill + .site-block:not(.-fill) {
  padding-top: 3.75rem;
}
.site-block.-fill + .site-block:not(.-fill)::after {
  background-color: var(--color-project-orange);
  content: "";
  -webkit-mask-image: url(../images/common/deco_bg_sp.svg), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect x="0" y="0" height="100" width="100"/></svg>');
  mask-image: url(../images/common/deco_bg_sp.svg), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect x="0" y="0" height="100" width="100"/></svg>');
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: center top, center top;
  mask-position: center top, center top;
  -webkit-mask-size: 100vw, 100vw;
  mask-size: 100vw, 100vw;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding-top: 12.8vw;
  position: absolute;
  top: 0;
  left: max(-7.69vw, -1.875rem);
  width: min(100% + 15.38vw, 100% + 3.75rem);
  z-index: 1;
}
.site-block:not(.-fill) + .site-block.-fill {
  padding-top: 0;
}

.site-button-primary {
  transition-property: background, border, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background-color: var(--color-project-red);
  border: 5px solid var(--color-white);
  border-radius: 100vw;
  box-shadow: 6px 7px 4px rgba(86, 49, 9, 0.6);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.195em;
  line-break: strict;
  line-height: 1.2;
  overflow-wrap: anywhere;
  padding: 0.938rem 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
}
.site-button-primary > .sub {
  font-size: 0.625rem;
  display: block;
  letter-spacing: 0.14em;
}
.site-button-primary::after {
  transition-property: opacity, filter, transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.3, 1.275);
  transition-delay: 0s;
  background: url(../images/common/text_tap.svg) center center no-repeat;
  background-size: contain;
  content: "";
  height: 2.5rem;
  position: absolute;
  top: -2.5rem;
  left: -1.25rem;
  width: 3.125rem;
}
.site-button-primary:hover {
  background-color: var(--color-white);
  color: var(--color-project-red);
}
.site-button-primary:hover::after {
  animation: hoverJump 0.45s ease 0s;
}
.site-button-primary.-short {
  border-width: 2px;
  box-shadow: 2px 3px 1px rgba(86, 49, 9, 0.45);
  font-size: 1rem;
  letter-spacing: 0.09em;
  padding: 0.625rem 1.25rem;
}
.site-button-primary.-short::after {
  content: none;
}
.site-button-primary.-disabled {
  background-color: #c8c8c8;
  box-shadow: none;
  pointer-events: none;
}

.site-button-text {
  transition-property: background-size;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #6d2800 0%);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  color: var(--color-project-brown);
  text-decoration: none;
}
.site-button-text::after {
  background-color: currentColor;
  content: "";
  display: inline;
  -webkit-mask-image: url(../images/icon/arrow_right-secondary.svg);
  mask-image: url(../images/icon/arrow_right-secondary.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 0.875rem;
  width: 0.875rem;
}
.site-button-text:hover {
  background-position: right bottom;
  background-size: 0 1px;
}

@keyframes hoverJump {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: scale(1.02, 0.98);
  }
  50% {
    transform: translateY(-10px) scale(0.98, 1.02);
  }
  90% {
    transform: translateY(0) scale(1.01, 0.99);
  }
  100% {
    transform: scale(1);
  }
}
.site-heading-belt {
  background-color: var(--color-project-cream);
  border-radius: 100vw;
  color: var(--color-project-brown);
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.145em;
  line-break: strict;
  line-height: 1.15;
  margin: auto;
  overflow-wrap: anywhere;
  padding: 0.625rem 2.188rem 0.625rem calc(1.25rem + 0.145em);
  position: relative;
  text-align: center;
  width: 100%;
  word-break: keep-all;
}
.site-heading-belt::after {
  background: url(../images/campaign/image_character.svg) center center no-repeat;
  background-size: contain;
  content: "";
  height: 3.75rem;
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 3rem;
}

.site-heading-simple {
  font-feature-settings: "palt" 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.0975em;
  line-height: 1.75;
}
.site-heading-simple.-factor-1 {
  font-size: 1.375rem;
  line-height: 1.5;
}
.site-heading-simple.-center-all {
  text-align: center;
}

.site-logo > svg {
  height: 38px;
  width: 62px;
}

.site-text-standard {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.165em;
  line-height: 1.75;
  word-break: normal;
}
.site-text-standard.-center {
  text-align: center;
}
.site-text-standard + .site-text-standard {
  margin-top: 1.75em;
}
@media screen and (min-width: 768px) {
  .for-large {
    display: block;
  }
  .for-small {
    display: none;
  }
  .layout-max,
  .layout-primary,
  .layout-secondary {
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--margin-side);
    padding-left: var(--margin-side);
  }
  .layout-max {
    max-width: calc(var(--content-max) + var(--margin-side) * 2);
  }
  .layout-primary {
    max-width: calc(var(--content-primary) + var(--margin-side) * 2);
  }
  .layout-secondary {
    max-width: calc(var(--content-secondary) + var(--margin-side) * 2);
  }
  .site-block {
    padding: 8.125rem 0;
  }
  .site-block:last-child {
    padding-bottom: 9.375rem;
  }
  .site-block.-fill::before {
    height: calc(100% - 2.5rem);
    top: 2.5rem;
  }
  .site-block.-fill::after {
    -webkit-mask-image: url(../images/common/deco_bg.svg);
    mask-image: url(../images/common/deco_bg.svg);
    -webkit-mask-size: calc(2560 / var(--font) * 1rem);
    mask-size: calc(2560 / var(--font) * 1rem);
    padding-top: calc(192 / var(--font) * 1rem);
    top: -2.5rem;
    left: -3.125rem;
    width: calc(100% + 6.25rem);
  }
  .site-block.-fill + .site-block:not(.-fill) {
    padding-top: 8.125rem;
  }
  .site-block.-fill + .site-block:not(.-fill)::after {
    -webkit-mask-image: url(../images/common/deco_bg.svg), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect x="0" y="0" height="100" width="100"/></svg>');
    mask-image: url(../images/common/deco_bg.svg), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect x="0" y="0" height="100" width="100"/></svg>');
    -webkit-mask-size: calc(2560 / var(--font) * 1rem), calc(2560 / var(--font) * 1rem);
    mask-size: calc(2560 / var(--font) * 1rem), calc(2560 / var(--font) * 1rem);
    padding-top: calc(192 / var(--font) * 1rem - 1px);
    top: 0;
    left: -3.125rem;
    width: calc(100% + 6.25rem);
  }
  .site-button-primary {
    font-size: 2rem;
    min-width: 37.5rem;
    padding: 0.938rem 3.75rem;
  }
  .site-button-primary > .sub {
    font-size: 1rem;
  }
  .site-button-primary::after {
    height: 4.25rem;
    top: -3.125rem;
    left: -3.625rem;
    width: 5.375rem;
  }
  .site-button-primary.-short {
    min-width: auto;
  }
  .site-heading-belt {
    font-size: 2.25rem;
    letter-spacing: 0.165em;
    padding: 0.625rem 4.688rem 0.625rem calc(3.438rem + 0.165em);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .site-heading-belt::after {
    height: 4.875rem;
    width: 3.875rem;
  }
  .site-heading-simple {
    font-size: 1.125rem;
  }
  .site-heading-simple.-factor-1 {
    font-size: 2.25rem;
  }
  .site-heading-simple.-center {
    text-align: center;
  }
  .site-logo > svg {
    height: 49px;
    width: 78px;
  }
  .site-text-standard {
    font-size: 0.875rem;
  }
}