@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  user-select: none !important;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

@media (max-width: 479px) {
  /* 小型スマートフォン向けのスタイル */
}
@media (min-width: 480px) and (max-width: 767px) {
  /* 大型スマートフォン向けのスタイル */
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* 小型タブレット向けのスタイル */
}
@media (min-width: 1024px) and (max-width: 1279px) {
  /* 大型タブレット向けのスタイル */
}
@media (min-width: 1280px) and (max-width: 1599px) {
  /* 小型PC向けのスタイル */
}
@media (min-width: 1600px) {
  /* 大型PC向けのスタイル */
}
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
body {
  background-color: #FFFCC9;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  color: #1F3134;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  font-family: "M PLUS Rounded 1c", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.no-scroll {
  height: 100vh; /* ビューポートいっぱいの高さ */
  overflow-y: hidden; /* 垂直スクロールを隠す */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  color-scheme: light;
}

.scrollSet {
  opacity: 0;
  filter: blur(20px);
  will-change: filter;
  transition: opacity 0.5s ease, filter 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.scrollSet.blurIn {
  opacity: 1;
  animation: pop-shake 1s ease forwards;
  filter: blur(0);
}

#history .scrollSet {
  opacity: 0;
  filter: blur(20px);
  will-change: filter;
  transition: opacity 0.5s ease, filter 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
#history .scrollSet.blurIn {
  opacity: 1;
  animation: 1s ease forwards;
  filter: blur(0);
}

