@charset "UTF-8";
/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Color */
/* Width */
/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #000000;
  font-size: 1.6em;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

button:hover {
  transition: all ease .5s;
  opacity: 0.8;
}

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

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

.show-pc {
  display: block;
}
@media (max-width: 750px) {
  .show-pc {
    display: none;
  }
}

.show-sp {
  display: none;
}
@media (max-width: 750px) {
  .show-sp {
    display: block;
  }
}

footer {
  background: #000000;
  padding: 30px 0;
  text-align: center;
}
footer p {
  font-size: 1.05rem;
  color: #FFFFFF;
}

.box_inner {
  max-width: 828px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 750px) {
  .box_inner {
    width: 100%;
    max-width: unset;
    padding: 0 5.625vw;
  }
}
.box_inner p {
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 750px) {
  .box_inner p {
    font-size: 3.125vw;
  }
}

.btn {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #0FCEB9;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease .3s;
  position: relative;
}
.btn:hover {
  opacity: 0.6;
}
.btn::after {
  content: '';
  display: block;
  width: 26px;
  height: 19px;
  background: url("/assets/imgs/btn_arrow.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media (max-width: 750px) {
  .btn::after {
    width: 6.05vw;
    height: 4.45vw;
    right: 4.2vw;
  }
}

#wrap {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.fmzzz .mv {
  background: #000000;
}
.fmzzz .mv .box_inner {
  padding-top: 32px;
}
@media (max-width: 750px) {
  .fmzzz .mv .box_inner {
    padding-top: 3.125vw;
  }
}
.fmzzz .mv .box_inner p {
  color: #FFFFFF;
  padding: 0.4em 0 0.5em;
}
.fmzzz .mv .subttl {
  background-color: #FFFFFF;
  padding: 18px;
}
@media (max-width: 750px) {
  .fmzzz .mv .subttl {
    padding: 2.5vw 0;
  }
}
.fmzzz .mv .subttl h2 {
  width: 582px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .fmzzz .mv .subttl h2 {
    width: 65vw;
  }
}
.fmzzz .products {
  padding: 90px 0 80px;
  background: url("/assets/imgs/bg_products_pc.webp") no-repeat 0 0 #0FCEB9;
  background-size: cover;
}
@media (max-width: 750px) {
  .fmzzz .products {
    padding: 12.5vw 0;
    background-image: url("/assets/imgs/bg_products_sp.webp");
  }
}
.fmzzz .products .item + .item {
  margin-top: 80px;
}
@media (max-width: 750px) {
  .fmzzz .products .item + .item {
    margin-top: 12.5vw;
  }
}
.fmzzz .products .item h2 {
  display: block;
  margin: 0 auto;
  position: relative;
}
.fmzzz .products .item h2::after {
  content: '';
  display: block;
  width: 115px;
  height: 106px;
  background: url("/assets/imgs/item01_ttl_bbl.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: -135px;
}
@media (max-width: 750px) {
  .fmzzz .products .item h2::after {
    width: 18.125vw;
    height: 16.66vw;
    bottom: 6.6vw;
    right: -22.29vw;
  }
}
.fmzzz .item p.remark {
  margin-top: 1em;
}
.fmzzz .item p.remark + .itembox {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .fmzzz .item p.remark + .itembox {
    margin-top: 4.5vw;
  }
}
.fmzzz .item .itembox {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 40px;
  padding: 18px;
  background: #FFFFFF;
  border: 14px solid #000000;
  border-radius: 8px;
}
@media (max-width: 750px) {
  .fmzzz .item .itembox {
    margin-top: 8.4vw;
    padding: 3.54vw;
    border-width: 10px;
    border-radius: 6px;
  }
}
.fmzzz .item .itembox::before {
  content: '';
  display: block;
  width: 50px;
  height: 177px;
  background: url("/assets/imgs/itembox_bg01.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  top: 18px;
  right: 18px;
}
@media (max-width: 750px) {
  .fmzzz .item .itembox::before {
    width: 6.6875vw;
    height: 23.875vw;
    top: 3.54vw;
    right: 3.54vw;
  }
}
.fmzzz .item .itembox .img {
  margin: 0 auto;
}
.fmzzz .item .itembox .txtbox {
  position: relative;
  padding-top: 1.4em;
}
.fmzzz .item .itembox .txtbox::before {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  background: #000000;
  border-radius: 4px;
  position: absolute;
  top: 0;
}
.fmzzz .item .itembox .txtbox::after {
  content: '';
  display: block;
  width: 124px;
  height: 49px;
  background: url("/assets/imgs/itembox_bg02.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  top: -68px;
  left: 0;
}
@media (max-width: 750px) {
  .fmzzz .item .itembox .txtbox::after {
    width: 16.79vw;
    height: 6.696vw;
    top: -10vw;
  }
}
.fmzzz .products .item01 h2 {
  width: 457px;
}
@media (max-width: 750px) {
  .fmzzz .products .item01 h2 {
    width: 37.5vw;
  }
}
.fmzzz .products .item01 .itembox .img {
  width: 539px;
}
@media (max-width: 750px) {
  .fmzzz .products .item01 .itembox .img {
    width: 73.958vw;
  }
}
.fmzzz .products .item02 h2 {
  width: 404px;
}
@media (max-width: 750px) {
  .fmzzz .products .item02 h2 {
    width: 66.25vw;
  }
}
.fmzzz .products .item02 h2::after {
  background: url("/assets/imgs/item02_ttl_bbl.webp") no-repeat 50% 50%;
  background-size: cover;
  bottom: 17px;
}
@media (max-width: 750px) {
  .fmzzz .products .item02 h2::after {
    bottom: 9.375vw;
    right: -11.45vw;
  }
}
.fmzzz .products .item02 .itembox .img {
  width: 558px;
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  .fmzzz .products .item02 .itembox .img {
    width: 64.79vw;
    margin: 9.5vw auto 10.5vw;
  }
}
.fmzzz .products .item03 h2 {
  width: 385px;
}
@media (max-width: 750px) {
  .fmzzz .products .item03 h2 {
    width: 63.33vw;
  }
}
.fmzzz .products .item03 h2::after {
  width: 123px;
  height: 113px;
  background: url("/assets/imgs/item03_ttl_bbl_pc.webp") no-repeat 50% 50%;
  background-size: cover;
  bottom: 4px;
  right: -142px;
}
@media (max-width: 750px) {
  .fmzzz .products .item03 h2::after {
    width: 20.79375vw;
    height: 18.1vw;
    background: url("/assets/imgs/item03_ttl_bbl_sp.webp") no-repeat 50% 50%;
    background-size: cover;
    bottom: -9.16vw;
    right: -10.625vw;
  }
}
.fmzzz .products .item03 .itembox .img {
  width: 412px;
  margin-bottom: 2em;
}
@media (max-width: 750px) {
  .fmzzz .products .item03 .itembox .img {
    width: 61.25vw;
    margin: 4vw auto 10.5vw;
  }
}
.fmzzz .shop {
  background: #000000;
  padding: 70px 0 50px;
}
@media (max-width: 750px) {
  .fmzzz .shop {
    padding: 30.625vw 0 11.25vw;
  }
}
.fmzzz .shop .box_inner::after {
  content: '';
  display: block;
  width: 129px;
  height: 165px;
  background: url("/assets/imgs/shop_img.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  top: -4px;
  right: 45px;
}
@media (max-width: 750px) {
  .fmzzz .shop .box_inner::after {
    width: 15.75vw;
    height: 20.15625vw;
    top: -25.6vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fmzzz .shop.open .box_inner::after {
  top: -40px;
}
@media (max-width: 750px) {
  .fmzzz .shop.open .box_inner::after {
    top: -25.6vw;
  }
}
.fmzzz .shop .btn {
  width: 360px;
  height: 62px;
}
@media (max-width: 750px) {
  .fmzzz .shop .btn {
    width: 83.75vw;
    height: 14.375vw;
  }
}
.fmzzz .shop .btn img {
  width: 185px;
}
@media (max-width: 750px) {
  .fmzzz .shop .btn img {
    width: 43.125vw;
  }
}
.fmzzz .shop .btn.soon {
  display: block;
  height: 132px;
  text-align: center;
  cursor: default;
  padding: 20px 0;
}
@media (max-width: 750px) {
  .fmzzz .shop .btn.soon {
    width: 83.75vw;
    height: 30.625vw;
    padding: 4.375vw 0;
  }
}
.fmzzz .shop .btn.soon:hover {
  opacity: 1;
}
.fmzzz .shop .btn.soon::after {
  display: none;
}
.fmzzz .shop .btn.soon img {
  width: 200px;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  .fmzzz .shop .btn.soon img {
    width: 47.08vw;
  }
}
.fmzzz .shop .remark {
  color: #FFFFFF;
  margin-top: 1.5em;
}
.fmzzz .limited {
  padding: 95px 0 80px;
  background: url("/assets/imgs/bg_limited_pc.webp") no-repeat 0 0 #C6E411;
  background-size: cover;
}
@media (max-width: 750px) {
  .fmzzz .limited {
    padding: 16.6vw 0 12.5vw;
    background-image: url("/assets/imgs/bg_limited_sp.webp");
  }
}
.fmzzz .limited h2 {
  display: block;
  margin: 0 auto;
  width: 596px;
}
@media (max-width: 750px) {
  .fmzzz .limited h2 {
    width: 83.75vw;
  }
}
.fmzzz .limited .desc {
  margin-top: 60px;
  padding: 50px 0 60px;
  position: relative;
}
@media (max-width: 750px) {
  .fmzzz .limited .desc {
    margin-top: 11.875vw;
    padding: 11.45vw 0 12.5vw;
  }
}
.fmzzz .limited .desc::before {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  background: #000000;
  border-radius: 4px;
  position: absolute;
  top: 0;
}
.fmzzz .limited .desc::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  background: #000000;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
}
.fmzzz .limited .desc .cap {
  width: 558px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .fmzzz .limited .desc .cap {
    width: 84.625vw;
  }
}
.fmzzz .limited .desc .txt {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .fmzzz .limited .desc .txt {
    margin-top: 8.75vw;
  }
}
.fmzzz .limited .desc .limited_shop {
  width: 482px;
  margin: 45px auto 0;
}
@media (max-width: 750px) {
  .fmzzz .limited .desc .limited_shop {
    width: 77.08vw;
    margin-top: 10vw;
  }
}
.fmzzz .limited .desc .limited_shop dd {
  background: #FFFFFF;
  padding: 20px 1em;
}
@media (max-width: 750px) {
  .fmzzz .limited .desc .limited_shop dd {
    padding: 4vw 1em;
  }
}
.fmzzz .limited .item {
  margin-top: 70px;
}
@media (max-width: 750px) {
  .fmzzz .limited .item {
    margin-top: 12.5vw;
  }
}
.fmzzz .limited .item h2 {
  position: relative;
}
.fmzzz .limited .item h2::after {
  content: '';
  display: block;
  width: 115px;
  height: 105px;
  background: url("/assets/imgs/limited_item_ttl_bbl.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  bottom: 16px;
  right: -53px;
}
@media (max-width: 750px) {
  .fmzzz .limited .item h2::after {
    width: 18.125vw;
    height: 16.66vw;
    bottom: 4.6vw;
    right: -1.5vw;
  }
}
.fmzzz .limited .item .itembox .img {
  width: 535px;
  margin: 40px auto 80px;
}
@media (max-width: 750px) {
  .fmzzz .limited .item .itembox .img {
    width: 58.75vw;
    margin: 4.5vw auto 12.5vw;
  }
}
.fmzzz .campaign {
  background: #000000;
  padding: 70px 0 35px;
}
@media (max-width: 750px) {
  .fmzzz .campaign {
    padding: 30.625vw 0 2vw;
  }
}
.fmzzz .campaign .box_inner::after {
  content: '';
  display: block;
  width: 120px;
  height: 162px;
  background: url("/assets/imgs/campaign_img.webp") no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  top: -34px;
  left: 18px;
}
@media (max-width: 750px) {
  .fmzzz .campaign .box_inner::after {
    width: 14.9vw;
    height: 20.1375vw;
    top: -25vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.fmzzz .campaign .btn {
  width: 440px;
  height: 96px;
}
@media (max-width: 750px) {
  .fmzzz .campaign .btn {
    width: 83.75vw;
    height: 18.33vw;
  }
}
.fmzzz .campaign .btn img {
  width: 293px;
}
@media (max-width: 750px) {
  .fmzzz .campaign .btn img {
    width: 55.83vw;
  }
}
.fmzzz .campaign .remark {
  color: #FFFFFF;
  margin-top: 70px;
}
@media (max-width: 750px) {
  .fmzzz .campaign .remark {
    margin-top: 14vw;
  }
}
.fmzzz .campaign .remark li {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 750px) {
  .fmzzz .campaign .remark li {
    font-size: 3.125vw;
    text-align: left;
    display: flex;
  }
}
.fmzzz .campaign .remark li::before {
  content: '※';
}

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