@font-face {
  font-family: "magic_flavour";
  src: url("../fonts/magic_flavour.woff") format("woff2"), url("../fonts/magic_flavour.woff2") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "dnp-shuei-4gob-std", sans-serif;
  font-weight: 700;
  background: #000;
  color: #fff;
  font-feature-settings: "palt";
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  position: fixed;
  z-index: 100;
}
header .inner #menu_btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5d8524;
  position: fixed;
  top: 21px;
  right: 5%;
  cursor: pointer;
  transition: 0.3s;
}
header .inner #menu_btn span {
  display: block;
  width: 20px;
  height: 2px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 1px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}
header .inner #menu_btn span:nth-child(1) {
  top: calc(50% - 6px);
}
header .inner #menu_btn span:nth-child(2) {
  top: 50%;
}
header .inner #menu_btn span:nth-child(3) {
  top: calc(50% + 6px);
}
header .inner #menu_btn:hover {
  opacity: 0.7;
}
header .inner #global_nav {
  position: fixed;
  top: 10px;
  right: calc(5% - 10px);
  background: #5d8524;
  color: #fff;
  border-radius: 20px;
  padding: 30px 60px 45px;
  width: 700px;
  max-width: 100%;
  max-height: calc(100vh - 20px);
  overflow: auto;
  display: none;
}
header .inner #global_nav #menu_close_btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  position: fixed;
  top: 21px;
  right: 5%;
  cursor: pointer;
  transition: 0.3s;
}
header .inner #global_nav #menu_close_btn span {
  display: block;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 14px;
  border-radius: 1px;
  background: #5d8524;
  position: absolute;
  transition: 0.3s;
}
header .inner #global_nav #menu_close_btn span:nth-child(1) {
  transform: rotate(45deg);
}
header .inner #global_nav #menu_close_btn span:nth-child(2) {
  transform: rotate(-45deg);
}
header .inner #global_nav #menu_close_btn:hover {
  opacity: 0.7;
}
header .inner #global_nav .global_nav_logo {
  text-align: center;
  margin-bottom: 13px;
}
header .inner #global_nav .global_nav_logo img {
  width: 189px;
}
header .inner #global_nav > ul > li {
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}
header .inner #global_nav > ul > li > a {
  font-size: 18px;
  font-weight: bold;
}
header .inner #global_nav > ul > li .child {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 4%;
}
header .inner #global_nav > ul > li .child li {
  width: 48%;
}
header .inner #global_nav > ul > li .child li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #fff;
  border-radius: 24px;
  color: #5d8524;
  font-weight: bold;
}
header .inner #global_nav > ul > li .bnrs {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 4%;
}
header .inner #global_nav > ul > li .bnrs li {
  width: 48%;
}
header .inner #global_nav .isdg {
  margin-top: 38px;
  text-align: center;
}
header .inner #global_nav .isdg img {
  width: 83px;
}

footer {
  font-family: "Noto Sans JP", sans-serif;
}
footer .inner {
  border-top: 1px solid #3e3a39;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 25px 0;
}
footer .inner .logo_nav {
  display: flex;
  align-items: center;
  gap: 77px;
}
footer .inner .logo_nav .logo img {
  width: 143px;
}
footer .inner .logo_nav nav ul {
  display: flex;
  gap: 2em;
}
footer .inner .logo_nav nav ul li a {
  color: #9fa0a0;
  font-size: 14px;
  font-weight: bold;
}
footer .inner .copy {
  font-size: 14px;
  font-weight: bold;
  color: #595757;
}