@keyframes pop-shake {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.l-header {
  z-index: 11;
}
.l-header__nav {
  background-color: #FFE45E;
  position: fixed;
  right: -700px;
  top: 0;
  height: 100dvh;
  height: 100vh;
  transition: all 0.5s;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url("../img/open_kirin.png");
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    width: 520px;
    background-size: 200px auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    width: 92vw;
    background-size: 51.2vw auto;
    overflow-y: scroll;
    height: 100dvh;
    height: 100vh;
  }
}
.l-header__nav--inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__nav--inner {
    padding: 80px 50px 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--inner {
    padding: 9vw 6vw 5vw 7.6vw;
  }
}
.l-header__nav--inner a {
  text-decoration: none;
}
.l-header__nav--lists {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-header__nav--sns {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--sns {
    width: 48.7vw;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav--snsitem {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--snsitem {
    margin: 0 0 8px;
  }
}
.l-header__mask {
  width: 100%;
  height: 100dvh;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  display: none;
  z-index: 9 !important;
}

.open .l-header__nav {
  right: 0;
  opacity: 1;
}
.open .l-header__mask {
  display: block;
  position: fixed;
  top: 0;
  cursor: pointer;
  z-index: 2;
}

.l-policy__ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .l-policy__ttl {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 112%;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__ttl {
    font-size: 16px;
    font-size: 1rem;
    line-height: 112%;
  }
}
@media screen and (max-width: 479px) {
  .l-policy__ttl {
    font-size: 4.1vw;
    line-height: 112%;
  }
}
.l-policy__subttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .l-policy__subttl {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 112%;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__subttl {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 112%;
  }
}
@media screen and (max-width: 479px) {
  .l-policy__subttl {
    font-size: 3.33vw;
    line-height: 112%;
  }
}
.l-policy__h5 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .l-policy__h5 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__h5 {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 172%;
  }
}
@media screen and (max-width: 479px) {
  .l-policy__h5 {
    font-size: 3.33vw;
    line-height: 172%;
  }
}
@media screen and (min-width: 768px) {
  .l-policy__txtwrap {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__txtwrap {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 479px) {
  .l-policy__txtwrap {
    margin: 0 auto 5.12vw;
  }
}
@media screen and (min-width: 768px) {
  .l-policy__blc {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__blc {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-policy__smallblc {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-policy__smallblc {
    margin: 0 0 10px;
  }
}

.l-yoyaku {
  z-index: 10;
  background: url("../img/bg_red.png") no-repeat 0 0;
  background-size: 100% auto;
  background-color: #E5006A;
  padding-bottom: 20px;
}
.l-yoyaku.yellow {
  background: url("../img/bg_y-red.png") no-repeat 0 0;
  background-size: 100% auto;
  background-color: #E5006A;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .l-yoyaku {
    background: url("../img/bg_w-red-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    background-color: #E5006A;
  }
  .l-yoyaku.yellow {
    background: url("../img/bg_yellow-red-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    background-color: #E5006A;
    margin-top: -2px;
  }
}
@media screen and (min-width: 768px) {
  .l-yoyaku__inner {
    padding: 40px 0;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-yoyaku__inner {
    padding: 5.12vw 0 10.24vw;
  }
}
.l-yoyaku__ttlwrap {
  margin: 0 auto 20px;
}
.l-yoyaku__noticewrap {
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .l-yoyaku__txtwrap {
    margin: 10px auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-yoyaku__txtwrap {
    margin: 20px auto;
  }
}
.l-yoyaku__btn {
  display: block;
  width: 100%;
  margin: 0 auto 20px;
}
.l-yoyaku__faq {
  border: solid 1px #FFFFFF;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .l-yoyaku__faq {
    padding: 40px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-yoyaku__faq {
    padding: 5.12vw;
    margin-top: 10.24vw;
  }
}
.l-yoyaku__faq--btnblc {
  border-bottom: dotted 2px #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-yoyaku__faq--btnblc {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-yoyaku__faq--btnblc {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.l-yoyaku__faq--btn {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-yoyaku__faq--btn {
    width: 360px;
    margin: 0 auto;
  }
}
#home .l-yoyaku {
  z-index: 10;
  background: url("../img/bg_y-red.png") no-repeat 0 0;
  background-size: 100% auto;
  background-color: #E5006A;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #home .l-yoyaku {
    background: url("../img/bg_yellow-red-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    background-color: #E5006A;
  }
}

.l-footer {
  z-index: 10;
  background: url("../img/bg_red-yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    background: url("../img/bg_red-sp.png") no-repeat 0 0;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 20px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 15vw 0 30vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 326px;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 83.6vw;
    max-width: 326px;
    margin: 0 auto 15vw;
  }
}
.l-footer__kirin {
  position: absolute;
  z-index: 1;
}
.l-footer__kirin img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .l-footer__kirin {
    width: 166px;
    top: 0;
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__kirin {
    width: 33vw;
    left: 0;
    top: -9vw;
  }
}
.l-footer__txt {
  background: url("../img/footer_txt.png") no-repeat 0 0;
  background-size: 100% auto;
  white-space: nowrap;
  text-indent: -9999px;
  width: 208px;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .l-footer__txt {
    margin: 0 auto 30px;
    width: 208px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__txt {
    margin: 0 auto 20px;
    width: 208px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  .l-footer__txt {
    margin: 0 auto 5.12vw;
    width: 53.33vw;
    height: 6.41vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns + .l-footer__sns {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__sns--wrap {
    width: 500px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns--wrap {
    width: 290px;
    margin: 0 auto 15vw;
  }
}
@media screen and (max-width: 479px) {
  .l-footer__sns--wrap {
    width: 74vw;
    margin: 0 auto 15vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__links {
    width: 380px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    margin: 0 auto 15vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__links--item {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__links--item + .l-footer__links--item {
    margin: 18px auto 0;
  }
}
@media screen and (max-width: 479px) {
  .l-footer__links--item + .l-footer__links--item {
    margin: 4.61vw auto 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 30px;
  }
}
@media screen and (max-width: 479px) {
  .l-footer__copy {
    margin-top: 7.7vw;
  }
}

.l-fv {
  width: 100%;
  background-size: cover;
  position: relative;
  background-color: #e6006b;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-fv {
    height: 678px;
    background-image: url("../img/bg_kv.png");
  }
}
@media screen and (max-width: 767px) {
  .l-fv {
    background-image: url("../img/sp-bg_kv.jpg");
    height: 123vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-fv {
    background-image: url("../img/tb-bg_kv.jpg");
    height: 86.5vw;
    height: calc(86.5vw + 30px);
  }
}
.l-fv__notewrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: -20px auto 0;
  border: solid 1px #4efdff;
  text-decoration: none;
  padding: 5px 10px;
  max-width: 700px;
  width: 80vw;
}
.l-fv__notearrow {
  background-image: url("../img/arrow_top.png");
  width: 16px;
  height: 16px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
}
.l-fv__note {
  color: #4efdff;
  font-size: 12px;
  font-size: 0.75rem;
}
.l-fv__btm {
  background-color: #FFE45E;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-fv__btm {
    height: 100px;
  }
}
.l-fv__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-fv__logo {
    width: 505px;
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__logo {
    width: 87.1vw;
    top: 12.8vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-fv__logo {
    width: 65.7vw;
    top: 3.9vw;
  }
}
.l-fv__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-fv__img {
    width: 668px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__img {
    width: 99vw;
    bottom: 5.12vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-fv__img {
    width: 84.9vw;
    bottom: 2.6vw;
  }
}
.l-fv__event {
  background-color: #FFE45E;
}
@media screen and (min-width: 768px) {
  .l-fv__picture {
    margin: 20px auto 24px;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__picture {
    margin: 20px auto 24px;
  }
}
.l-fv__picture img {
  border-radius: 20px;
}
.l-fv__txtwrap {
  padding-bottom: 24px;
}
.l-fv__usagi {
  position: absolute;
  z-index: 1;
}
.l-fv__usagi img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .l-fv__usagi {
    width: 127px;
    top: 190px;
    right: -12px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__usagi {
    display: none;
  }
}
.l-fv__lion {
  position: absolute;
  z-index: 1;
}
.l-fv__lion img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .l-fv__lion {
    width: 144px;
    top: 360px;
    left: -35px;
  }
}
@media screen and (max-width: 767px) {
  .l-fv__lion {
    display: none;
  }
}
.l-main__inner {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__inner {
    width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-main__inner {
    padding: 0 5.12vw;
  }
}
.l-main__inner02 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__inner02 {
    width: 1080px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-main__inner02 {
    padding: 0 5.12vw;
  }
}
.l-main__topbg {
  margin-top: -1px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__topbg {
    width: 700px;
    margin: -1px auto 0;
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__topbg {
    padding: 0 5.12vw;
    padding-top: 20.5vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-main__topbg {
    padding: 0 5.12vw;
    padding-top: 150px;
  }
}
.l-main__topbg.pagetop {
  padding-top: 0;
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-main__topbg.padding0 {
    padding: 0;
  }
}
.l-main__border-area {
  position: relative;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-main__border-area {
    border-radius: 20px;
    padding: 80px 80px 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__border-area {
    border-radius: 20px;
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 479px) {
  .l-main__border-area {
    border-radius: 20px;
    padding: 7.7vw 5.12vw 5.12vw;
  }
}
.l-main__border-num {
  position: relative;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-main__border-num {
    border-radius: 20px;
    padding: 80px 80px 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__border-num {
    border-radius: 20px;
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 479px) {
  .l-main__border-num {
    border-radius: 20px;
    padding: 10.25vw 5.12vw 5.12vw;
  }
}
.l-main__border {
  position: relative;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-main__border {
    border-radius: 20px;
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__border {
    border-radius: 20px;
    padding: 40px 20px 20px;
  }
}
.l-main__numttl--wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-main__numttl--wrap {
    top: -55px;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__numttl--wrap {
    top: -40px;
    width: 80px;
  }
}
@media screen and (max-width: 479px) {
  .l-main__numttl--wrap {
    top: -10.25vw;
    width: 20.5vw;
  }
}
@media screen and (min-width: 768px) {
  .l-main__border--box {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__border--box {
    margin-top: 12.9vw;
    padding-bottom: 13vw;
  }
}
.l-main__threeblc {
  width: 32.4%;
}
.l-main__dottedblc {
  border-bottom: 2px dotted #000;
  border-radius: 2px;
}
.l-main__picture--wrap {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-main__picture--wrap {
    max-width: 500px;
    padding: 20px 0;
  }
  .l-main__picture--wrap img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__picture--wrap {
    padding: 10px 0;
  }
  .l-main__picture--wrap img {
    border-radius: 10px;
  }
}
.l-main__picture--wrap-swipe {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-main__picture--wrap-swipe {
    max-width: 500px;
    padding: 20px 0;
  }
  .l-main__picture--wrap-swipe img {
    border-radius: 20px;
    border: solid 3px #FFE45E;
  }
}
@media screen and (max-width: 767px) {
  .l-main__picture--wrap-swipe {
    padding: 10px 5%;
  }
  .l-main__picture--wrap-swipe img {
    border-radius: 10px;
    border: solid 3px #FFE45E;
  }
}
@media screen and (min-width: 768px) {
  .l-main__picture--yellow img {
    border-radius: 20px;
    border: solid 3px #FFE45E;
  }
}
@media screen and (max-width: 767px) {
  .l-main__picture--yellow img {
    border-radius: 10px;
    border: solid 3px #FFE45E;
  }
}
@media screen and (min-width: 768px) {
  .l-main__yoyakubtnwrap {
    padding: 20px 0;
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-main__yoyakubtnwrap {
    padding: 20px 0;
    width: 82vw;
    margin: 0 auto;
  }
}
.l-main__inner02 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__inner02 {
    width: 1080px;
    margin: 0 auto;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-main__inner02 {
    padding: 0 5.12vw;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-main__inner02 {
    padding: 0 5.12vw;
  }
}
.l-main__inner03 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__inner03 {
    width: 980px;
    margin: 0 auto;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-main__inner03 {
    padding: 0 5.12vw;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-main__inner03 {
    padding: 0 5.12vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main__inner03--con {
    padding: 0 15px;
  }
}
.l-main__topbg-close {
  margin-top: -1px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__topbg-close {
    width: 700px;
    margin: -1px auto 0;
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__topbg-close {
    padding: 0 5.12vw;
    padding-top: 20.5vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .l-main__topbg-close {
    padding: 0 5.12vw;
    padding-top: 150px;
  }
}
.l-main__ohters--wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .l-main__ohters--wrap {
    top: -52px;
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .l-main__ohters--wrap {
    top: -30px;
    width: 220px;
  }
}
@media screen and (max-width: 479px) {
  .l-main__ohters--wrap {
    top: -7.7vw;
    width: 56.4vw;
  }
}

.l-top {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top {
    background: url("../img/bg_page-top.png") no-repeat 0 0;
    background-size: contain;
    width: 100%;
    padding-top: 22%;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-top {
    background: url("../img/bg_page-top-sp.png") no-repeat 0 0;
    background-size: cover;
    width: 100%;
    padding-top: 77%;
    margin: 0 auto 40px;
  }
}
.l-top__ttlwrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .l-top__ttlwrap {
    background: url("../img/bg_toppages.png") no-repeat 0 0;
    background-size: contain;
    width: 700px;
    height: 126px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.l-top__inner {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top__inner {
    width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-top__inner {
    padding: 0 5.12vw;
  }
}

input[type=checkbox] {
  display: none;
}

.l-input__checkbox {
  cursor: pointer;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .l-input__checkbox {
    font-size: 14px;
    font-size: 0.875rem;
    white-space: nowrap;
    padding: 7px 0 7px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-input__checkbox {
    font-size: 3.6vw;
    padding: 1.54vw 0 1.54vw 6.4vw;
  }
}
.l-input__checkbox::before {
  background: #fff;
  border: 1px solid #707070;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  margin-top: 0;
  position: absolute;
  width: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .l-input__checkbox::before {
    width: 5.12vw;
    height: 5.12vw;
  }
}
.l-input__checkbox::after {
  border-right: 2px solid #E5006A;
  border-bottom: 2px solid #E5006A;
  content: "";
  display: block;
  height: 15px;
  left: 6px;
  margin-top: 0px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
  width: 8px;
}
@media screen and (max-width: 767px) {
  .l-input__checkbox::after {
    height: 3.85vw;
    width: 2vw;
    left: 1.54vw;
    top: 1.8vw;
  }
}

input[type=checkbox]:checked + .l-input__checkbox::after {
  opacity: 1;
}

.c-button__arrow {
  border: solid 2px #000000;
  text-decoration: none;
  display: block;
  background: url("../img/arrow-btn.png");
  background-color: #FFF;
  background-repeat: no-repeat;
  box-shadow: 3px 3px #000000;
}
@media screen and (min-width: 768px) {
  .c-button__arrow {
    padding: 13px 36px 13px 26px;
    border-radius: 40px;
    background-position: right 20px center;
    background-size: 18px 18px;
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__arrow {
    padding: 13px 36px 13px 30px;
    border-radius: 40px;
    background-position: right 10px center;
    background-size: 18px 18px;
    margin: 0 auto;
    max-width: 300px;
  }
}
.c-button__nav--wrapper {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 11;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-button__nav--wrapper {
    right: 35px;
    top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__nav--wrapper {
    right: 10px;
    top: 10px;
  }
}
.c-button__nav {
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-button__nav {
    border: solid #000000 5px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__nav {
    border: solid #000000 3px;
    width: 56px;
    height: 56px;
  }
}
.c-button__nav span {
  display: block;
  position: absolute;
  left: 14px;
  width: 22px;
  height: 2px;
  background-color: #000000;
  transition: all 0.5s;
}
.c-button__nav span:nth-child(1) {
  top: 16px;
}
.c-button__nav span:nth-child(2) {
  top: 24px;
}
.c-button__nav span:nth-child(3) {
  top: 32px;
}
.c-button__link {
  background-image: url("../img/icon_download.png");
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
}
.c-button__link p {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-button__link {
    background-size: 14px 14px;
    padding: 10px 24px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-button__link {
    background-size: 14px 14px;
    padding: 10px 24px 10px 0;
  }
}
@media screen and (max-width: 479px) {
  .c-button__link {
    background-size: 3.56vw 3.56vw;
    padding: 2.56vw 6.15vw 2.56vw 0;
  }
}
.c-button__google {
  background-color: #E5006A;
  border-radius: 40px;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 8px 16px;
}
.c-button__google p {
  white-space: nowrap;
}
.c-button__mapicon {
  background-image: url("../img/icon_map-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 0 0 14px;
}
@media screen and (min-width: 768px) {
  .c-button__mapicon {
    width: 23px;
    height: 23px;
    min-width: 23px;
    min-height: 23px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__mapicon {
    width: 23px;
    height: 23px;
    min-width: 23px;
    min-height: 23px;
  }
}
.c-button__reserve {
  background-image: url("../img/btn_yoyaku.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  white-space: nowrap;
  text-indent: -9999px;
  display: block;
  line-height: 0;
  font-size: 0;
  padding-top: 20.9%;
}
.c-button__fix--wrap {
  position: fixed;
}
@media screen and (min-width: 768px) {
  .c-button__fix--wrap {
    right: 0;
    width: 299px;
    height: 80px;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .c-button__fix--wrap {
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-button__fix {
  white-space: nowrap;
  text-indent: -9999px;
  display: block;
  line-height: 0;
  font-size: 0;
  position: fixed;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-button__fix {
    background-image: url("../img/fix-link.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 299px;
    height: 84.3px;
    right: 0;
    bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__fix {
    background-image: url("../img/fix_link-sp.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
    max-width: 324px;
    max-height: 64px;
    width: 83vw;
    height: 16.4vw;
    bottom: 18px;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .c-button__fix {
    background-image: url("../img/fix_link-tb.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    width: 333px;
    height: 74px;
  }
}
.c-button__linkpage {
  background-color: #E5006A;
  display: inline-block;
  text-decoration: none;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .c-button__linkpage {
    padding: 10px 43px 10px 20px;
    border-radius: 40px;
    background-position: right 15px center;
    background-size: 18px 18px;
    min-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__linkpage {
    padding: 10px 24px 10px 10px;
    background-size: 13px 13px;
    background-position: right 9px center;
    border-radius: 40px;
    min-width: 150px;
  }
}
.c-button__submit {
  border: solid 2px #000000;
  text-decoration: none;
  display: block;
  background: url("../img/arrow_common.png");
  background-color: #FFF;
  background-repeat: no-repeat;
  box-shadow: 3px 3px #000000;
}
@media screen and (min-width: 768px) {
  .c-button__submit {
    padding: 18px 36px 18px 26px;
    border-radius: 40px;
    background-position: right 20px center;
    background-size: 18px 18px;
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__submit {
    padding: 3.33vw 36px 3.33vw 30px;
    border-radius: 40px;
    background-position: right 10px center;
    background-size: 18px 18px;
    margin: 0 auto;
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .c-button__submit {
    background-size: 4.61vw 4.61vw;
    padding: 3.33vw 9.23vw 3.33vw 7.7vw;
    width: 51.2vw;
    background-position: right 2.56vw center;
  }
}
.c-button__submit:disabled {
  background-color: #ccc;
}
.c-button__common {
  border: solid 2px #000000;
  text-decoration: none;
  display: block;
  background: url("../img/arrow_common.png");
  background-color: #FFF;
  background-repeat: no-repeat;
  box-shadow: 3px 3px #000000;
}
@media screen and (min-width: 768px) {
  .c-button__common {
    padding: 18px 36px 18px 26px;
    border-radius: 40px;
    background-position: right 20px center;
    background-size: 18px 18px;
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__common {
    padding: 3.33vw 36px 3.33vw 30px;
    border-radius: 40px;
    background-position: right 10px center;
    background-size: 18px 18px;
    margin: 0 auto;
    width: 300px;
  }
}
@media screen and (max-width: 479px) {
  .c-button__common {
    background-size: 4.61vw 4.61vw;
    padding: 3.33vw 9.23vw 3.33vw 7.7vw;
    width: 77vw;
    background-position: right 2.56vw center;
  }
}

@media screen and (min-width: 768px) {
  .open .c-button__nav--wrapper {
    right: 35px;
    top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .open .c-button__nav--wrapper {
    right: 10px;
    top: 10px;
  }
}
.open .c-button__nav span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.open .c-button__nav span:nth-child(2) {
  opacity: 0;
}
.open .c-button__nav span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}

.c-paragraph__contest {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl_photocontest.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__contest {
    width: 431px;
    height: 96px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__contest {
    width: 301px;
    height: 67px;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__contest {
    width: 77.1vw;
    height: 17.1vw;
  }
}
.c-paragraph__history {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl_history.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__history {
    width: 315px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__history {
    width: 257px;
    height: 41px;
    width: 65.9vw;
    height: 10.5vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__history {
    width: 65.9vw;
    height: 10.5vw;
  }
}
.c-paragraph__photostop--ttl {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl-photospot.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__photostop--ttl {
    width: 460px;
    height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__photostop--ttl {
    width: 352px;
    height: 49px;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__photostop--ttl {
    width: 90vw;
    height: 12.56vw;
  }
}
.c-paragraph__foods {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl_p-news.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__foods {
    width: 161px;
    height: 43px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__foods {
    width: 131px;
    height: 33px;
    width: 33.59vw;
    height: 8.46vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__foods {
    width: 33.59vw;
    height: 8.46vw;
  }
}
.c-paragraph__foods {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl-foods.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__foods {
    width: 319px;
    height: 43px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__foods {
    width: 257px;
    height: 36px;
    width: 65.9vw;
    height: 9.23vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__foods {
    width: 65.9vw;
    height: 9.23vw;
  }
}
.c-paragraph__foods--alergy {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-paragraph__foods--alergy {
    background: url("../img/btn_alergy.png") no-repeat 0 0;
    background-size: contain;
    width: 364px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__foods--alergy {
    background: url("../img/btn_alergy-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 297px;
    height: 54px;
    width: 76.1vw;
    height: 13.84vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__foods--alergy {
    background: url("../img/btn_alergy-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 76.1vw;
    height: 13.84vw;
  }
}
.c-paragraph__goods {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl-goods.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__goods {
    width: 125px;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__goods {
    width: 102px;
    height: 37px;
    width: 26.1vw;
    height: 9.48vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__goods {
    width: 26.1vw;
    height: 9.48vw;
  }
}
.c-paragraph__novelty--date01 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/first-period.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__novelty--date01 {
    width: 319px;
    height: 61px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__novelty--date01 {
    width: 275px;
    height: 55px;
    width: 70.5vw;
    height: 14.12vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__novelty--date01 {
    width: 70.5vw;
    height: 14.12vw;
  }
}
.c-paragraph__novelty--date02 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/second-period.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__novelty--date02 {
    width: 319px;
    height: 61px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__novelty--date02 {
    width: 275px;
    height: 55px;
    width: 70.5vw;
    height: 14.12vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__novelty--date02 {
    width: 70.5vw;
    height: 14.12vw;
  }
}
.c-paragraph__feature--novelty01 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/novelty_feature01.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__feature--novelty01 {
    width: 158px;
    height: 37px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__feature--novelty01 {
    width: 123px;
    height: 32px;
    width: 31.5vw;
    height: 8.2vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__feature--novelty01 {
    width: 31.5vw;
    height: 8.2vw;
  }
}
.c-paragraph__feature--novelty02 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/novelty_feature02.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__feature--novelty02 {
    width: 354px;
    height: 37px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__feature--novelty02 {
    width: 268px;
    height: 32px;
    width: 68.7vw;
    height: 8.2vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__feature--novelty02 {
    width: 68.7vw;
    height: 8.2vw;
  }
}
.c-paragraph__feature--novelty03 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/novelty_feature03.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__feature--novelty03 {
    width: 354px;
    height: 37px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__feature--novelty03 {
    width: 268px;
    height: 32px;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__feature--novelty03 {
    width: 68.7vw;
    height: 8.2vw;
  }
}
.c-paragraph__eventttl {
  background: url("../img/ttl_event.png") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
}
@media screen and (min-width: 768px) {
  .c-paragraph__eventttl {
    width: 243px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__eventttl {
    width: 185px;
    height: 30px;
    width: 47.4vw;
    height: 7.7vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__eventttl {
    width: 47.4vw;
    height: 7.7vw;
  }
}
.c-paragraph__novelty {
  background: url("../img/ttl_novelty.png") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__novelty {
    width: 280px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__novelty {
    width: 168px;
    height: 30px;
    width: 43vw;
    height: 7.7vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__novelty {
    width: 43vw;
    height: 7.7vw;
  }
}
.c-paragraph__faq {
  background: url("../img/ttl_faq.png") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__faq {
    width: 402px;
    height: 47px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__faq {
    width: 280px;
    height: 40px;
    width: 71.7vw;
    height: 10.2vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__faq {
    width: 71.7vw;
    height: 10.2vw;
  }
}
.c-paragraph__news {
  background: url("../img/ttl_news.png") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__news {
    width: 161px;
    height: 39px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__news {
    width: 112px;
    height: 27px;
    width: 28.7vw;
    height: 6.92vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__news {
    width: 28.7vw;
    height: 6.92vw;
  }
}
.c-paragraph__ticket {
  background: url("../img/ttl-tikect.png") no-repeat 0 0;
  background-size: contain;
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__ticket {
    width: 244px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__ticket {
    width: 194px;
    height: 38px;
    width: 49.74vw;
    height: 9.74vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__ticket {
    width: 49.74vw;
    height: 9.74vw;
  }
}
.c-paragraph__schedulettl {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__schedulettl {
    background: url("../img/ttl_schedule.png") no-repeat 0 0;
    background-size: contain;
    width: 400px;
    height: 94px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__schedulettl {
    background: url("../img/ttl_schedule-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 280px;
    height: 66px;
    width: 72vw;
    height: 17vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__schedulettl {
    background: url("../img/ttl_schedule-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 72vw;
    height: 17vw;
  }
}
.c-paragraph__factoryttl {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__factoryttl {
    width: 555px;
    height: 44px;
    background: url("../img/ttl_factory.png") no-repeat 0 0;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__factoryttl {
    background: url("../img/ttl_factory-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 247px;
    height: 64px;
    width: 63.3vw;
    height: 16.4vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__factoryttl {
    background: url("../img/ttl_factory-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 63.3vw;
    height: 16.4vw;
  }
}
.c-paragraph__b-fctoryttl {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-paragraph__b-fctoryttl {
    width: 555px;
    height: 44px;
    background: url("../img/ttl_b-factory.png") no-repeat 0 0;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__b-fctoryttl {
    background: url("../img/ttl_b-factory-sp.png") no-repeat 0 0;
    width: 247px;
    height: 64px;
    width: 63.3vw;
    height: 16.4vw;
    background-size: contain;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__b-fctoryttl {
    background: url("../img/ttl_b-factory-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 63.3vw;
    height: 16.4vw;
  }
}
.c-paragraph__contest--feature {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/feature_photocon.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__contest--feature {
    width: 327px;
    height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__contest--feature {
    width: 237px;
    height: 26px;
    width: 60.7vw;
    height: 6.66vw;
  }
}
.c-paragraph__apply {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
  background: url("../img/ttl_oubo.png") no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-paragraph__apply {
    width: 244px;
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__apply {
    width: 198px;
    height: 39px;
    width: 50.7vw;
    height: 10vw;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__apply {
    width: 50.7vw;
    height: 10vw;
  }
}
.c-paragraph__b-fctoryttl02 {
  white-space: nowrap;
  text-indent: -9999px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-paragraph__b-fctoryttl02 {
    background: url("../img/subttl_b-factory-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 288px;
    height: 83px;
  }
}
@media screen and (min-width: 768px) {
  .c-paragraph__b-fctoryttl02 {
    width: 586px;
    height: 92px;
    background: url("../img/subttl_b-factory.png") no-repeat 0 0;
    background-size: contain;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .c-paragraph__b-fctoryttl02 {
    max-width: 586px;
    width: 73.2vw;
    height: 11.5vw;
    background: url("../img/subttl_b-factory.png") no-repeat 0 0;
    background-size: contain;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__b-fctoryttl02 {
    width: 73.8vw;
    height: 21.2vw;
  }
}
.c-paragraph__subttl--wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-paragraph__subttl--wrap {
    top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__subttl--wrap {
    top: -20px;
  }
}
.c-paragraph__subttl {
  background-color: #000000;
  border-radius: 30px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-paragraph__subttl {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__subttl {
    padding: 10px 20px;
  }
}
.c-paragraph__yellow {
  background-color: #FFE45E;
  border-radius: 40px;
  padding: 10px 20px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .c-paragraph__yellow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-paragraph__foods-top {
  background-color: #00B0EC;
}
@media screen and (min-width: 768px) {
  .c-paragraph__foods-top {
    border-radius: 55px;
    padding: 33px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__foods-top {
    border-radius: 55px;
    padding: 13px 0;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__foods-top {
    padding: 3.33vw 0;
  }
}
.c-paragraph__goods-top {
  background-color: #E88605;
}
@media screen and (min-width: 768px) {
  .c-paragraph__goods-top {
    border-radius: 55px;
    padding: 33px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-paragraph__goods-top {
    border-radius: 55px;
    padding: 13px 0;
  }
}
@media screen and (max-width: 479px) {
  .c-paragraph__goods-top {
    padding: 3.33vw 0;
  }
}

.p-home__event {
  background: url("../img/bg_yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__event {
    background: url("../img/bg_event-sp.jpg") no-repeat 0 0;
    background-size: 100% auto;
  }
}
.p-home__event--ttlwrap {
  text-align: center;
}
.p-home__event--ttlwrap section {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-home__event--ttlwrap {
    padding: 20px 0 0;
    margin: 0 auto 44px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__event--ttlwrap {
    padding: 20px 0 0;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__event--placewrap {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__event--placewrap {
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__event--periodwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__event--periodwrap {
    margin: 0 auto 18vw;
    text-align: center;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__event--periodwrap {
    margin: 0 auto 7.5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__event--period {
    width: 466px;
    height: 46px;
    background: url("../img/date_event.png") no-repeat 0 0;
    background-size: contain;
    white-space: nowrap;
    text-indent: -9999px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__event--period {
    background: url("../img/date_event-sp.png") no-repeat 0 0;
    background-size: contain;
    white-space: nowrap;
    text-indent: -9999px;
    width: 86.4vw;
    height: 9.3vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__event--period {
    width: 60.6vw;
    height: 6vw;
    background: url("../img/date_event.png") no-repeat 0 0;
    background-size: contain;
    white-space: nowrap;
    text-indent: -9999px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__eventtime {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__eventtime {
    margin: 0 auto 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__eventtime--txtwrap {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__eventtime--txtwrap {
    margin: 0 auto 16px;
  }
}
.p-home__kaba {
  position: absolute;
  z-index: 1;
}
.p-home__kaba img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__kaba {
    width: 122px;
    top: 45px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__kaba {
    width: 25.26vw;
    right: 0;
    top: -6vw;
  }
}
.p-home__eventtime--notewrap {
  border: solid 1px #E5006A;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .p-home__eventtime--notewrap {
    width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__eventtime--notewrap {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-home__access--txtwrap {
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__access--txtwrap {
    padding: 8px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home__access--googlewrap {
    width: 224px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__access--googlewrap {
    width: 57.4vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-home__access--details-blc {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-home__access--details-blc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-home__access--details-blc + .p-home__access--details-blc {
    margin-top: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__access--details-blc + .p-home__access--details-blc {
    margin-top: 23px;
  }
}
.p-home__access--mapblc {
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-home__access--details-ttlwrap {
    width: 200px;
    margin-right: 23px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__announceblc {
    margin: 40px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__announceblc {
    margin: 20px 0 12px;
  }
}

.p-history {
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .p-history {
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto 120px;
    width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-history {
    padding: 40px 20px;
    margin: 0 auto 100px;
  }
}
.p-history__chunk {
  width: 100%;
  overflow: hidden;
}
.p-history__chunk img {
  float: right;
  width: 135px;
  height: auto;
}
.p-history__cow {
  width: 100%;
  overflow: hidden;
}
.p-history__cow img {
  float: right;
  width: 151px;
  height: auto;
}
.p-history__topblc {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-history__topblc {
    padding: 0 5.12vw 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__featurewrap {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__featurewrap {
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__imgwrap {
    margin: 0 auto 40px;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__imgwrap {
    margin: 0 auto 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-history__txtblc {
    margin: 0 -5vw;
  }
}
.p-history__icon {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-history__icon {
    width: 50px;
    top: -10px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-history__icon {
    width: 50px;
    top: -20px;
    right: 0;
  }
}
.p-history__ages {
  position: relative;
  border-left: 1px solid #E5006A;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-history__ages {
    padding: 30px 0 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__ages {
    padding: 30px 0 30px 20px;
  }
}
.p-history__ages:last-child {
  padding-bottom: 0;
}
.p-history__ages--blc {
  display: flex;
  align-items: center;
  position: absolute;
  left: -8px;
  top: -8px;
}
.p-history__span {
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 8px;
  background-color: #E5006A;
  margin-right: 11px;
}
.p-history__flxblc {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-history__flxblc.double {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__flxblc.double {
    padding-top: 30px;
  }
}
.p-history__flxblc--img {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-history__flxblc--img {
    width: 70px;
    min-width: 70px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__flxblc--img {
    width: 60px;
    min-width: 60px;
    margin-right: 20px;
  }
}
.p-history__flxblc--img.border {
  border: solid 1px #CCC;
}
.p-history__flxblc--txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-history__flxblc--txtwrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__second {
    margin: 0 auto 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__second {
    width: 75vw;
    margin: 0 auto 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__second--ttlwrap {
    margin: 10px auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__second--ttlwrap {
    margin: 10px auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__second--inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 940px;
    margin: 0 auto;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-history__second--inner {
    width: 100%;
    padding: 0 5.12vw;
  }
}
@media screen and (max-width: 767px) {
  .p-history__second--inner {
    width: 100%;
  }
}
.p-history__second--item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-history__second--item {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__second--item {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__second--icon {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__second--icon {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__third {
    width: 710px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-history__third {
    padding: 0 5.12vw;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-history__third--inner {
    flex-wrap: wrap;
    width: 710px;
    margin: 0 auto 70px;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-history__third--inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__third--item {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .p-history__third--item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-history__third--item {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    margin-bottom: 4%;
  }
}
.p-history__third--item img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-history__btmblc--wrap {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__btmblc--wrap {
    margin: 0 auto 10px;
  }
}
.p-history__btmblc {
  background-color: #009BE0;
}
@media screen and (min-width: 768px) {
  .p-history__btmblc {
    margin: 0 auto 20px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-history__btmblc {
    margin: 0 auto 20px;
    border-radius: 20px;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__btmblc--txtwrap {
    width: 370px;
    min-width: 370px;
    max-width: 370px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-history__btmblc--txtinner {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-history__btmblc--txtinner {
    margin: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-history__btmblc--img {
    width: 61.5vw;
    margin: 0 auto;
  }
}
.p-history__btmblc--img img {
  width: 100%;
  height: auto;
}

.p-home__zou {
  position: absolute;
  z-index: 1;
}
.p-home__zou img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__zou {
    width: 139px;
    top: -13px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__zou {
    width: 28.2vw;
    left: 0;
    top: -4vw;
  }
}
.p-home__ticket {
  background-color: #FFFCC9;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__ticket--notewrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__ticket--notewrap {
    margin-top: 5vw;
  }
}
.p-home__ticket--inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.p-home__ticket--sblc-txtwrap {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__ticket--blcwrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__ticket--blcwrap {
    margin-top: 12.9vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__sticket--blc-wrap {
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__sticket--blc-wrap {
    padding-bottom: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__sticket--blc-wrap02 {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__sticket--blc-wrap02 {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__sticket--price {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__sticket--blc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-home__sticket--ywrap {
    margin-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__sticket--noteblc {
    max-width: 540px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-home__ticket--btm {
    width: 560px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__ticket--btm {
    margin: 12.8vw auto 0;
  }
}

.p-home__saru {
  position: absolute;
  z-index: 1;
}
.p-home__saru img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__saru {
    width: 105px;
    top: 0;
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__saru {
    width: 23vw;
    left: 0;
    top: -5%;
  }
}
.p-home__menu {
  background: url("../img/bg_noverty.png") no-repeat 0 -1px;
  background-size: 100% auto;
  background-color: #E5006A;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__menu {
    background: url("../img/bg_ticket-sp.jpg") no-repeat 0 -1px;
    background-size: 100% auto;
    background-color: #E5006A;
  }
}
@media screen and (min-width: 768px) {
  .p-home__menu--testblc {
    width: 600px;
    margin: 0 auto;
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__menu--testblc {
    width: 77vw;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.p-home__menu--testblc img {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__menu--picture {
    padding: 0 25px;
  }
}
.p-home__menu--txtwrap {
  margin-top: 20px;
}
.p-home__novelty {
  padding-bottom: 20px;
  background-color: #FFFCC9;
}
@media screen and (max-width: 767px) {
  .p-home__novelty {
    background-color: #FFFCC9;
  }
}
@media screen and (min-width: 768px) {
  .p-home__snovelty--noteblc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__snovelty--noteblc {
    margin-top: 20px;
  }
}
.p-home__wani {
  position: absolute;
  z-index: 1;
}
.p-home__wani img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__wani {
    width: 160px;
    top: 50px;
    right: -75px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__wani {
    width: 20.84vw;
    right: 12px;
    top: 10vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__wani {
    right: 12px;
  }
}
.p-home__novelty--ttlwrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-home__novelty--ttlwrap {
    padding: 20px 0 0;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--ttlwrap {
    padding-top: 5.12vw;
    margin: 0 auto 7.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--blc-wrap {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--blc-wrap {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--featurewrap {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--featurewrap {
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--hosoku {
    width: 620px;
    margin: 60px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--hosoku {
    margin: 30px auto;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--imgwrap {
    width: 500px;
    margin: 10px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--imgwrap {
    margin: 10px auto;
  }
}
.p-home__novelty--swiper {
  position: relative;
  /* デフォルトの矢印を消す */
}
@media screen and (min-width: 768px) {
  .p-home__novelty--swiper {
    width: 620px;
    margin: 0 auto;
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--swiper {
    width: 110%;
    margin: 0 -5%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__novelty--swiper {
    width: 100%;
    padding: 0;
  }
}
.p-home__novelty--swiper .swiper-button-prev {
  background-image: url("../img/prev-arrow.png");
}
.p-home__novelty--swiper .swiper-button-next {
  background-image: url("../img/next-arrow.png");
}
.p-home__novelty--swiper .swiper-button-prev::after,
.p-home__novelty--swiper .swiper-button-next::after {
  display: none;
}
.p-home__novelty--swiper .swiper-button-prev,
.p-home__novelty--swiper .swiper-button-next {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* 必要に応じてサイズ調整 */
}
@media screen and (min-width: 768px) {
  .p-home__novelty--swiper .swiper-button-prev,
  .p-home__novelty--swiper .swiper-button-next {
    width: 24px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--swiper .swiper-button-prev,
  .p-home__novelty--swiper .swiper-button-next {
    width: 20px;
    height: 43px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--swiper .swiper-pagination {
    bottom: -40px; /* 表示位置の調整 */
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--swiper .swiper-pagination {
    bottom: -8vw; /* 表示位置の調整 */
  }
}
.p-home__novelty--swiper .swiper-pagination-bullet {
  background-color: #45AD75;
}
.p-home__novelty--swiper .swiper-container,
.p-home__novelty--swiper .swiper-slide {
  height: auto !important;
  align-self: stretch;
  /* スライド同士の高さを揃える */
}
.p-home__novelty--swiper .swiper-content {
  /* 各スライド内のコンテンツ */
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .p-home__novelty--swipetxtblc {
    padding: 0 5%;
  }
}
.p-home__novelty--hosoku-txt {
  background: url("../img/novelty_hosoku.png") no-repeat 0 -1px;
  white-space: nowrap;
  text-indent: -9999px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__novelty--hosoku-txt {
    width: 540px;
    height: 85px;
    margin: 0 auto;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .p-home__novelty--hosoku-txt {
    width: 100%;
    padding-top: 16%;
    height: 0;
    background-size: contain;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-home__novelty--btm {
    width: 560px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #goodsSwipe .swiper-button-prev,
  #goodsSwipe .swiper-button-next {
    top: 58% !important;
  }
}
@media screen and (max-width: 767px) {
  #goodsSwipe .swiper-button-prev,
  #goodsSwipe .swiper-button-next {
    top: 58% !important;
  }
}

@media screen and (min-width: 768px) {
  #foodSwipe .swiper-button-prev,
  #foodSwipe .swiper-button-next {
    top: 58% !important;
  }
}
@media screen and (max-width: 767px) {
  #foodSwipe .swiper-button-prev,
  #foodSwipe .swiper-button-next {
    top: 58% !important;
  }
}

.p-faq__noticeblc {
  padding-left: 1em;
}
.p-faq__accordion {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: solid 1px #000000;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .p-faq__accordion {
    width: 100%;
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__accordion {
    padding: 20px 20px 0;
  }
}
.p-faq__accordion--contents {
  padding-bottom: 20px;
}
.p-faq__accordion--blc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.p-faq__accordion--sblc {
  width: calc(100% - 26px);
}
.p-faq__accordion--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  cursor: pointer;
}
.p-faq__accordion--inner.open .p-faq__arrow {
  transform: rotate(180deg);
  animation: rotate-anime 0.3s ease-out 1;
}
.p-faq__arrow {
  background: url("../img/arrow_news.png") no-repeat 0 0;
  background-size: 100% auto;
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transform: rotate(0);
  animation: rotate-anime 0.3s ease-out 1;
}

.p-home__faq {
  padding-bottom: 20px;
  background-color: #FFFCC9;
}
.p-home__faq a {
  color: #00A0E9;
}
.p-home__chuck {
  position: absolute;
  z-index: 1;
}
.p-home__chuck img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__chuck {
    width: 80px;
    top: 60px;
    right: -7px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__chuck {
    width: 20.7vw;
    right: 10px;
    top: -2px;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__chuck {
    right: 12px;
  }
}
.p-home__faq--ttlwrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-home__faq--ttlwrap {
    padding: 20px 0 0;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--ttlwrap {
    padding-top: 5.12vw;
    margin: 0 auto 7.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__faq--subttlwrap {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--subttlwrap {
    margin-right: 15px;
  }
}
.p-home__faq--blc {
  background-color: #FFF;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__faq--blc {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--blc {
    margin: 0 auto 20px;
  }
}
.p-home__faq--qblc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-home__faq--qblc {
    padding: 25px 30px 25px 25px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--qblc {
    padding: 5.6vw 7.46vw 5.3vw 6.66vw;
    align-items: center;
  }
}
.p-home__faq--qblc .p-home__faq--blc-txt {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
}
.p-home__faq--qblc .p-home__faq--blc-txt span {
  display: block;
}
.p-home__faq--answerblc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.p-home__faq--answerblc-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: url("../img/bg_answer.svg") repeat-x;
  background-size: 10px 2px;
  background-position: top 0 right 0;
}
@media screen and (min-width: 768px) {
  .p-home__faq--answerblc-inner {
    padding: 25px 30px 25px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--answerblc-inner {
    padding: 5.6vw 7.46vw 5.3vw 6.66vw;
    align-items: flex-start;
  }
}
.p-home__faq--arrow {
  width: 30px;
  min-width: 30px;
  margin: 0 0 0 30px;
}
.p-home__faq--arrow span {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: url("../img/arrow.svg");
  background-size: 100% auto;
}
.p-home__faq--sblc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-home__faq--btm {
    width: 540px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__faq--btm {
    padding: 20px 0 40px;
  }
}
.p-home__faq--btmblc {
  padding: 20px 0;
}

.p-home__faq--arrow {
  transform: rotate(180deg);
  animation: rotate-anime2 0.3s ease-out 1;
}

.open + .p-home__faq--answerblc {
  max-height: 1000px;
  /* 内容の最大高さに合わせて調整 */
}
.open .p-home__faq--arrow {
  transform: rotate(0);
  animation: rotate-anime 0.3s ease-out 1;
}

@keyframes rotate-anime2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
@keyframes rotate-anime {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.js-acoordion-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.p-home__news--saru {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__news--saru {
    width: 105px;
    left: -60px;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--saru {
    max-width: 80px;
    width: 20.5vw;
    left: 10px;
    top: 0;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__news--saru {
    top: 5vw;
  }
}
.p-home__news--chuck {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__news--chuck {
    width: 81px;
    right: -8px;
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--chuck {
    max-width: 80px;
    width: 20.5vw;
    right: 10px;
    top: 0;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__news--chuck {
    top: 5vw;
  }
}
.p-home__news {
  background: url("../img/bg_w-yellow.png") no-repeat 0 0;
  background-color: #FFE45E;
  background-size: 100% auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__news {
    background: url("../img/bg_w-yellow-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    padding-bottom: 40px;
    background-color: #FFE45E;
  }
}
.p-home__news--ttlwrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-home__news--ttlwrap {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--ttlwrap {
    margin: 0 auto 30px;
  }
}
.p-home__news--blc {
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-home__news--blc {
    width: 100%;
    padding: 32px 30px 12px;
    border-radius: 20px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--blc {
    padding: 22px 20px 2px;
    border-radius: 10px;
    margin: 0 auto 10px;
  }
}
.p-home__news--ttlblc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-home__news--ttlblc {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--ttlblc {
    padding: 0 0 15px;
  }
}
.p-home__news--ttlblc.open .p-home__news--arrow {
  transform: rotate(180deg);
  animation: rotate-anime2 0.3s ease-out 1;
}
.p-home__news--sblc {
  width: 100%;
}
.p-home__news--sblc02 {
  width: 100%;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .p-home__news--sblc02 {
    margin: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home__news--noteblc {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--noteblc {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 479px) {
  .p-home__news--noteblc {
    margin: 2.56vw 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home__news--date {
    min-width: 100px;
    max-width: 100px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--date {
    width: 90px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__news--date {
    width: 23vw;
    margin-right: 2.56vw;
  }
}
.p-home__news--details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.p-home__news--details-inner {
  border-top: dotted 2px #000000;
}
@media screen and (min-width: 768px) {
  .p-home__news--details-inner {
    padding-bottom: 10px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--details-inner {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
.p-home__news--arrow {
  background: url("../img/arrow_news.png") no-repeat 0 0;
  background-size: 100% auto;
  width: 30px;
  height: 17px;
  margin-left: 10px;
  transform: rotate(0deg);
  animation: rotate-anime 0.3s ease-out 1;
}
@media screen and (max-width: 479px) {
  .p-home__news--arrow {
    background: url("../img/arrow_news.png") no-repeat 0 0;
    background-size: 100% auto;
    width: 7.7vw;
    height: 4.36vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__news--btnwrap {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news--btnwrap {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 479px) {
  .p-home__news--btnwrap {
    margin: 5.12vw auto 0;
  }
}
.p-home__news__detailsblc {
  margin: 10px 0 20px;
}

body#home .p-home__news--lists li {
  display: none;
}
body#home .p-home__news--lists li:first-child {
  display: block;
}
body#home .p-home__news--lists li:nth-child(2) {
  display: block;
}
body#home .p-home__news--lists li:nth-child(3) {
  display: block;
}

.p-home__schedule {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__schedule {
    padding-bottom: 40px;
  }
}
.p-home__schedule--ttlwrap {
  text-align: center;
}
.p-home__schedule--ttlwrap section {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--ttlwrap {
    padding: 20px 0 0;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--ttlwrap {
    padding-top: 5.12vw;
    margin: 0 auto 20px;
  }
}
.p-home__neko {
  position: absolute;
  z-index: 1;
}
.p-home__neko img {
  width: contain;
}
@media screen and (min-width: 768px) {
  .p-home__neko {
    width: 160px;
    top: -10px;
    left: -80px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__neko {
    width: 25.6vw;
    left: -8px;
    top: -10px;
  }
}
.p-home__schedule--blc {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--blc {
    width: 100%;
  }
}
.p-home__schedule--img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--img {
    margin: 40px 0;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--img {
    margin: 30px 0;
  }
}
.p-home__schedule--lion {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--lion {
    width: 80px;
    right: 220px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--lion {
    width: 12vw;
    right: 32%;
    top: -15%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__schedule--lion {
    right: calc(25% + 30px);
    top: -17%;
  }
}
.p-home__schedule--lion img {
  object-fit: contain;
}
.p-home__schedule--usagi {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--usagi {
    width: 80px;
    right: 110px;
    top: 340px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--usagi {
    width: 11.8vw;
    right: 10vw;
    top: 24%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__schedule--usagi {
    right: calc(9.8% + 30px);
    top: 23%;
  }
}
.p-home__schedule--usagi img {
  object-fit: contain;
}
.p-home__schedule--kirin {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--kirin {
    width: 80px;
    left: 64px;
    top: 410px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--kirin {
    width: 11.8vw;
    left: 3.85vw;
    top: 28%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__schedule--kirin {
    left: calc(5% + 30px);
    top: 27%;
  }
}
.p-home__schedule--kirin img {
  object-fit: contain;
}
.p-home__schedule--saru {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--saru {
    width: 80px;
    left: 87px;
    bottom: 390px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--saru {
    width: 11.8vw;
    left: 9%;
    bottom: 27%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__schedule--saru {
    left: calc(8% + 30px);
    bottom: 27%;
  }
}
.p-home__schedule--saru img {
  object-fit: contain;
}
.p-home__schedule--neko {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--neko {
    width: 80px;
    right: 21px;
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--neko {
    width: 11.8vw;
    right: -2%;
    bottom: -3%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__schedule--neko {
    right: calc(-4% + 30px);
    bottom: -4%;
  }
}
.p-home__schedule--neko img {
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--ttlwrap {
    margin: 120px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--ttlwrap {
    margin: 80px 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__schedule--blc {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--blc {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__schedule--picture {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--picture {
    margin-bottom: 20px;
  }
}
.p-home__schedule--picture img {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__schedule--txtwrap {
    margin: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__schedule--txtwrap {
    margin: 5px 0;
  }
}
.p-home__schedule--picture-flex {
  display: flex;
  justify-content: space-between;
}
.p-home__schedule--pictture-item {
  width: 30%;
}
.p-home__schedule--pictture-item img {
  border-radius: 10px;
}

.p-home__factory--zou {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--zou {
    width: 138px;
    left: -110px;
    top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--zou {
    max-width: 110px;
    width: 28.2vw;
    left: 0;
    top: 0;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--zou {
    width: 138px;
    top: 0;
    left: 0;
  }
}
.p-home__factory {
  background: url("../img/bg_w-yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
  background-color: #FFE45E;
}
@media screen and (max-width: 767px) {
  .p-home__factory {
    background: url("../img/bg_w-yellow-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    background-color: #FFE45E;
  }
}
.p-home__factory--map {
  position: relative;
  margin-bottom: 10px;
}
.p-home__factory--map02 {
  position: relative;
  background: url("../img/img_spot.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-top: 36.36%;
  font-size: 0;
  line-height: 0;
}
.p-home__map--link01 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link01 {
    width: 40px;
    top: 231px;
    left: 285px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link01 {
    width: 7.69vw;
    top: 29vw;
    left: 40vw;
  }
}
.p-home__map--link01 img {
  width: 100%;
  height: auto;
}
.p-home__map--link02 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link02 {
    width: 40px;
    top: 212px;
    left: 206px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link02 {
    width: 7.69vw;
    top: 28.6vw;
    left: 30vw;
  }
}
.p-home__map--link02 img {
  width: 100%;
  height: auto;
}
.p-home__map--link03 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link03 {
    width: 40px;
    top: 155px;
    left: 122px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link03 {
    width: 7.69vw;
    top: 20.2vw;
    left: 18.3vw;
  }
}
.p-home__map--link03 img {
  width: 100%;
  height: auto;
}
.p-home__map--link04 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link04 {
    width: 40px;
    top: 105px;
    left: 218px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link04 {
    width: 7.69vw;
    top: 14.1vw;
    left: 32vw;
  }
}
.p-home__map--link04 img {
  width: 100%;
  height: auto;
}
.p-home__map--link05 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link05 {
    width: 40px;
    top: 105px;
    left: 341px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link05 {
    width: 7.69vw;
    top: 14.1vw;
    left: 48.7vw;
  }
}
.p-home__map--link05 img {
  width: 100%;
  height: auto;
}
.p-home__map--link06 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--link06 {
    width: 40px;
    top: 127px;
    left: 426px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--link06 {
    width: 7.69vw;
    top: 17.17vw;
    left: 59vw;
  }
}
.p-home__map--link06 img {
  width: 100%;
  height: auto;
}
.p-home__map--linkfoods {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--linkfoods {
    width: 100px;
    top: 151px;
    right: 83px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--linkfoods {
    width: 12.8vw;
    top: 19.57vw;
    right: 11.53vw;
  }
}
.p-home__map--linkfoods img {
  width: 100%;
  height: auto;
}
.p-home__map--linkgoods {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__map--linkgoods {
    width: 80px;
    bottom: 55px;
    left: 117px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map--linkgoods {
    width: 14.35vw;
    bottom: 7.7vw;
    left: 13.84vw;
  }
}
.p-home__map--linkgoods img {
  width: 100%;
  height: auto;
}
.p-home__map02--link01 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link01 {
    width: 194px;
    top: 22px;
    left: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link01 {
    width: 26.6vw;
    top: 2.82vw;
    left: 1.3vw;
  }
}
.p-home__map02--link02 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link02 {
    width: 216px;
    top: 96px;
    left: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link02 {
    width: 29.5vw;
    top: 12.8vw;
    left: 1.3vw;
  }
}
.p-home__map02--link03 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link03 {
    width: 201px;
    top: 170px;
    left: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link03 {
    width: 27.7vw;
    top: 22.8vw;
    left: 1.3vw;
  }
}
.p-home__map02--link04 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link04 {
    width: 256px;
    top: 22px;
    left: 239px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link04 {
    width: 34.9vw;
    top: 2.82vw;
    left: 32.3vw;
  }
}
.p-home__map02--link05 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link05 {
    width: 269px;
    top: 96px;
    left: 239px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link05 {
    width: 36.6vw;
    top: 12.8vw;
    left: 32.3vw;
  }
}
.p-home__map02--link06 {
  position: absolute;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__map02--link06 {
    width: 249px;
    top: 170px;
    left: 239px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__map02--link06 {
    width: 33.8vw;
    top: 22.8vw;
    left: 32.3vw;
  }
}
.p-home__factory--subttlwrap {
  text-align: center;
}
.p-home__factory--subttlwrap section {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-home__factory--subttlwrap {
    margin: 130px auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--subttlwrap {
    margin: 80px auto 20px;
  }
}
.p-home__factory--btmwrap {
  margin: 10px 0;
}
.p-home__factory--mapttlwrap {
  margin: 0 auto 20px;
}
.p-home__factory--imgarrow {
  z-index: 10;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--imgarrow {
    width: 63px;
    top: -58px;
    left: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--imgarrow {
    width: 15.4vw;
    max-width: 60px;
    top: -15%;
    left: 10px;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--imgarrow {
    width: 15.4vw;
    max-width: 60px;
    top: -58px;
    left: 20px;
  }
}
.p-home__factory--imgarrow img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-home__factory--newimgwrap {
    margin: 0 auto 40px;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--newimgwrap {
    margin: 0 auto 18px;
  }
}
.p-home__factory--imgwrap {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__factory--imgwrap {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--imgwrap {
    margin: 0 -5.12vw 20px;
    padding: 0 2.56vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--imgwrap {
    margin: 0 -5.12vw 40px;
  }
}
.p-home__factory--blc {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__factory--blc {
    width: 100%;
  }
}
.p-home__factory--img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__factory--img {
    margin: 40px 0;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--img {
    margin: 30px 0;
  }
}
.p-home__factory--lion {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--lion {
    width: 80px;
    right: 220px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--lion {
    width: 12vw;
    right: 32%;
    top: -15%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--lion {
    right: calc(25% + 30px);
    top: -17%;
  }
}
.p-home__factory--lion img {
  object-fit: contain;
}
.p-home__factory--usagi {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--usagi {
    width: 80px;
    right: 110px;
    top: 340px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--usagi {
    width: 11.8vw;
    right: 10vw;
    top: 24%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--usagi {
    right: calc(9.8% + 30px);
    top: 23%;
  }
}
.p-home__factory--usagi img {
  object-fit: contain;
}
.p-home__factory--kirin {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--kirin {
    width: 80px;
    left: 64px;
    top: 410px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--kirin {
    width: 11.8vw;
    left: 3.85vw;
    top: 28%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--kirin {
    left: calc(5% + 30px);
    top: 27%;
  }
}
.p-home__factory--kirin img {
  object-fit: contain;
}
.p-home__factory--saru {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--saru {
    width: 80px;
    left: 87px;
    bottom: 390px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--saru {
    width: 11.8vw;
    left: 9%;
    bottom: 27%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--saru {
    left: calc(8% + 30px);
    bottom: 27%;
  }
}
.p-home__factory--saru img {
  object-fit: contain;
}
.p-home__factory--neko {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--neko {
    width: 80px;
    right: 21px;
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--neko {
    width: 11.8vw;
    right: -2%;
    bottom: -3%;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__factory--neko {
    right: calc(-4% + 30px);
    bottom: -4%;
  }
}
.p-home__factory--neko img {
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-home__factory--ttlwrap {
    padding-top: 20px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--ttlwrap {
    padding-top: 20px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__factory--blc {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--blc {
    margin-top: 60px;
  }
}
.p-home__factory--picture {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__factory--picture {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--picture {
    margin-bottom: 20px;
  }
}
.p-home__factory--picture img {
  border-radius: 20px;
}
.p-home__factory--subpicture {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__factory--subpicture {
    width: 165px;
    top: 30px;
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--subpicture {
    width: 103px;
    top: 20px;
    left: -12px;
  }
}
.p-home__factory--subpicture img {
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .p-home__factory--txtwrap {
    margin: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__factory--txtwrap {
    margin: 5px 0;
  }
}
.p-home__factory--picture-flex {
  display: flex;
  justify-content: space-between;
}
.p-home__factory--pictture-item {
  width: 30%;
}
.p-home__factory--pictture-item img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-home__foodgoods--btnwrap {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__foodgoods--btnwrap {
    margin: 5.12vw auto 0;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__foodgoods--btnwrap {
    margin: 20px auto 0;
  }
}

.p-home__camera {
  overflow: hidden;
  margin-top: -2px;
  background: url("../img/bg_yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__camera {
    background: url("../img/bg_event-sp.jpg") no-repeat 0 0;
    background-size: 100% auto;
  }
}
.p-home__camera--wani {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__camera--wani {
    width: 160px;
    right: -80px;
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__camera--wani {
    max-width: 128px;
    width: 32.8vw;
    right: 12px;
    top: 5.12vw;
  }
}
.p-home__camera--subttlwrap {
  text-align: center;
}
.p-home__camera--subttlwrap section {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-home__camera--subttlwrap {
    margin: 0 auto 40px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__camera--subttlwrap {
    padding-top: 20px;
    margin: 0 auto 20px;
  }
}
.p-home__photospopt {
  background: url("../img/bg_w-yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
  background-color: #FFE45E;
}
@media screen and (max-width: 767px) {
  .p-home__photospopt {
    background: url("../img/bg_w-yellow-sp.png") no-repeat 0 0;
    background-size: 100% auto;
    background-color: #FFE45E;
  }
}
@media screen and (min-width: 768px) {
  .p-home__photospot--ttlwrap {
    margin: 0 auto 40px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospot--ttlwrap {
    padding-top: 10px;
    margin: 0 auto 10px;
  }
}
.p-home__photospopt--carousel {
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--carousel {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--carousel {
    margin: 30px 0 0;
  }
}
.p-home__photospopt--carousel .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--carousel .swiper-button-prev,
  .p-home__photospopt--carousel .swiper-button-next {
    height: 60px;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--carousel .swiper-button-prev,
  .p-home__photospopt--carousel .swiper-button-next {
    height: 40px;
    width: 40px;
  }
}
.p-home__photospopt--carousel .swiper-button-prev::after,
.p-home__photospopt--carousel .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--carousel .swiper-button-prev::after,
  .p-home__photospopt--carousel .swiper-button-next::after {
    height: 60px;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--carousel .swiper-button-prev::after,
  .p-home__photospopt--carousel .swiper-button-next::after {
    height: 40px;
    width: 40px;
  }
}
.p-home__photospopt--carousel .swiper-button-prev::after {
  background: url("../img/arrow_photo-prev.png") no-repeat 0 0;
  background-size: contain;
  background-position: right center;
}
.p-home__photospopt--carousel .swiper-button-next::after {
  background: url("../img/arrow_photo-next.png") no-repeat 0 0;
  background-size: contain;
}
.p-home__photospopt--carousel .swiper-pagination-bullet {
  /*ドットの色を変更*/
  background-color: #E5006A;
}
.p-home__photospopt--carousel .swiper-pagination {
  bottom: auto;
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--carousel .swiper-pagination {
    padding-top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--carousel .swiper-pagination {
    padding-top: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--noteblc {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--noteblc {
    padding-top: 50px;
  }
}
.p-home__photospopt--slide {
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--slide {
    padding: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--slide {
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--imgwrap {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--imgwrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--txtblc {
    margin: 10px auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--txtblc {
    margin: 6px auto 10px;
  }
}
.p-home__photospopt--linkwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home__photospopt--saru {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__photospopt--saru {
    width: 105px;
    top: 10px;
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__photospopt--saru {
    width: 23vw;
    max-width: 90px;
    top: -6vw;
    left: 0px;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__photospopt--saru {
    width: 90px;
    top: -4vw;
    left: 0px;
  }
}

.p-home__contest--chuck {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__contest--chuck {
    width: 81px;
    right: -8px;
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--chuck {
    max-width: 80px;
    width: 20.5vw;
    right: 10px;
    top: 0;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__contest--chuck {
    top: 5vw;
  }
}
.p-home__contest {
  background: url("../img/bg_yellow.png") no-repeat 0 0;
  background-size: 100% auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-home__contest {
    background: url("../img/bg_event-sp.jpg") no-repeat 0 0;
    background-size: 100% auto;
    padding-bottom: 40px;
  }
}
.p-home__contest--prize-subttlblc {
  margin: 0 auto 0.5em;
}
.p-home__contest--new {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__contest--new {
    width: 72px;
    left: 93px;
    top: -33px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--new {
    width: 54px;
    left: -2.56vw;
    width: 13.85vw;
    top: -4.9vw;
  }
}
@media screen and (min-width:768px) and (max-width: 1024px) {
  .p-home__contest--new {
    width: 72px;
    left: 43px;
    top: -33px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--new {
    width: 13.84vw;
  }
}
.p-home__contest--new img {
  width: 100%;
  height: auto;
}
.p-home__contest--featurewrap {
  position: relative;
}
.p-home__contest--feature {
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .p-home__contest--feature {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--feature {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--feature {
    margin: 0 auto 5.12vw;
  }
}
.p-home__contest--ttlwrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-home__contest--ttlwrap {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--ttlwrap {
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--fvblc {
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--fvblc {
    margin: 20px 0;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--fvblc {
    margin: 5.12vw 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--dateblc {
    margin: 0 auto 80px;
    width: 580px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--dateblc {
    margin: 0 auto 60px;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--dateblc {
    margin: 0 auto 15.38vw;
  }
}
.p-home__contest--imgwrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__contest--imgwrap {
    width: 560px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--imgwrap {
    width: 100%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--imgwrap {
    width: 100%;
    margin: 0 auto 5.12vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--txtwrap {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--txtwrap {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--txtwrap {
    margin: 0 auto 2.56vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--datewrap {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--datewrap {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--datewrap {
    margin: 0 auto 2.56vw;
  }
}
.p-home__contest--date {
  display: flex;
  align-items: center;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-home__contest--date {
    height: 54px;
    border-radius: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--date {
    height: 13.85vw;
    border-radius: 10px;
  }
}
.p-home__contest--date-ttl {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-home__contest--date-ttl {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    border-radius: 70px 0 0 70px;
    height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--date-ttl {
    width: 47px;
    min-width: 47px;
    max-width: 47px;
    border-radius: 10px 0 0 10px;
    width: 12vw;
    min-width: 12vw;
    max-width: 12vw;
    border-radius: 2.56vw 0 0 2.56vw;
    height: 13.85vw;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--date-ttl {
    width: 12vw;
    min-width: 12vw;
    max-width: 12vw;
    border-radius: 2.56vw 0 0 2.56vw;
    height: 13.85vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--datewrap02 {
    margin: 0 7px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--datewrap02 {
    margin: 0 1.3vw;
  }
}
.p-home__contest--con {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-home__contest--con {
    width: calc(100% - 140px);
    min-width: calc(100% - 140px);
    max-width: calc(100% - 140px);
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--con {
    padding: 0 0 0 2.6vw;
  }
}
.p-home__contest__conin {
  display: flex;
  align-items: center;
}
.p-home__contest__conin-i {
  display: flex;
  align-items: flex-end;
}
.p-home__contest--arrow {
  background: url("../img/arrow_contest.png") no-repeat 0 0;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home__contest--arrow {
    width: 13px;
    height: 19px;
    margin: 0 9px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--arrow {
    width: 2.6vw;
    height: 3vw;
    margin: 0 1vw 0 1.6vw;
  }
}
.p-home__contest--policy {
  width: 100%;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-home__contest--policy {
    border-radius: 20px;
    margin: 0 auto 40px;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--policy {
    border-radius: 5.12vw;
    margin: 0 auto 5.12vw;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--policy {
    padding: 5.12vw;
  }
}
.p-home__contest--policy-in {
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-home__contest--policy-in {
    height: 260px;
    width: 100%;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--policy-in {
    height: 240px;
    height: 61.5vw;
    width: 100%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--policy-in {
    padding-right: 5.12vw;
  }
}
.p-home__contest--blc {
  background-color: #FFFFFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__contest--blc {
    margin: 0 auto 60px;
    border-radius: 20px;
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--blc {
    margin: 0 auto 60px;
    border-radius: 20px;
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--blc {
    margin: 0 auto 15.4vw;
    border-radius: 5.12vw;
    padding: 10.25vw 5.12vw 5.12vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--prizeimg {
    width: 30px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--prizeimg {
    width: 30px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--prizeimg {
    width: 7.7vw;
    margin-right: 2.56vw;
  }
}
.p-home__contest--prizewrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-home__contest--prizewrap {
    padding-top: 20px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--prizewrap {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--prizewrap {
    margin: 0 auto 2.56vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--inner {
    width: 500px;
    margin: 0 auto;
  }
}
.p-home__contest--prizeimg-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__contest--prizeimg-wrap {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--prizeimg-wrap {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--prizeimg-wrap {
    margin: 0 auto 2.56vw;
  }
}
.p-home__contest--prizeimg-feature {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-home__contest--prizeimg-feature {
    right: -20px;
    top: -60px;
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--prizeimg-feature {
    right: -20px;
    top: -36px;
    width: 70px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--prizeimg-feature {
    right: -5.12vw;
    top: -9.2vw;
    width: 18vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--prize-list {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--prize-list {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--prize-list {
    margin: 0 auto 2.56vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--notewrap {
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--notewrap {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--notewrap {
    padding: 0 0 10.25vw;
  }
}
.p-home__contest--secondwrap {
  border-top: dotted 2px #000;
  padding-top: 40px;
}
@media screen and (max-width: 479px) {
  .p-home__contest--secondwrap {
    padding-top: 10.25vw;
  }
}
.p-home__contest--subttlblc {
  background-color: #FFE45E;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .p-home__contest--subttlblc {
    padding: 3px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--flowtxt {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--flowtxt {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--flowtxt {
    margin: 0 auto 2.56vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--applytxt {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--applytxt {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--applytxt {
    margin: 0 auto 5.12vw;
  }
}
.p-home__contest--notetxtwrap {
  margin-top: 1.3em;
}
@media screen and (min-width: 768px) {
  .p-home__contest--steps-flex {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--steps {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--steps {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--steps {
    margin: 0 auto 10.25vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home__contest--stepnote {
    margin: 23px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--stepnote {
    margin: 23px auto 0;
  }
}
@media screen and (max-width: 479px) {
  .p-home__contest--stepnote {
    margin: 5.9vw auto 0;
  }
}
.p-home__contest--step-item {
  border: solid 2px #FFE45E;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-home__contest--step-item {
    width: 194px;
    max-width: 194px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--step-item {
    width: 100%;
  }
}
.p-home__contest--step-ttlblc {
  border-radius: 8px 8px 0 0;
  background-color: #FFE45E;
  border: solid 2px #FFE45E;
}
.p-home__step--btmblc {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-home__step--btmblc {
    height: 126px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__step--btmblc {
    height: 126px;
  }
}
@media screen and (max-width: 479px) {
  .p-home__step--btmblc {
    height: 32.3vw;
  }
}
.p-home__contest--steparrow {
  white-space: nowrap;
  text-indent: -9999px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-home__contest--steparrow {
    background: url("../img/arrow_steps.png") no-repeat 0 0;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--steparrow {
    background: url("../img/arrow_steps-sp.png") no-repeat 0 0;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
}
.p-home__contest--imgwrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home__contest--imgwrap {
    width: 700px;
    padding: 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--imgwrap {
    padding: 0 3.85vw;
    width: 100%;
    width: 56.4vw;
  }
}
.p-home__contest--close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(229, 0, 106, 0.7);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-home__contest--close {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__contest--close {
    padding: 10.25vw 7.7vw;
  }
}

.p-menu__attention {
  border: solid 1px #E5006A;
}
@media screen and (min-width: 768px) {
  .p-menu__attention {
    padding: 10px 20px;
    width: 660px;
    max-width: 660px;
    min-width: 660px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__attention {
    padding: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__attention--wrap {
    margin: 0 auto 50px;
    width: 660px;
    max-width: 660px;
    min-width: 660px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__attention--wrap {
    margin: 0 auto 50px;
  }
}
.p-menu__smalblc {
  margin: 5px 0 0;
}
.p-menu__selectcontents {
  background-color: #FFF;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-menu__selectcontents {
    width: 700px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__selectcontents {
    width: 100%;
    margin: 20px auto 0;
  }
}
.p-menu__selectcontents--ttlblc {
  background-color: #E5006A;
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .p-menu__selectcontents--ttlblc {
    padding: 12px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__selectcontents--ttlblc {
    padding: 10px;
  }
}
.p-menu__selectcontents--txblc {
  background-color: #FFFFFF;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .p-menu__selectcontents--txblc {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__selectcontents--txblc {
    padding: 20px;
  }
}
.p-menu__selectcontents--side {
  display: flex;
}
.p-menu__selectcontents--side + .p-menu__selectcontents--side {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-menu__selectcontents--subttl {
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__selectcontents--subttl {
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    margin-right: 6px;
  }
}
.p-menu__category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-menu__category {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category {
    margin: 0 auto 66px;
  }
}
.p-menu__category--link {
  border: solid 2px #000000;
  text-decoration: none;
  display: inline-block;
  background: url("../img/arrow-cate.png");
  background-color: #FFF;
  background-repeat: no-repeat;
  box-shadow: 3px 3px #000000;
}
@media screen and (min-width: 768px) {
  .p-menu__category--link {
    padding: 13px 36px 13px 26px;
    border-radius: 40px;
    background-position: right 20px center;
    background-size: 10px 10px;
    margin: 0 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--link {
    padding: 0 26px 0 12px;
    border-radius: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    background-position: right 10px center;
    background-size: 10px 10px;
    margin: 0 3px 7px;
  }
}
.p-menu__limited {
  position: absolute;
  background-image: url("../img/icon_limited.png");
  background-repeat: no-repeat;
  white-space: nowrap;
  text-indent: -9999px;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-menu__limited {
    width: 60px;
    height: 60px;
    top: 8px;
    left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__limited {
    width: 60px;
    height: 60px;
    top: 2px;
    left: 2px;
  }
}
.p-menu__category--icon {
  position: absolute;
  background-image: url("../img/icon_pickup.png");
  background-repeat: no-repeat;
  white-space: nowrap;
  text-indent: -9999px;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-menu__category--icon {
    width: 58px;
    height: 52px;
    top: -15px;
    left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--icon {
    width: 50px;
    height: 40px;
    top: -15px;
    left: -15px;
  }
}
.p-menu__category--blc {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-menu__category--blc {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--blc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__category--itemblc {
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--itemblc {
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__category--itemblc02 {
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--itemblc02 {
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__category--ttlwrap {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--ttlwrap {
    margin: 0 auto 20px;
  }
}
.p-menu__category--item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-menu__category--item {
    min-width: 220px;
    max-width: 220px;
    width: 220px;
    margin: 0 20px 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--item {
    min-width: 46.5%;
    max-width: 46.5%;
    width: 46.5%;
    margin: 0 0 30px;
  }
}
.p-menu__category--item-set {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-menu__category--item-set {
    min-width: 340px;
    max-width: 340px;
    width: 340px;
    margin: 0 10px 20px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--item-set {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
  }
}
.p-menu__category--item-food {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-menu__category--item-food {
    min-width: 300px;
    max-width: 300px;
    width: 300px;
    margin: 0 10px 20px;
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--item-food {
    min-width: 47%;
    max-width: 47%;
    width: 47%;
    margin: 0 auto 20px;
    padding: 10px;
    background-color: #FFF;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__foods--selectwrap {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__category--item-img {
    margin: 0 0 16px;
    width: 100%;
  }
  .p-menu__category--item-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__category--item-img {
    margin: 0 0 10px;
    width: 100%;
  }
  .p-menu__category--item-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
.p-menu__foods--dwrap {
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .p-menu__foods--dwrap02 {
    margin: 10px 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__foods--dwrap02 {
    margin: 0 10px 0 0;
  }
}
.p-menu__foods--notice {
  margin: 5px 0;
}
@media screen and (min-width: 768px) {
  .p-menu__foods--notice02 {
    margin: 5px -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__foods--notice02 {
    margin: 5px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-menu__drinkmenu {
    margin: 30px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__drinkmenu {
    margin: 10px auto 8px;
  }
}
.p-menu__category--flexitem {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-menu__btn {
    margin: -40px auto 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__btn {
    margin: 0 auto 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-menu__inquiery {
    margin: 40px auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__inquiery {
    margin: 10.25vw auto 8vw;
  }
}

.p-apply__txtblc {
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .p-apply__form {
    width: 700px;
    min-width: 700px;
    margin: 0 auto;
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__form {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 479px) {
  .p-apply__form {
    padding: 0 0 5.12vw;
  }
}
.p-apply__hissu {
  background-color: #E5006A;
  border-radius: 30px;
  padding: 3px 7px;
}
.p-apply__table {
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .p-apply__table {
    border-radius: 20px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__table {
    border-radius: 10px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 479px) {
  .p-apply__table {
    margin: 0 auto 10.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__table--tr {
    display: flex;
    padding: 20px 40px;
  }
  .p-apply__table--tr.txtarea {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__table--tr {
    padding: 5.12vw;
    display: block;
  }
}
.p-apply__table--tr:nth-child(even) {
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .p-apply__table--tr02 {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__table--tr02 {
    padding: 5.12vw;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__checktxtwrap {
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__checktxtwrap {
    margin: 2.56vw 0;
  }
}
.p-apply__subttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-apply__subttl {
    width: 190px;
    min-width: 190px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__subttl {
    width: 100%;
    margin: 0 0 3.59vw;
  }
}
.p-apply__subttl.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-apply__subttl.top {
    padding-top: 10px;
  }
}
.p-apply__blc {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-apply__blc {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__blc02 {
    display: block;
  }
}
.p-apply__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-apply__item {
    width: 100%;
  }
}
.p-apply__label {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #707070;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-apply__label {
    font-size: 3.4vw;
    white-space: nowrap;
  }
}
@media screen and (max-width: 479px) {
  .p-apply__label {
    font-size: 3.4vw;
  }
}
.p-apply__item--label {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-apply__item--label {
    width: 35px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__item--label {
    width: 8.5vw;
    min-width: 8.5vw;
    max-width: 8.5vw;
    margin-right: 1.2vw;
    margin-left: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content02 {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content02 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content03 {
    width: 410px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content03 {
    width: 100%;
  }
}
.p-apply__content04 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-apply__content04 {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content05 {
    height: 100%;
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content05 {
    height: 100%;
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content--mail {
    width: 240px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content--mail {
    margin-bottom: 10px;
    margin-bottom: 2.56vw;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-apply__content--mail02 {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content--mail02 {
    width: 100%;
  }
}
.p-apply__content--postcode {
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-apply__content--postcode {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__content--postcode {
    width: 51.2vw;
  }
}
.p-apply__checkbox {
  width: auto;
}
.p-apply__checkbox--item {
  margin: 0 0 5px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-apply__checkbox--item {
    width: 320px;
  }
}
.p-apply__checkbox--item02 {
  width: 100%;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-apply__agreeinput {
  appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #f1f1f1;
  cursor: pointer;
  background-color: #FFFFFF;
}
.p-apply__agreeinput:checked::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 1px;
  height: 1px;
  border-bottom: 2px solid #000000;
  transform: rotate(-45deg);
  padding: 13px;
}
.p-apply__textdeco {
  text-decoration: underline !important;
}
.p-apply__policy {
  background: url("../img/icon_dl.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-apply__policy {
    background-size: 14px 14px;
    padding-right: 26px;
  }
}
@media screen and (max-width: 767px) {
  .p-apply__policy {
    background-size: 14px 14px;
    padding-right: 26px;
  }
}

input[type=tel],
input[type=text],
input[type=email],
input[type=url],
select,
textarea {
  max-width: 100%;
  width: 100%;
  border: 1px solid #707070;
  padding: 7px 10px;
  height: 100%;
  outline: none;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  input[type=tel],
  input[type=text],
  input[type=email],
  input[type=url],
  select,
  textarea {
    padding: 1.8vw 2.56vw;
  }
}
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #CCC;
}

.errorwrapper input[type=tel],
.errorwrapper input[type=text],
.errorwrapper input[type=email],
.errorwrapper input[type=checkbox],
.errorwrapper input[type=url],
.errorwrapper select,
.errorwrapper textarea {
  border-color: #E5006A;
  background-color: #F9EBF6;
}

label,
option {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.error {
  color: #E5006A;
  margin-top: 5px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .error {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .error {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.errorwrapper .p-apply__input, .errorwrapper .p-apply__txtarea {
  border-color: #E5006A;
  background-color: #F9EBF6;
}

.center {
  text-align: center;
}

.nounder {
  text-decoration: none;
}

.unerline {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .lineheight {
    margin: 10px 0;
    line-height: 120% !important;
  }
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.green {
  color: #45AD75;
}

.orange {
  color: #F39800;
}

.yellow-l {
  color: #FFFCC9;
}

.blue {
  color: #0000EE;
}

.underline {
  text-decoration: underline;
}

.red {
  color: #E5006A;
}

.white {
  color: #FFFFFF;
}

.regular {
  font-weight: 400;
}

.midium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.exbold {
  font-weight: 800 !important;
}

.black {
  font-weight: 900;
}

.u-text__common {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .u-text__common {
    font-size: 16px;
    font-size: 1rem;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__common {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__common {
    font-size: 3.59vw;
    line-height: 150%;
  }
}
.u-text__menu {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .u-text__menu {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__menu {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 210%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__menu {
    font-size: 5.12vw;
    line-height: 210%;
  }
}
.u-text__drinkmenu {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__drinkmenu {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__drinkmenu {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__drinkmenu {
    font-size: 3.333vw;
  }
}
.u-text__s-menu {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  line-height: 93.75%;
}
@media screen and (min-width: 768px) {
  .u-text__s-menu {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__s-menu {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__s-menu {
    font-size: 3.58vw;
  }
}
.u-text__ticket--note {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__ticket--note {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__ticket--note {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.u-text__bloc-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__bloc-ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__bloc-ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__bloc-ttl {
    font-size: 7.18vw;
  }
}
.u-text__map-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__map-ttl {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__map-ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__map-ttl {
    font-size: 5.12vw;
  }
}
.u-text__map-txt {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__map-txt {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__map-txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__map-txt {
    font-size: 3.33vw;
  }
}
.u-text__subttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 93.75%;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .u-text__subttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__subttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__subttl {
    font-size: 4.61vw;
  }
}
.u-text__semi-origin {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__semi-origin {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__semi-origin {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 90%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__semi-origin {
    font-size: 5.12vw;
    line-height: 90%;
  }
}
.u-text__semi-origin02 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__semi-origin02 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__semi-origin02 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__semi-origin02 {
    font-size: 5.12vw;
  }
}
.u-text__smallbold {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__smallbold {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__smallbold {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__smallbold {
    font-size: 3.07vw;
  }
}
.u-text__midium {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__midium {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__midium {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__midium {
    font-size: 3.33vw;
  }
}
.u-text__origin {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 479px) {
  .u-text__origin {
    font-size: 4.1vw;
  }
}
.u-text__origin--small {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
}
.u-text__asobil {
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .u-text__asobil {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__asobil {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__asobil {
    font-size: 5.12vw;
  }
}
.u-text__goole {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__goole {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__goole {
    font-size: 16px;
    font-size: 1rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__goole {
    font-size: 4.1vw;
    line-height: 150%;
  }
}
.u-text__smalltxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__smalltxt {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22.4px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__smalltxt {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 22.4px;
  }
}
@media screen and (max-width: 479px) {
  .u-text__smalltxt {
    font-size: 3.33vw;
    line-height: 172%;
  }
}
.u-text__factorytxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .u-text__factorytxt {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__factorytxt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__factorytxt {
    font-size: 3.333vw;
  }
}
.u-text__normal {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .u-text__normal {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__normal {
    font-size: 16px;
    font-size: 1rem;
  }
}
.u-text__midtxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .u-text__midtxt {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__midtxt {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__midtxt {
    font-size: 4.1vw;
  }
}
.u-text__normal--small {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__normal--small {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__normal--small {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.u-text__big {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__big {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .u-text__big {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 10px;
  }
}
@media screen and (max-width: 479px) {
  .u-text__big {
    font-size: 6.66vw;
  }
}
.u-text__closetxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .u-text__closetxt {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__closetxt {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__closetxt {
    font-size: 5.12vw;
  }
}
.u-text__big--small {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__big--small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__big--small {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.u-text__name {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__name {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 479px) {
  .u-text__name {
    font-size: 5.64vw;
  }
}
.u-text__note {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .u-text__note {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__note {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__note {
    font-size: 2.56vw;
  }
}
.u-text__note02 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .u-text__note02 {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__note02 {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.u-text__name--small {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .u-text__name--small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__name--small {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.u-text__feature {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__feature {
    font-size: 24px;
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .u-text__feature {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__feature {
    font-size: 4.1vw;
  }
}
.u-text__copy {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
}
.u-text__faq {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__faq {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__faq {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__faq {
    font-size: 8.2vw;
  }
}
.u-text__faq--item {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .u-text__faq--item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .u-text__faq--item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__faq--item {
    font-size: 3.59vw;
    line-height: 150%;
  }
}
.u-text__small {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 479px) {
  .u-text__small {
    font-size: 5.12vw;
  }
}
.u-text__factory {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__factory {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__factory {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__factory {
    font-size: 5.12vw;
  }
}
.u-text__yoyaku {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__yoyaku {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__yoyaku {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__yoyaku {
    font-size: 4.1vw;
  }
}
.u-text__category {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.16;
}
@media screen and (min-width: 768px) {
  .u-text__category {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__category {
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .u-text__category {
    font-size: 2.82vw;
    text-align: center;
  }
}
.u-text__menu--ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__menu--ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__menu--ttl {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__menu--ttl {
    font-size: 6.6vw;
  }
}
.u-text__menu--name {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__menu--name {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__menu--name {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__menu--name {
    font-size: 3.33vw;
  }
}
.u-text__menu--details {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .u-text__menu--details {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__menu--details {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__menu--details {
    font-size: 3vw;
  }
}
.u-text__menu--feature {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__menu--feature {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 767px) {
  .u-text__menu--feature {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 479px) {
  .u-text__menu--feature {
    font-size: 4.1vw;
    line-height: 1.5;
  }
}
.u-text__common-btn {
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__common-btn {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__common-btn {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__common-btn {
    font-size: 3.6vw;
  }
}
.u-text__ages {
  font-size: 20px;
  font-size: 1.25rem;
}
.u-text__packagename {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__packagename {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__packagename {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__packagename {
    font-size: 4.61vw;
  }
}
.u-text__packagetxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__packagetxt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__packagetxt {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__packagetxt {
    font-size: 2.82vw;
  }
}
.u-text__history--btmttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__history--btmttl {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__history--btmttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__history--btmttl {
    font-size: 6.15vw;
  }
}
.u-text__history--btmtxt {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__history--btmtxt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__history--btmtxt {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__history--btmtxt {
    font-size: 2.82vw;
  }
}
.u-text__history--btmtxt--ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__history--btmtxt--ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__history--btmtxt--ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__history--btmtxt--ttl {
    font-size: 5.64vw;
  }
}
.u-text__announce {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .u-text__announce {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__announce {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__announce {
    font-size: 5.4vw;
  }
}
.u-text__photospot--ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__photospot--ttl {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__photospot--ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__photospot--ttl {
    font-size: 4.61vw;
  }
}
.u-text__bigmin {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__bigmin {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__bigmin {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 136%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__bigmin {
    font-size: 5.64vw;
    line-height: 136%;
  }
}
.u-text__con {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__con {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 220%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__con {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 114%;
    font-size: 3.59vw;
  }
}
@media screen and (max-width: 479px) {
  .u-text__con {
    font-size: 3.59vw;
    line-height: 114%;
  }
}
.u-text__con--small {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .u-text__con--small {
    font-size: 21.4px;
    font-size: 1.3375rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__con--small {
    font-size: 15.815px;
    font-size: 0.9884375rem;
    font-size: 4vw;
  }
}
@media screen and (max-width: 479px) {
  .u-text__con--small {
    font-size: 4vw;
  }
}
.u-text__con--mid {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__con--mid {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__con--mid {
    font-size: 3.6vw;
  }
}
.u-text__con--big {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__con--big {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 80%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__con--big {
    font-size: 25.13px;
    font-size: 1.570625rem;
    line-height: 80%;
    font-size: 6vw;
  }
}
@media screen and (max-width: 479px) {
  .u-text__con--big {
    font-size: 6vw;
    line-height: 80%;
  }
}
.u-text__policy {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__policy {
    font-size: 16px;
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__policy {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 172%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__policy {
    font-size: 3.33vw;
    line-height: 172%;
  }
}
.u-text__apply {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
  font-size: 15.6px;
  font-size: 0.975rem;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 767px) {
  .u-text__apply {
    font-size: 4.1vw;
  }
}
.u-text__hissu {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .u-text__hissu {
    font-size: 3.33vw;
  }
}
.u-text__prizenote {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 479px) {
  .u-text__prizenote {
    font-size: 3.33vw;
  }
}
.u-text__prize {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__prize {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__prize {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__prize {
    font-size: 6.15vw;
  }
}
.u-text__contest--prize {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__contest--prize {
    font-size: 16px;
    font-size: 1rem;
    line-height: 140%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__contest--prize {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 186%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__contest--prize {
    font-size: 3.07vw;
    line-height: 186%;
  }
}
@media screen and (min-width: 768px) {
  .u-text__contest--prize span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.u-text__coontest-step {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (min-width: 768px) {
  .u-text__coontest-step {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 220%;
  }
}
@media screen and (max-width: 767px) {
  .u-text__coontest-step {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 220%;
  }
}
@media screen and (max-width: 479px) {
  .u-text__coontest-step {
    font-size: 5.12vw;
    line-height: 220%;
  }
}
.u-text__subttl-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .u-text__subttl-bold {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .u-text__subttl-bold {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 479px) {
  .u-text__subttl-bold {
    font-size: 5.12vw;
  }
}

/*# sourceMappingURL=style.css.map */
