@charset "UTF-8";
.spbr {
  display: none;
}
@media (max-width: 767px ) {
  .spbr {
    display: block;
  }
}

@media (max-width: 767px ) {
  .pcbr {
    display: none;
  }
}

body {
  min-height: calc(var(--vh) * 100);
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/*
  1. より直感的なボックスサイズのモデルを使用
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. デフォルトのマージンを削除
*/
* {
  margin: 0;
}

/*
  3. オーバーフロー設定
*/
html, body {
  width: 100%;
  overflow-x: clip;
}

/*
  タイポグラフィの微調整
  4. アクセシブルなline-heightを追加
  5. テキストのレンダリングを改善
  7. フォントファミリーの設定
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "M PLUS Rounded 1c", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

/*
  7. メディア要素のデフォルトを改善
*/
img, picture, video, canvas, svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/*
  8. フォームのfontに関するデフォルトを削除
*/
input, button, textarea, select {
  font: inherit;
}

/*
  9. テキストのオーバーフローを回避
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  10. ルートのスタックコンテキストを作成
*/
#root, #__next {
  isolation: isolate;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1259px ) {
  .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.l-container.is-thin {
  max-width: 1000px;
}

.l-footer_inner {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding: 1.5rem 1rem;
}
@media (max-width: 767px ) {
  .l-footer_inner {
    flex-direction: column;
    gap: 1rem;
  }
}
.l-footer_logo {
  max-width: 157px;
}
.l-footer_body_sns {
  display: flex;
  gap: 10px;
  margin-bottom: 0.625rem;
}
.l-footer_body_sns_item {
  width: 25px;
}
.l-footer_body_address {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.l-footer_copy {
  background: #151515;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem;
}

.l-header {
  position: fixed;
  left: 0;
  top: 5%;
  width: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  pointer-events: none;
}
@media (max-width: 767px ) {
  .l-header {
    top: 2%;
  }
}
.l-header_logo {
  width: 133px;
  margin-left: 2.5rem;
  margin-right: auto;
  opacity: 0;
  pointer-events: all;
}
@media (max-width: 767px ) {
  .l-header_logo {
    width: 90px;
    margin-left: 1rem;
  }
}
.l-header_btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 2.5rem;
  background: #fff;
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid #ff6d1f;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.16);
  pointer-events: all;
  cursor: pointer;
  opacity: 0;
}
@media (max-width: 767px ) {
  .l-header_btn {
    margin-right: 1rem;
    width: 64px;
  }
}
.l-header_btn_wrap {
  width: 40px;
  height: 32px;
  position: relative;
}
@media (max-width: 767px ) {
  .l-header_btn_wrap {
    width: 38px;
    height: 28px;
  }
}
.l-header_btn_wrap span {
  width: 100%;
  height: 7px;
  background: url(../img/menu_piro.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.l-header_btn_wrap span:nth-of-type(1) {
  top: 0;
}
.l-header_btn_wrap span:nth-of-type(2) {
  top: calc(50% - 3.5px);
  transition: opacity 0.1s, transform 0.4s;
}
.l-header_btn_wrap span:nth-of-type(3) {
  bottom: 0;
}
.l-header_btn_txt {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px ) {
  .l-header_btn_txt {
    font-size: 0.625rem;
  }
}
.l-header_btn.is-active .l-header_btn_wrap span:nth-of-type(1) {
  transform-origin: left top;
  transform: rotate(45deg);
  left: 25%;
}
@media (max-width: 767px ) {
  .l-header_btn.is-active .l-header_btn_wrap span:nth-of-type(1) {
    transform: rotate(35deg);
    left: 15%;
  }
}
.l-header_btn.is-active .l-header_btn_wrap span:nth-of-type(3) {
  transform-origin: left bottom;
  transform: rotate(-45deg);
  left: 25%;
}
@media (max-width: 767px ) {
  .l-header_btn.is-active .l-header_btn_wrap span:nth-of-type(3) {
    transform: rotate(-35deg);
    left: 15%;
  }
}
.l-header_btn.is-active .l-header_btn_wrap span:nth-of-type(2) {
  transform: translateX(100px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s, transform 0.4s;
}
.l-header_menu {
  width: 100%;
  height: 100dvh;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  transform: translateX(200%);
  transition: 0.7s;
  pointer-events: all;
}
.l-header_menu.is-active {
  transform: translateX(0);
}
.l-header_menu_list {
  list-style: none;
  padding: 0;
}
.l-header_menu_list_item + .l-header_menu_list_item {
  margin-top: 1.5rem;
}
@media (max-width: 767px ) {
  .l-header_menu_list_item + .l-header_menu_list_item {
    margin-top: 1rem;
  }
}
.l-header_menu_list_item a {
  display: inline-block;
}
.l-header_menu_list_item img {
  max-width: calc(var(--w));
  transform-origin: center;
}
@media (max-width: 767px ) {
  .l-header_menu_list_item img {
    max-width: calc(var(--w) * 0.6);
  }
}
.l-header_menu_list_item:hover img {
  animation: menu_buruburu 0.2s 2;
}
@keyframes menu_buruburu {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.l-header_menu_piro {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
}
@media (max-width: 767px ) {
  .l-header_menu_piro {
    width: 30%;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  background: #fff;
  color: #151515;
  text-decoration: none;
  border-radius: 27px;
  border: 3px solid #fff;
  transition: 0.2s;
}
@media (max-width: 767px ) {
  .c-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}
.c-btn:hover {
  border: 3px solid #ff6d1f;
}
.c-btn[target=_blank]::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/ico_otherlink.svg) no-repeat;
  background-size: contain;
}
.c-btn.is-black {
  background: #151515;
  color: #fff;
  border: 3px solid #151515;
}
.c-btn.is-black[target=_blank]::after {
  background: url(../img/ico_otherlink_w.svg) no-repeat;
  background-size: contain;
}
.c-btn.is-black:hover {
  border-left: 3px solid #2DCCD3;
  border-top: 3px solid #2DCCD3;
  border-right: 3px solid #F1204A;
  border-bottom: 3px solid #F1204A;
}
.c-btn.size-l {
  max-width: 300px;
  font-size: 1.25rem;
}
@media (max-width: 767px ) {
  .c-btn.size-l {
    font-size: 1.125rem;
  }
}

.c-opening {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background: #4b91e2;
  z-index: 10000;
}
.c-opening.is-absolute {
  position: absolute;
}
.c-opening.is-absolute .c-opening_piro {
  display: none;
}
.c-opening.is-absolute .c-opening_txt {
  display: none;
}
.c-opening_txt {
  width: 30%;
  max-width: 367px;
  position: absolute;
  right: 18%;
  bottom: 41.75%;
  transform: scale(0);
}
@media (max-width: 767px ) {
  .c-opening_txt {
    width: 60%;
    bottom: 60%;
  }
}
.c-opening_piro {
  width: 17.578125%;
  aspect-ratio: 450/964;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
}
@media (max-width: 767px ) {
  .c-opening_piro {
    width: 45%;
  }
}
.c-opening_piro img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0%;
     object-position: 0%;
}
.c-opening_piro.is-anime img {
  animation: kyounolunchha 0.5s steps(3) infinite;
}
@keyframes kyounolunchha {
  0% {
    -o-object-position: 0%;
       object-position: 0%;
  }
  100% {
    -o-object-position: 100%;
       object-position: 100%;
  }
}
.c-opening_bottom {
  width: 100%;
  height: 44px;
  background: url(../img/hero_top.png) repeat-x;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: -44px;
}
@media (max-width: 767px ) {
  .c-opening_bottom {
    height: 19px;
    bottom: -19px;
  }
}

.c-mouse {
  width: 80px;
  height: 80px;
  background: url(../img/hashi.png) no-repeat;
  background-size: 100% 200%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(10%, -50%);
  pointer-events: none;
  opacity: 0;
}
.c-mouse.is-hover {
  animation: hashiHov 1s steps(1, end) infinite;
}
@media (max-width: 767px ) {
  .c-mouse {
    display: none;
  }
}
@keyframes hashiHov {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}

.c-hero {
  position: relative;
  background-color: #ff6d1f;
  background-image: linear-gradient(90deg, rgba(255, 147, 90, 0.3607843137) 2px, transparent 2px), linear-gradient(rgba(255, 147, 90, 0.3607843137) 2px, transparent 2px);
  background-position: 10px 10px;
  background-size: 22px 22px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 767px ) {
  .c-hero {
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.c-hero_ttl {
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -2rem;
  max-width: 382px;
}
@media (max-width: 767px ) {
  .c-hero_ttl {
    width: 60%;
    margin-bottom: auto;
    margin-top: auto;
  }
}
.c-hero_piro {
  width: 24%;
  aspect-ratio: 772/962;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/piro01.png) no-repeat;
  background-size: 100% 200%;
  background-position: 0% 0%;
  max-width: 386px;
  animation: pirohero 1s 4s steps(2, end) infinite;
}
.c-hero_piro.is-anime {
  animation: pirohero 1s steps(2, end) infinite;
}
@media (max-width: 767px ) {
  .c-hero_piro {
    width: 60%;
  }
}
@keyframes pirohero {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 200%;
  }
}
.c-hero_deco, .c-hero_food {
  position: absolute;
}
.c-hero_deco.is-anime, .c-hero_food.is-anime {
  animation: hero_decos 1s infinite ease;
}
.c-hero_deco:nth-of-type(2n).is-anime, .c-hero_food:nth-of-type(2n).is-anime {
  animation: hero_decos_reverse 1s infinite ease;
}
@keyframes hero_decos {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hero_decos_reverse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.c-hero_don {
  width: 16%;
  top: 16.5%;
  right: 72%;
}
@media (max-width: 767px ) {
  .c-hero_don {
    width: 22%;
    top: 9%;
    right: 74%;
  }
}
.c-hero_kakigori {
  width: 10%;
  top: 41.125%;
  right: 63.17%;
}
@media (max-width: 767px ) {
  .c-hero_kakigori {
    width: 15%;
    top: 30%;
    right: 78%;
  }
}
.c-hero_omu {
  width: 12%;
  top: 62.25%;
  right: 74%;
}
@media (max-width: 767px ) {
  .c-hero_omu {
    width: 20%;
    top: 45%;
    right: 60%;
  }
}
.c-hero_tonkatsu {
  width: 7%;
  top: 83%;
  right: 68%;
}
@media (max-width: 767px ) {
  .c-hero_tonkatsu {
    width: 15%;
    top: 60%;
    right: 78%;
  }
}
.c-hero_ramen {
  width: 16%;
  top: 16.5%;
  left: 72%;
}
@media (max-width: 767px ) {
  .c-hero_ramen {
    width: 22%;
    top: 9%;
    left: 74%;
  }
}
.c-hero_burger {
  width: 10%;
  top: 41.125%;
  left: 63.17%;
}
@media (max-width: 767px ) {
  .c-hero_burger {
    width: 15%;
    top: 30%;
    left: 78%;
  }
}
.c-hero_soft {
  width: 4%;
  top: 58.25%;
  left: 77%;
}
@media (max-width: 767px ) {
  .c-hero_soft {
    width: 8%;
    top: 45%;
    left: 65%;
  }
}
.c-hero_fruit {
  width: 7%;
  top: 80%;
  left: 68%;
}
@media (max-width: 767px ) {
  .c-hero_fruit {
    width: 15%;
    top: 60%;
    left: 75%;
  }
}
.c-hero_kuru_yellow {
  width: 4%;
  top: 30%;
  right: 65%;
}
@media (max-width: 767px ) {
  .c-hero_kuru_yellow {
    width: 8%;
    top: 5%;
  }
}
.c-hero_line_green {
  width: 2.5%;
  top: 53%;
  right: 83%;
}
@media (max-width: 767px ) {
  .c-hero_line_green {
    width: 5%;
    top: 24%;
  }
}
.c-hero_cube_blue {
  width: 2.6%;
  top: 73%;
  right: 68%;
}
@media (max-width: 767px ) {
  .c-hero_cube_blue {
    width: 5.2%;
    top: 43%;
    right: 85%;
  }
}
.c-hero_maru_pink {
  width: 1.9%;
  top: 92%;
  right: 76%;
}
@media (max-width: 767px ) {
  .c-hero_maru_pink {
    width: 3.8%;
    top: 55%;
  }
}
.c-hero_line_pink {
  width: 1.9%;
  top: 30%;
  left: 65%;
}
@media (max-width: 767px ) {
  .c-hero_line_pink {
    width: 3.8%;
    top: 5%;
  }
}
.c-hero_zigzag_green {
  width: 3.4%;
  top: 53%;
  left: 83%;
}
@media (max-width: 767px ) {
  .c-hero_zigzag_green {
    width: 6.5%;
    top: 24%;
    left: 85%;
  }
}
.c-hero_sankaku_yellow {
  width: 2.7%;
  top: 70%;
  left: 68%;
}
@media (max-width: 767px ) {
  .c-hero_sankaku_yellow {
    width: 5.4%;
    top: 43%;
    left: 78%;
  }
}
.c-hero_maru_blue {
  width: 1.9%;
  top: 92%;
  left: 74%;
}
@media (max-width: 767px ) {
  .c-hero_maru_blue {
    width: 3.8%;
    top: 55%;
    left: 85%;
  }
}

.c-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #4b91e2;
  padding: 0.125rem;
  border-top: 2px solid #fac000;
  border-bottom: 2px solid #fac000;
  opacity: 0;
}
.c-marquee_txt {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-size: 1rem;
  color: #ffffff;
  font-family: "DotGothic16", sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-korokoro {
  width: 100%;
  margin-top: -136px;
  margin-bottom: -136px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (max-width: 767px ) {
  .c-korokoro {
    margin-top: -75px;
    margin-bottom: -75px;
  }
}
.c-korokoro_img {
  width: 207px;
  transition: 0.2s;
}
@media (max-width: 767px ) {
  .c-korokoro_img {
    width: 100px;
  }
}

.c-running {
  width: 100%;
  margin-top: -102px;
  margin-bottom: -102px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (max-width: 767px ) {
  .c-running {
    margin-top: -68px;
    margin-bottom: -68px;
  }
}
.c-running_img {
  width: 150px;
  aspect-ratio: 302/408;
  overflow: hidden;
}
.c-running_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
  animation: running_anime 1s steps(4) infinite;
  transform: rotate(-10deg);
}
@media (max-width: 767px ) {
  .c-running_img {
    width: 100px;
  }
}
@keyframes running_anime {
  0% {
    -o-object-position: 0% 0%;
       object-position: 0% 0%;
  }
  100% {
    -o-object-position: 0% 133.3333333333%;
       object-position: 0% 133.3333333333%;
  }
}

.c-suika {
  width: 100%;
  margin-top: -92px;
  margin-bottom: -92px;
  position: relative;
  z-index: 1;
}
.c-suika_img {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px ) {
  .c-suika_img {
    width: 200px;
  }
}
.c-suika_img_shadow {
  width: 100%;
  height: 30px;
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%);
  position: absolute;
  bottom: -15px;
  left: 0;
  z-index: -1;
}

.c-food {
  display: flex;
  gap: 4rem 2rem;
  flex-wrap: wrap;
}
@media (max-width: 767px ) {
  .c-food {
    gap: 2.5rem 1.25rem;
  }
}
.c-food_item {
  width: calc(25% - 1.5rem);
}
@media (max-width: 767px ) {
  .c-food_item {
    width: calc(50% - 0.625rem);
  }
}
.c-food_item_img {
  margin-bottom: 0.5rem;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
}
.c-food_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-food_item_ttl {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px ) {
  .c-food_item_ttl {
    font-size: 1rem;
  }
}
.c-food_item .c-btn + .c-btn {
  margin-top: 1rem;
}

.c-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.c-pager_item {
  width: 28px;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.c-pager_item.is-current {
  color: #f93d9e;
  background: #fff;
}
.c-pager a.c-pager_item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.c-pageOP {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background: #5cb75c;
  z-index: 10000;
}
.c-pageOP.is-absolute {
  position: absolute;
}
.c-pageOP_bottom {
  width: 100%;
  height: 44px;
  background: url(../img/sec_line_green.png) repeat-x;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: -44px;
}
@media (max-width: 767px ) {
  .c-pageOP_bottom {
    height: 19px;
    bottom: -19px;
  }
}
.c-pageOP.color-green {
  background: #5cb75c;
}
.c-pageOP.color-green .c-pageOP_bottom {
  background: url(../img/sec_line_green.png) repeat-x;
  background-size: auto 100%;
}

.c-pagetop {
  width: 150px;
  aspect-ratio: 169/414;
  position: fixed;
  right: 3%;
  bottom: -250px;
  background: url(../img/pagetop_piro.png) no-repeat;
  background-size: auto 100%;
  background-position: 0% 0%;
  z-index: 100;
  display: none;
}
@media (max-width: 767px ) {
  .c-pagetop {
    right: 0;
    width: 100px;
    bottom: -170px;
  }
}
@media (min-width: 768px ) {
  .c-pagetop:hover {
    animation: pyon 0.1s steps(2) forwards;
  }
}
.c-pagetop.is-jump {
  background-position: 100% 0%;
}
@keyframes pyon {
  0% {
    background-position: 0% 0%;
    bottom: -250px;
  }
  100% {
    background-position: 100% 0%;
    bottom: -100px;
  }
}

.p-top_about {
  background: #5cb75c;
  padding-top: 5rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px ) {
  .p-top_about {
    padding-top: 2.5rem;
    padding-bottom: 8rem;
  }
}
.p-top_about_wrap {
  display: grid;
  gap: 0.5rem;
  grid-template: auto auto auto auto/1fr 0.5fr 0.5fr 1fr;
  grid-template-areas: "basic main main sns" "basic main main hate" "like main main hate" "word word work work";
  margin-bottom: 3rem;
}
@media (max-width: 991px ) {
  .p-top_about_wrap {
    grid-template: auto auto auto auto/50% 50%;
    grid-template-areas: "main main" "basic sns" "like hate" "word work";
  }
}
.p-top_about_main {
  grid-area: main;
}
.p-top_about_main_ttl {
  max-width: 337px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px ) {
  .p-top_about_main_ttl {
    max-width: 168px;
  }
}
.p-top_about_main_piro {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -18%;
  transform-origin: bottom center;
}
@media (max-width: 991px ) {
  .p-top_about_main_piro {
    max-width: 100px;
    margin-top: -9%;
  }
}
.p-top_about_main_piro img {
  transform-origin: bottom center;
}
.p-top_about_main_piro img.is-anime {
  animation: 0.2s 2 yurayurapiro linear;
}
.p-top_about_box {
  transform: scale(0);
  cursor: pointer;
}
.p-top_about_box_ttl {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 991px ) {
  .p-top_about_box_ttl {
    font-size: 0.9375rem;
  }
}
@media (max-width: 991px ) {
  .p-top_about_box_txt {
    font-size: 73%;
  }
}
.p-top_about_box_list {
  list-style: none;
  padding: 0;
}
@media (max-width: 991px ) {
  .p-top_about_box_list {
    font-size: 73%;
  }
}
.p-top_about_box_list_item a {
  display: inline-flex;
  align-items: center;
  color: #151515;
  transition: 0.2s;
}
.p-top_about_box_list_item a img {
  max-width: 25px;
  margin-right: 0.625rem;
}
@media (max-width: 991px ) {
  .p-top_about_box_list_item a img {
    max-width: 15%;
    margin-right: 0.5rem;
  }
}
.p-top_about_box_list_item a:hover {
  color: #ff6d1f;
}
.p-top_about_basic {
  grid-area: basic;
  width: 100%;
  aspect-ratio: 338/224;
  background: url(../img/about_bg01.png) no-repeat;
  background-size: 100% 100%;
  padding: 10% 0 0 18%;
}
.p-top_about_basic .p-top_about_box_ttl {
  color: #4b91e2;
}
@media (max-width: 991px ) {
  .p-top_about_basic {
    padding: 8% 0 20% 14%;
  }
}
.p-top_about_like {
  grid-area: like;
  width: 90%;
  aspect-ratio: 292/195;
  background: url(../img/about_bg02.png) no-repeat;
  background-size: 100% 100%;
  padding: 10% 0 0 18%;
  margin-left: auto;
}
.p-top_about_like .p-top_about_box_ttl {
  color: #f93d9e;
}
@media (max-width: 991px ) {
  .p-top_about_like {
    padding: 5% 0 15% 10%;
  }
}
.p-top_about_word {
  grid-area: word;
  width: 70%;
  aspect-ratio: 391/171;
  background: url(../img/about_bg03.png) no-repeat;
  background-size: 100% 100%;
  padding: 7% 0 0 15%;
  margin-left: auto;
}
.p-top_about_word .p-top_about_box_ttl {
  color: #ff6d1f;
}
@media (max-width: 991px ) {
  .p-top_about_word {
    width: 100%;
    padding: 10% 5% 18% 15%;
  }
}
.p-top_about_sns {
  grid-area: sns;
  width: 90%;
  aspect-ratio: 338/224;
  background: url(../img/about_bg04.png) no-repeat;
  background-size: 100% 100%;
  padding: 15% 0 0 30%;
}
.p-top_about_sns .p-top_about_box_list_item + .p-top_about_box_list_item {
  margin-top: 1rem;
}
@media (max-width: 991px ) {
  .p-top_about_sns .p-top_about_box_list_item + .p-top_about_box_list_item {
    margin-top: 0.5rem;
  }
}
.p-top_about_sns .p-top_about_box_ttl {
  color: #ff6d1f;
}
@media (max-width: 991px ) {
  .p-top_about_sns {
    padding: 15% 10% 15% 20%;
  }
}
.p-top_about_hate {
  grid-area: hate;
  width: 100%;
  aspect-ratio: 292/195;
  background: url(../img/about_bg05.png) no-repeat;
  background-size: 100% 100%;
  padding: 15% 10% 15% 18%;
  margin-right: auto;
}
.p-top_about_hate .p-top_about_box_ttl {
  color: #4b91e2;
}
@media (max-width: 991px ) {
  .p-top_about_hate {
    padding: 12% 5% 15% 28%;
  }
}
.p-top_about_work {
  grid-area: work;
  width: 70%;
  aspect-ratio: 391/171;
  background: url(../img/about_bg06.png) no-repeat;
  background-size: 100% 100%;
  padding: 7% 0 0 15%;
  margin-right: auto;
}
.p-top_about_work .p-top_about_box_ttl {
  color: #f93d9e;
}
@media (max-width: 991px ) {
  .p-top_about_work {
    width: 100%;
    padding: 7% 0 15% 15%;
  }
}
.p-top_about_other {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 973px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
.p-top_about_other_body {
  width: 60%;
  position: relative;
}
@media (max-width: 767px ) {
  .p-top_about_other_body {
    width: 100%;
  }
}
.p-top_about_other_body_item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 564/247;
  background: url(../img/about_mokumoku_bg.png) no-repeat;
  background-size: 100% 100%;
  transform: scale(0);
  transform-origin: 100% 60%;
}
@media (max-width: 767px ) {
  .p-top_about_other_body_item {
    padding: 1rem 2rem;
    transform-origin: 30% 100%;
  }
}
.p-top_about_other_data_ttl {
  font-size: 1.25rem;
  color: #4b91e2;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px ) {
  .p-top_about_other_data_ttl {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}
.p-top_about_other_data + .p-top_about_other_data {
  margin-top: 1.25rem;
}
@media (max-width: 767px ) {
  .p-top_about_other_data_txt {
    font-size: 0.875rem;
  }
}
.p-top_about_other_deco01 {
  position: absolute;
  width: 18px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.16);
  right: -20%;
  bottom: 5%;
  transform: scale(0);
}
@media (max-width: 767px ) {
  .p-top_about_other_deco01 {
    width: 9px;
    bottom: -24%;
    right: 42%;
  }
}
.p-top_about_other_deco02 {
  position: absolute;
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.16);
  right: -17%;
  bottom: 15%;
  transform: scale(0);
}
@media (max-width: 767px ) {
  .p-top_about_other_deco02 {
    width: 14px;
    bottom: -20%;
    right: 48%;
  }
}
.p-top_about_other_deco03 {
  position: absolute;
  width: 65px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.16);
  right: -12%;
  top: 53%;
  transform: scale(0);
}
@media (max-width: 767px ) {
  .p-top_about_other_deco03 {
    width: 24px;
    right: 55%;
    top: 100%;
  }
}
.p-top_about_other_piro {
  width: calc(40% - 52px);
  aspect-ratio: 349/293;
  background: url(../img/about_mokumoku_piro.png) no-repeat;
  background-size: 200% 100%;
  background-position: 0% 0%;
  margin-left: auto;
  margin-top: -8%;
  cursor: pointer;
}
@media (max-width: 767px ) {
  .p-top_about_other_piro {
    width: 50%;
  }
}
.p-top_about_other_piro.is-show {
  background-position: 100% 0%;
}
.p-top_about_photo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px ) {
  .p-top_about_photo {
    margin-top: 5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.p-top_about_photo_item img {
  border-radius: 5px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.p-top_about_photo_item01 {
  transform-origin: 90% top;
}
.p-top_about_photo_item01 img {
  transform: rotate(-8deg) translateY(-25px);
}
.p-top_about_photo_item02 {
  transform-origin: center top;
}
.p-top_about_photo_item02 img {
  transform: translateY(10px);
}
.p-top_about_photo_item03 {
  transform-origin: 20% top;
}
.p-top_about_photo_item03 img {
  transform: rotate(5deg) translateY(-25px);
}
.p-top_about_photo_item04 {
  transform-origin: 80% top;
}
.p-top_about_photo_item04 img {
  transform: rotate(-8deg) translateY(30px);
}
.p-top_food {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: #f93d9e;
  position: relative;
}
@media (max-width: 767px ) {
  .p-top_food {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-top_food::before {
  content: "";
  width: 100%;
  height: 44px;
  background: url(../img/sec_line_green.png) repeat-x;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: auto 100%;
}
@media (max-width: 767px ) {
  .p-top_food::before {
    height: 19px;
  }
}
.p-top_food_ttl {
  max-width: 791px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-top_food_ttl {
    max-width: 395px;
    margin-bottom: 1.5rem;
  }
}
.p-top_food_btn {
  margin-top: 3.75rem;
}
@media (max-width: 767px ) {
  .p-top_food_btn {
    margin-top: 2rem;
  }
}
.p-top_food_btn .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.p-top_game {
  padding-top: 10rem;
  padding-bottom: 12rem;
  background: #4b91e2;
  position: relative;
}
@media (max-width: 767px ) {
  .p-top_game {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.p-top_game::before {
  content: "";
  width: 100%;
  height: 44px;
  background: url(../img/sec_line_pink.png) repeat-x;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: auto 100%;
}
@media (max-width: 767px ) {
  .p-top_game::before {
    height: 19px;
  }
}
.p-top_game_ttl {
  max-width: 275px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-top_game_ttl {
    max-width: 137px;
    margin-bottom: 2.5rem;
  }
}
.p-top_game_wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-top_game_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top_game_img {
  width: 44.2%;
  flex: none;
}
.p-top_game_body {
  position: relative;
}
.p-top_game_body_txt {
  color: #fff;
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1rem;
}
@media (max-width: 767px ) {
  .p-top_game_body_txt {
    font-size: 1rem;
  }
}
.p-top_game_body_piro {
  max-width: 224px;
  margin-left: auto;
  transform-origin: bottom;
}
@media (max-width: 767px ) {
  .p-top_game_body_piro {
    max-width: 112px;
    position: absolute;
    right: 1rem;
    top: -200px;
  }
}
.p-top_game_body .c-btn:hover + .p-top_game_body_piro {
  animation: 0.2s 2 yurayurapiro linear;
}
@keyframes yurayurapiro {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.p-top_contact {
  padding-top: 10rem;
  background: #fac000;
  position: relative;
}
@media (max-width: 767px ) {
  .p-top_contact {
    padding-top: 8rem;
  }
}
.p-top_contact::before {
  content: "";
  width: 100%;
  height: 44px;
  background: url(../img/sec_line_blue.png) repeat-x;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: auto 100%;
}
@media (max-width: 767px ) {
  .p-top_contact::before {
    height: 19px;
  }
}
.p-top_contact_ttl {
  max-width: 446px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
@media (max-width: 767px ) {
  .p-top_contact_ttl {
    max-width: 223px;
  }
}
.p-top_contact_txt {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px ) {
  .p-top_contact_txt {
    font-size: 1rem;
  }
}
.p-top_contact_btn .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.p-top_contact_piro {
  margin-left: 65%;
  margin-top: -5%;
  max-width: 130px;
}
@media (max-width: 767px ) {
  .p-top_contact_piro {
    margin-top: 0;
  }
}
.p-top_recruit {
  padding-top: 5rem;
  background: #FFDC67;
  position: relative;
}
@media (max-width: 767px ) {
  .p-top_recruit {
    padding-top: 2.5rem;
  }
}
.p-top_recruit_ttl {
  max-width: 406px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
@media (max-width: 767px ) {
  .p-top_recruit_ttl {
    max-width: 203px;
  }
}
.p-top_recruit_txt {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px ) {
  .p-top_recruit_txt {
    font-size: 1rem;
  }
}
.p-top_recruit_btn .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.p-top_recruit_btn .c-btn + .c-btn {
  margin-top: 1rem;
}
.p-top_recruit_piro {
  margin-left: 65%;
  margin-top: -10%;
  max-width: 150px;
}
@media (max-width: 767px ) {
  .p-top_recruit_piro {
    margin-top: 1rem;
  }
}
.p-top_faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #FFE58F;
}
@media (max-width: 767px ) {
  .p-top_faq {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-top_faq_ttl {
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-top_faq_ttl {
    max-width: 236px;
    margin-bottom: 2rem;
  }
}
.p-top_faq_wrap {
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-top_faq_wrap + .p-top_faq_wrap {
    margin-top: 1.5rem;
  }
}
.p-top_faq_question {
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 767px ) {
  .p-top_faq_question {
    font-size: 0.875rem;
    padding: 1rem;
  }
}
.p-top_faq_question::before {
  content: "";
  width: 26px;
  height: 19px;
  background: url(../img/ico_q.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px ) {
  .p-top_faq_question::before {
    width: 20px;
    height: 14px;
    margin-top: 0.25rem;
  }
}
.p-top_faq_answer {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 767px ) {
  .p-top_faq_answer {
    gap: 0.75rem;
  }
}
.p-top_faq_answer_txt {
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  line-height: 1.5;
  margin-top: 1.25rem;
  transform-origin: right top;
}
@media (max-width: 767px ) {
  .p-top_faq_answer_txt {
    font-size: 0.875rem;
    padding: 1rem;
  }
}
.p-top_faq_answer_txt::before {
  content: "";
  width: 26px;
  height: 19px;
  background: url(../img/ico_a.svg) no-repeat;
  background-size: contain;
  flex: none;
}
@media (max-width: 767px ) {
  .p-top_faq_answer_txt::before {
    width: 20px;
    height: 14px;
    margin-top: 0.25rem;
  }
}
.p-top_faq_answer_txt::after {
  content: "";
  width: 24px;
  height: 12px;
  background: url(../img/deco_faq.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  top: 10px;
}
.p-top_faq_answer_piro {
  width: 139px;
  flex: none;
}
@media (max-width: 767px ) {
  .p-top_faq_answer_piro {
    width: 100px;
  }
}

.p-food {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: #f93d9e;
  position: relative;
}
@media (max-width: 767px ) {
  .p-food {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}
.p-food_ttl {
  max-width: 791px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-food_ttl {
    max-width: 395px;
    margin-bottom: 1.5rem;
  }
}
.p-food_cat {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-food_cat {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.p-food_cat_item a {
  padding: 0.25rem 1.5rem;
  border-radius: 28px;
  border: 2px solid #fff;
  transition: 0.2s;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 767px ) {
  .p-food_cat_item a {
    font-size: 0.875rem;
  }
}
.p-food_cat_item:hover a {
  background: rgba(255, 255, 255, 0.1);
}
.p-food_cat_item.is-current a {
  background: #fff;
  color: #f93d9e;
}

.p-error {
  background: #4b91e2;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
}
.p-error .l-container {
  max-width: 800px;
}
.p-error_ttl {
  width: 50%;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
@media (max-width: 767px ) {
  .p-error_ttl {
    margin-bottom: 1rem;
  }
}
.p-error_txt {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.p-error_img {
  max-width: 300px;
  margin-left: auto;
  margin-top: -5rem;
}
@media (max-width: 767px ) {
  .p-error_img {
    margin-top: 1rem;
    width: 60%;
  }
}/*# sourceMappingURL=style.css.map */