@media (max-width: 1000px) {
  footer .inner {
    flex-direction: column;
    align-items: center;
  }
  footer .inner .logo_nav {
    width: 100%;
    justify-content: center;
  }
  footer .inner .copy {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  header .inner #menu_btn {
    top: 8px;
  }
  header .inner #global_nav {
    top: 8px;
    width: calc(90% + 20px);
    padding: 30px 5%;
  }
  header .inner #global_nav .global_nav_logo img {
    width: 140px;
  }
  header .inner #global_nav > ul > li {
    padding: 10px 0;
  }
  header .inner #global_nav > ul > li > a {
    font-size: 16px;
  }
  header .inner #global_nav > ul > li .child {
    margin-top: 10px;
  }
  header .inner #global_nav > ul > li .child li a {
    font-size: 14px;
  }
  header .inner #global_nav > ul > li .bnrs {
    gap: 10px;
    margin-top: 10px;
  }
  header .inner #global_nav > ul > li .bnrs li {
    width: 100%;
  }
  header .inner #global_nav .isdg {
    margin-top: 20px;
  }
  footer .inner .logo_nav {
    gap: 10px;
    flex-direction: column;
  }
  footer .inner .logo_nav nav ul li a {
    font-size: 12px;
  }
  footer .inner .copy {
    margin-top: 30px;
    font-size: 12px;
  }
}
#mv {
  aspect-ratio: 150/116;
  position: relative;
}
#mv > img,
#mv > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#mv .inner {
  max-width: none;
  width: 100%;
  padding: 40px 40px 0;
}
#mv .inner h1 img {
  width: 143px;
  display: block;
}
#mv .inner .mv_item {
  width: 28.1vw;
  position: absolute;
  bottom: 4.5vw;
  left: 35.8vw;
}
#mv .scroll {
  position: absolute;
  bottom: 60px;
  right: 60px;
}
#mv .scroll a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #f9bc02;
  font-family: "Poppins", sans-serif;
  width: 160px;
  height: 160px;
}
#mv .scroll a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/mv_scroll.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 8s linear infinite;
}

#new {
  background: url(../img/new_bg.jpg) no-repeat bottom right/1500px;
  padding: 100px 0;
  position: relative;
  height: 1000px;
  overflow: hidden;
}
#new.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#new.fixed + #feature {
  margin-top: 1000px;
}

#feature {
  background: url(../img/feature_bg.jpg) no-repeat center/cover;
  padding: 100px 0 120px;
  position: relative;
  z-index: 2;
}
#feature .inner {
  max-width: 990px;
  padding: 70px 5% 90px;
  position: relative;
}
#feature .inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: url(../img/feature_line.svg) no-repeat center top/100%;
  position: absolute;
  top: 0;
  left: 0;
}
#feature .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: url(../img/feature_line.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#feature .inner h2 {
  position: relative;
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 90px;
}
#feature .inner h2 img {
  width: 257px;
}
#feature .inner h2::before {
  content: "";
  display: block;
  width: 180px;
  height: 86px;
  background: url(../img/feature_kazari1.png) no-repeat center/contain;
  position: absolute;
  top: 16px;
  left: -20px;
  animation: 1.8s ease-in-out 0s infinite alternate-reverse none running fuwa01_ani;
}
#feature .inner h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 90px;
  background: url(../img/feature_kazari2.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: -1px;
  animation: 1.8s ease-in-out 0s infinite alternate-reverse none running fuwa01_ani;
}
#feature .inner .wrap {
  max-width: 640px;
  margin: 0 auto;
}
#feature .inner .wrap .desc {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #781000;
}
#feature .inner .wrap .img {
  margin: 30px 0;
}

#flavor {
  background: #000;
  position: relative;
  z-index: 2;
}
#flavor .nav {
  display: flex;
  position: relative;
}
#flavor .nav::before {
  content: "";
  display: block;
  background: no-repeat center/contain;
  z-index: -1;
  position: absolute;
  width: 270px;
  aspect-ratio: 270/573;
  background-image: url(../img/item_nav_panda.svg);
  bottom: -24px;
  left: calc(50% - 98px);
  z-index: 2;
}
#flavor .nav .nav_block {
  width: 50%;
  min-height: 640px;
  padding: 80px 5% 65px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#flavor .nav .nav_block::before {
  content: "";
  display: block;
  background: no-repeat center/contain;
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#flavor .nav .nav_block .img_area {
  position: relative;
}
#flavor .nav .nav_block .img_area .img {
  text-align: center;
}
#flavor .nav .nav_block .img_area .img img {
  max-width: 318px;
}
#flavor .nav .nav_block .btn {
  margin-top: 30px;
}
#flavor .nav .nav_block .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  width: 360px;
  height: 70px;
  border-radius: 35px;
  position: relative;
  margin: 0 auto;
}
#flavor .nav .nav_block .btn a::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
#flavor .nav .nav_block.item_a {
  background: url(../img/flavor_nav1_bg.jpg) no-repeat center/cover;
}
#flavor .nav .nav_block.item_a::before {
  max-width: 473px;
  width: 63%;
  aspect-ratio: 473/300;
  background-image: url(../img/item_nav_kazari1.svg);
  top: 87px;
}
#flavor .nav .nav_block.item_a .btn a {
  color: #5d8524;
}
#flavor .nav .nav_block.item_a .btn a::after {
  background-image: url(../img/arrow_bottom_a.svg);
}
#flavor .nav .nav_block.item_b {
  background: url(../img/flavor_nav2_bg.jpg) no-repeat center/cover;
}
#flavor .nav .nav_block.item_b::before {
  max-width: 468px;
  width: 62.4%;
  aspect-ratio: 468/298;
  background-image: url(../img/item_nav_kazari2.svg);
  top: 87px;
}
#flavor .nav .nav_block.item_b .btn a {
  color: #96100a;
}
#flavor .nav .nav_block.item_b .btn a::after {
  background-image: url(../img/arrow_bottom_b.svg);
}
#flavor .item_block {
  padding-bottom: 90px;
  background: no-repeat center/cover;
}
#flavor .item_block .main_img img {
  width: 100%;
}
#flavor .item_block .main_desc .inner {
  display: flex;
  justify-content: center;
  padding: 127px 0 75px 50px;
  gap: 55px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
#flavor .item_block .main_desc .inner::before {
  content: "";
  display: block;
  width: 164px;
  aspect-ratio: 164/77;
  background: url(../img/item_a_kazari2.svg) no-repeat center/contain;
  position: absolute;
  top: 385px;
  left: 57px;
  z-index: -1;
  animation: 1.8s ease-in-out 0s infinite alternate-reverse none running fuwa01_ani;
}
#flavor .item_block .main_desc .inner::after {
  content: "";
  display: block;
  width: 132px;
  aspect-ratio: 132/86;
  background: url(../img/item_a_kazari3.svg) no-repeat center/contain;
  position: absolute;
  top: 46px;
  right: 76px;
  z-index: -1;
  animation: 1.8s ease-in-out 0s infinite alternate-reverse none running fuwa01_ani;
}
#flavor .item_block .main_desc .inner .img {
  width: 300px;
}
#flavor .item_block .main_desc .inner .txt {
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 355px);
}
#flavor .item_block .main_desc .inner .txt h2 {
  font-size: 50px;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #d3b174;
  margin-bottom: 20px;
  width: 500px;
  max-width: 100%;
}
#flavor .item_block .main_desc .inner .txt h2 ruby rt {
  font-size: 13px;
}
#flavor .item_block .main_desc .inner .txt .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#flavor .item_block .main_desc .inner .txt .row .row_txt .catch {
  font-size: 30px;
  line-height: 1.53;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#flavor .item_block .main_desc .inner .txt .row .row_txt .desc {
  line-height: 1.875;
  max-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
}
#flavor .item_block .main_desc .inner .txt .row .row_img img {
  width: 170px;
  aspect-ratio: 1/1;
}
#flavor .item_block .howto .inner {
  max-width: 960px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 1;
}
#flavor .item_block .howto .inner h3 {
  text-align: center;
  margin-bottom: 60px;
}
#flavor .item_block .howto .inner h3 img {
  width: 720px;
}
#flavor .item_block .howto .inner .list .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7%;
}
#flavor .item_block .howto .inner .list .block .img {
  width: 60%;
}
#flavor .item_block .howto .inner .list .block .img img, #flavor .item_block .howto .inner .list .block .img video {
  border-radius: 20px;
}
#flavor .item_block .howto .inner .list .block .txt {
  width: 33%;
}
#flavor .item_block .howto .inner .list .block .txt .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 147px;
  background: no-repeat center/contain;
  font-size: 76px;
  font-family: "magic_flavour";
  line-height: 1;
  margin: 0 auto 30px;
}
#flavor .item_block .howto .inner .list .block .txt .detail {
  font-size: 18px;
  line-height: 1.77;
  font-weight: bold;
}
#flavor .item_block .howto .inner .list .block:not(:last-child) {
  margin-bottom: 60px;
}
#flavor .item_block .howto .inner .list .block:nth-child(2n) .img {
  order: 1;
}
#flavor .item_block .howto .inner .list .block:nth-child(2n) .txt {
  order: 2;
}
#flavor .item_block .howto .inner .list .block.bnr {
  justify-content: center;
}
#flavor .item_block .howto .inner .list .block.bnr img {
  width: 740px;
}
#flavor .item_block .howto .inner .notice {
  margin-top: 70px;
  text-align: center;
  font-weight: 500;
}
#flavor .item_block#item_a {
  background-image: url(../img/item_block_a_bg.jpg);
}
#flavor .item_block#item_a .howto .inner .list .block .txt .num {
  color: #5d8524;
  background-image: url(../img/howto_num_bg_a.svg);
}
#flavor .item_block#item_b {
  background-image: url(../img/item_block_b_bg.jpg);
}
#flavor .item_block#item_b .main_desc .inner::before {
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 140/90;
  background: url(../img/item_b_kazari2.png) no-repeat center/contain;
  position: absolute;
  top: 408px;
  left: 65px;
  z-index: -1;
}
#flavor .item_block#item_b .main_desc .inner::after {
  content: "";
  display: block;
  width: 180px;
  aspect-ratio: 180/84;
  background: url(../img/item_b_kazari3.png) no-repeat center/contain;
  position: absolute;
  top: 76px;
  right: 26px;
  z-index: -1;
}
#flavor .item_block#item_b .howto .inner .list .block .txt .num {
  color: #b72000;
  background-image: url(../img/howto_num_bg_b.svg);
}

#information {
  padding-top: 130px;
  font-family: "Noto Sans JP", sans-serif;
}
#information .inner {
  max-width: 960px;
}
#information .inner h2 {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  padding-bottom: 35px;
  border-bottom: 1px solid #595757;
  margin-bottom: 55px;
  position: relative;
}
#information .inner h2::after {
  content: "";
  display: block;
  width: 180px;
  aspect-ratio: 180/151;
  background: url(../img/information_panda.png) no-repeat center/contain;
  position: absolute;
  bottom: -30px;
  right: 24px;
}
#information .inner .list .block .main_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 55px;
}
#information .inner .list .block .main_desc .img {
  width: 244px;
}
#information .inner .list .block .main_desc .txt {
  max-width: calc(100% - 420px);
  width: 420px;
}
#information .inner .list .block .main_desc .txt h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
#information .inner .list .block .main_desc .txt .desc {
  font-weight: 500;
  line-height: 2;
}
#information .inner .list .block .main_desc .txt .price {
  margin-top: 30px;
  font-weight: bold;
  font-size: 18px;
}
#information .inner .list .block table {
  width: 100%;
}
#information .inner .list .block table tr {
  position: relative;
}
#information .inner .list .block table tr th {
  background: #231815;
  border: 1px solid #3e3a39;
  padding: 12px 30px;
  text-align: left;
  font-weight: 400;
  width: 200px;
}
#information .inner .list .block table tr td {
  font-weight: 400;
  border: 1px solid #3e3a39;
  padding: 12px 15px;
  width: calc(100% - 200px);
}
#information .inner .list .block table:not(:last-child) {
  margin-bottom: 20px;
}
#information .inner .list .block table.allergy tr th {
  background: #fff;
  color: #000;
  font-weight: bold;
}
#information .inner .list .block .materials {
  margin-top: 50px;
}
#information .inner .list .block .materials h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
#information .inner .list .block .materials .detail {
  border: 1px solid #3e3a39;
  padding: 20px 30px;
  font-weight: 400;
  line-height: 2;
}
#information .inner .list .block .notice {
  margin-top: 15px;
  font-size: 14px;
}
#information .inner .list .block:not(:last-child) {
  margin-bottom: 110px;
}

#shop {
  padding: 140px 0 170px;
  font-family: "Noto Sans JP", sans-serif;
}
#shop .inner h2 {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 30px;
}
#shop .inner .btns {
  display: flex;
  justify-content: space-between;
  gap: 20px 2.1%;
  flex-wrap: wrap;
}
#shop .inner .btns li {
  width: 48.95%;
}
#shop .inner .btns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  background: #fff;
  height: 80px;
  color: #000;
}
#shop .inner .sns {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
#shop .inner .sns li img {
  width: 40px;
}

@media (max-width: 1500px) {
  #new {
    background-size: 100%;
    padding-top: 40px;
  }
}
@media (max-width: 1200px) {
  #flavor .item_block .main_desc .inner {
    padding-left: 0;
    gap: 40px;
  }
  #flavor .item_block .main_desc .inner::before {
    left: 0;
  }
  #flavor .item_block .main_desc .inner::after {
    right: 0;
  }
  #flavor .item_block .main_desc .inner .img {
    width: 275px;
  }
  #flavor .item_block .main_desc .inner .txt {
    max-width: calc(100% - 315px);
  }
  #flavor .item_block .main_desc .inner .txt h2 {
    font-size: 50px;
    margin-bottom: 35px;
  }
  #flavor .item_block .main_desc .inner .txt .catch {
    font-size: 30px;
  }
  #flavor .item_block#item_b .main_desc .inner::before {
    left: 0;
  }
  #flavor .item_block#item_b .main_desc .inner::after {
    right: 0;
  }
}
@media (max-width: 1000px) {
  #mv .inner {
    padding: 20px 20px 0;
  }
  #mv .scroll {
    right: 30px;
    bottom: 30px;
  }
  #new .inner .txt h2 {
    font-size: 70px;
    padding: 20px 35px 20px;
  }
  #new .inner .txt h2::before {
    width: 70px;
    height: 70px;
    left: 40px;
  }
  #new .inner .txt h2::after {
    width: 70px;
    height: 70px;
    right: 40px;
  }
  #new .inner .txt h2 small {
    font-size: 34px;
  }
  #new .inner .txt h2 strong {
    font-size: 100px;
  }
  #feature .inner {
    padding-top: 50px;
  }
  #feature .inner h2 {
    margin-bottom: 30px;
  }
  #feature .inner h2 img {
    width: 260px;
  }
  #feature .inner h2::before {
    width: 135px;
    height: 64px;
    left: 0;
  }
  #feature .inner h2::after {
    width: 105px;
    height: 67px;
    right: 0;
  }
  #feature .inner .row {
    flex-direction: column;
    gap: 20px;
  }
  #feature .inner .row .txt {
    width: 100%;
  }
  #feature .inner .row .txt h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  #feature .inner .row .img {
    width: 100%;
    text-align: right;
    padding-bottom: 0;
  }
  #feature .inner .row .img img {
    width: 50%;
  }
  #feature .inner .row .img::after {
    width: 50%;
    right: 50%;
  }
  #flavor .nav {
    flex-direction: column;
  }
  #flavor .nav::before {
    content: none;
  }
  #flavor .nav .nav_block {
    width: 100%;
  }
  #flavor .item_block .main_desc .inner {
    padding: 40px 0 120px;
    flex-direction: column;
    align-items: center;
  }
  #flavor .item_block .main_desc .inner::before {
    top: 275px;
  }
  #flavor .item_block .main_desc .inner .txt {
    max-width: 100%;
  }
  #flavor .item_block#item_b .main_desc .inner::before {
    top: 275px;
  }
}
@media (max-width: 860px) {
  #flavor .item_block {
    padding-bottom: 60px;
  }
  #flavor .item_block .howto .inner h3 {
    font-size: 28px;
  }
  #information {
    padding-top: 60px;
  }
  #information .inner .list .block .main_desc {
    gap: 50px;
  }
  #information .inner .list .block .main_desc .img {
    width: 260px;
  }
  #information .inner .list .block .main_desc .txt {
    max-width: calc(100% - 310px);
  }
  #information .inner .list .block .materials .detail {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #mv {
    aspect-ratio: 750/666;
  }
  #mv > img,
  #mv > video {
    aspect-ratio: 750/666;
  }
  #mv .inner {
    padding: 5px;
  }
  #mv .inner h1 img {
    width: 80px;
  }
  #mv .inner .mv_item {
    width: 42vw;
    bottom: 2.5vw;
    left: 29vw;
  }
  #mv .mv_slider::before {
    height: 2vw;
    background-size: 200%;
  }
  #mv .mv_slider p {
    margin-top: 10px;
    font-size: 10vw;
  }
  #mv .scroll {
    display: none;
  }
  #feature {
    padding: 40px 0;
  }
  #feature .inner {
    padding: 20px 5%;
  }
  #feature .inner h2 {
    margin-bottom: 20px;
  }
  #feature .inner h2 img {
    width: 130px;
  }
  #feature .inner h2::before {
    width: 55px;
    height: 26px;
  }
  #feature .inner h2::after {
    width: 45px;
    height: 29px;
  }
  #feature .inner h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #feature .inner .wrap .desc {
    font-size: 14px;
    line-height: 1.8;
  }
  #feature .inner .wrap .img {
    margin: 15px 0;
  }
  #flavor .nav .nav_block {
    padding: 30px 5%;
    min-height: unset;
  }
  #flavor .nav .nav_block .img_area .img img {
    width: 60%;
  }
  #flavor .nav .nav_block .img_area .detail {
    bottom: -30px;
    left: calc(50% + 70px);
  }
  #flavor .nav .nav_block .logo {
    margin-top: 20px;
  }
  #flavor .nav .nav_block .logo img {
    width: 220px;
  }
  #flavor .nav .nav_block .btn {
    margin-top: 20px;
  }
  #flavor .nav .nav_block .btn a {
    max-width: 90%;
    font-size: 22px;
    height: 55px;
  }
  #flavor .nav .nav_block.item_a::before, #flavor .nav .nav_block.item_b::before {
    top: 30px;
    width: 90%;
  }
  #flavor .item_block .main_desc .inner {
    padding: 20px 0;
    gap: 10px;
  }
  #flavor .item_block .main_desc .inner .img {
    width: 160px;
  }
  #flavor .item_block .main_desc .inner .txt h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #flavor .item_block .main_desc .inner .txt .row .row_txt .catch {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #flavor .item_block .main_desc .inner .txt .row .row_txt .desc {
    font-size: 14px;
    text-align: left;
  }
  #flavor .item_block .main_desc .inner .txt .row .row_img img {
    width: 130px;
  }
  #flavor .item_block .howto .inner {
    padding-top: 30px;
  }
  #flavor .item_block .howto .inner h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  #flavor .item_block .howto .inner .list .block {
    flex-direction: column;
    gap: 15px;
  }
  #flavor .item_block .howto .inner .list .block .img {
    width: 100%;
  }
  #flavor .item_block .howto .inner .list .block .txt {
    width: 100%;
  }
  #flavor .item_block .howto .inner .list .block .txt .num {
    width: 90px;
    height: 73px;
    font-size: 40px;
    margin-bottom: 10px;
  }
  #flavor .item_block .howto .inner .list .block .txt .detail {
    font-size: 14px;
    line-height: 1.7;
  }
  #flavor .item_block .howto .inner .list .block:not(:last-child) {
    margin-bottom: 30px;
  }
  #flavor .item_block .howto .inner .list .block:nth-child(2n) .img {
    order: 2;
  }
  #flavor .item_block .howto .inner .list .block:nth-child(2n) .txt {
    order: 1;
  }
  #flavor .item_block .howto .inner .notice {
    margin-top: 40px;
    font-size: 14px;
  }
  #flavor .item_block#item_a .main_desc .inner::before {
    width: 92px;
    top: 150px;
  }
  #flavor .item_block#item_a .main_desc .inner::after {
    width: 80px;
  }
  #flavor .item_block#item_b .main_desc .inner::before {
    width: 79px;
    top: 125px;
  }
  #flavor .item_block#item_b .main_desc .inner::after {
    width: 92px;
    top: 40px;
  }
  #flavor .item_block#item_b .howto .inner::before {
    width: 82px;
    height: 46px;
    left: -10px;
  }
  #flavor .item_block#item_b .howto .inner::after {
    width: 77px;
    height: 48px;
    right: -10px;
  }
  #information {
    padding-top: 50px;
  }
  #information .inner h2 {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 30px;
  }
  #information .inner h2::after {
    width: 100px;
    right: 5px;
    bottom: -16px;
  }
  #information .inner .list .block .main_desc {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }
  #information .inner .list .block .main_desc .img {
    width: 200px;
  }
  #information .inner .list .block .main_desc .txt {
    width: 100%;
    max-width: 100%;
  }
  #information .inner .list .block .main_desc .txt h3 {
    font-size: 20px;
    text-align: center;
  }
  #information .inner .list .block .main_desc .txt .desc {
    font-size: 14px;
    line-height: 1.7;
  }
  #information .inner .list .block .main_desc .txt .price {
    margin-top: 10px;
    font-size: 14px;
    text-align: right;
  }
  #information .inner .list .block table tr th {
    padding: 5px 10px;
    font-size: 12px;
    width: 125px;
  }
  #information .inner .list .block table tr td {
    padding: 5px 10px;
    font-size: 12px;
    width: calc(100% - 125px);
  }
  #information .inner .list .block table:not(:last-child) {
    margin-bottom: 10px;
  }
  #information .inner .list .block table.allergy {
    margin-top: 10px;
  }
  #information .inner .list .block .materials {
    margin-top: 30px;
  }
  #information .inner .list .block .materials h3 {
    font-size: 18px;
  }
  #information .inner .list .block .materials .detail {
    padding: 15px;
    font-size: 12px;
  }
  #information .inner .list .block .notice {
    font-size: 13px;
  }
  #information .inner .list .block:not(:last-child) {
    margin-bottom: 40px;
  }
  #shop {
    padding: 40px 0;
  }
  #shop .inner h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #shop .inner .btns {
    gap: 10px 2.1%;
  }
  #shop .inner .btns li a {
    font-size: 18px;
    height: 55px;
  }
  #shop .inner .sns {
    gap: 25px;
    margin-top: 40px;
  }
}
@keyframes fuwa01_ani {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */