@charset "UTF-8";

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --main-gray: #8C9091;
}

html {
  height: 100%;
  font-family: "Helvetica Neue", Arial, 'Noto Sans Javanese', Meiryo, sans-serif;
  color: #000;
  font-size: 16px;
  text-transform: none;
  line-height: 1.4;
  word-break: break-word;
}

body {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  background: var(--main-gray);
}

@font-face {
  font-family: 'Noto Sans Javanese';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/noto-sans-javanese-v15-javanese-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/noto-sans-javanese-v15-javanese-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: 'Noto Sans Javanese';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/noto-sans-javanese-v15-javanese-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/noto-sans-javanese-v15-javanese-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/zen-kaku-gothic-antique-v11-latin_japanese-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/zen-kaku-gothic-antique-v11-latin_japanese-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

img {
  max-width: 100%;
  border: 0px;
  margin: 0px;
  vertical-align: middle;
}

p {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: #000;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  margin: 0px;
  padding: 0px;
}

hr {
  box-sizing: content-box;
  height: 0px; }

/*Loader
--------------------------------------------------*/

#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: var(--main-gray);
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/*Header
--------------------------------------------------*/

.hd-wrapper {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  left: 0;
  z-index: 1000;
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
}

.hd-active {
  opacity: 1;
  visibility: visible;
}

header {
  width: 100%;
  position: relative;
  z-index: 99;
  top: 0;
}

nav {
  position: relative;
  height: 70px;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; 
}

nav a:hover img {
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all .3s;
}

header > nav {
  width: 100%;
  height: 50px;
  padding-top: 0px;
  margin: 0px auto;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  font-size: 16px;
  border: transparent;
  background: #000;
}

.navi_logo > img {
  display: block; 
}

img.logo {
  width: 15%;
  max-width: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}                  

.navi_cart{
  position: absolute;
  right: 0px;
}

.navi_cart img{
  height: 50px;
}

@media screen and (min-width: 768px) {
  header > nav {
    height: 70px;
  }

  img.logo {
    width: 23%;
    max-width: 115px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .navi_cart {
    position: absolute;
    top: 0px;
  }

  .navi_cart img{
    height:70px;
  }
}

header h1 {
  visibility: hidden;
}

/*Mainimage
--------------------------------------------------*/

.main-image {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  position: relative;
  z-index: 100;
}

.main-image img {
  width: 100%;
}

.main-image .main-image_title img {
  position: absolute;
  max-width: 540px;
  left: 52%;
}

.main-image .main-image_title img.main-image_title_logo {
  width: 40%;
  top: 50%;
}

.main-image .main-image_title img.main-image_title_copy {
  width: 50%;
  top: 75%;
  left: 42%;
}

@media screen and (min-width: 980px) {  
  .main-image .main-image_title img {
    left: 6.5%;
  }
  
  .main-image .main-image_title img.main-image_title_logo {
    width: 25%;
    top: 40%;
  }
  
  .main-image .main-image_title img.main-image_title_copy {
    width: 25%;
    top: 70%;
    left: 6.5%;
  }
}

/*Wrapper
--------------------------------------------------*/

.wrapper {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
}

/*Item
--------------------------------------------------*/

.item {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
  color: #FFF;
  text-align: center;
}

.item h2 img {
  width: 65%;
  max-width: 400px;
  margin-top: 50px;
}

.item .outline p {
  display: block;
  margin: 20px auto;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.item .outline img {
  width: 95%;
  margin-bottom: 20px;
}

ul.item_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 95%;
  margin: 0px auto;
}

ul.item_list li {
  width: 90%;
  text-align: center;
}

ul.item_list li img {
  width: 100%;
}

ul.item_list li p {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.howto-use {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
  padding-top: 65px;
}

.howto-use h3 {
  text-align: center;
}

.howto-use h3 img {
  width: 90%;
}

.howto-use_solid-fuel {
  width: 90%;
  margin: 0px auto;
  padding: 10px 10px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #FFF;
}

.howto-use_solid-fuel span {
  font-size: 10px;
}

ul.howto-use_list {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center center;
  place-items: center center;
  gap: 20px;
  width: 80%;
  margin: 0px auto;
}

@media screen and (min-width: 768px) {
  .item .outline p {
    font-size: 30px;
    margin: 30px auto;
  }
  
  .item .outline img {
    width: 80%;
  }
  
  .howto-use {
    padding-top: 85px;
  }

  .howto-use h3 img {
    width: 70%;
  }

  .howto-use_solid-fuel {
    width: 70%;
    font-size: 18px;
  }

  ul.howto-use_list {
    width: 70%;
  }
}

@media screen and (min-width: 980px) {
  .item .outline p {
    font-size: 40px;
    line-height: 1.6;
  }
  
  .item .outline img {
    width: 60%;
    margin-bottom: 20px;
  }
  
  ul.item_list {
    flex-direction: row;
    width: 95%;
  }

  ul.item_list li {
    width: 30%;
  }

  ul.item_list li p {
    font-size: 16px;
  }

  .howto-use h3 img {
    width: 50%;
  }

  .howto-use_solid-fuel {
    width: 30%;
    font-size: 18px;
  }
  
  .howto-use_solid-fuel span {
    font-size: 13px;
  }

  ul.howto-use_list {
    grid-template-columns: 1fr 1fr;
    width: 80%;
  }
}

/*Section-title
--------------------------------------------------*/

.sec-title img {
  display: block;
  width: 30%;
  max-width: 200px;
  margin: 0px auto 10px auto;
}


@media screen and (min-width: 980px) {
  .sec-title img {
    width: 50%;
  }
}

/*Lineup
--------------------------------------------------*/

.lineup {
  margin: 0px auto;
  padding-top: 65px;
}

ul.lineup_list {
  display: flex;
  width: 95%;
  margin: 0px auto;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

ul.lineup_list li {
  width: 180px;
  text-align: center;
}

ul.lineup_list li img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 150px;
}

ul.lineup_list li h4 {
  margin: 20px auto 10px;
  font-size: 14px;
  text-align: center;
}

.arrow-bottom {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .lineup {
    padding-top: 85px;
  }

  ul.lineup_list li {
    width: 280px;
  }

  ul.lineup_list li img {
    max-height: 200px;
  }
}

@media screen and (min-width: 980px) {

  ul.lineup_list li h4 {
    font-size: 18px;
  }
}

/*Spec
--------------------------------------------------*/

.spec {
  padding-top: 65px;
}

.spec h3 {
  width: 90%;
  margin: 0px auto;
  font-size: 18px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  text-align: center;
}

.spec figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin: 5px auto 10px;
}	

.spec h4 {
  width: 90%;
  margin: 0px auto 5px;
  color: #FFF;
  font-size: 16px;
  font-family: 'Noto Sans Javanese', sans-serif;
  font-weight: 700;
  text-align: center;
}

ul.spec_detail {
  display: grid;
  grid-template-columns: 30% 1fr;
  justify-content: space-between;
  justify-items: start;
  gap: 3px 20px;
  width: 90%;
  margin: 0px auto 20px;
  font-size: 13px;
  color: #FFF;
}

ul.spec_detail li:nth-child(2n+1) {
  width: 100%;
  text-align: right;
}

ul.spec_detail li:nth-child(2n) {
  width: 100%;
  text-align: left;
}

span.icon-l {
  margin-right: 5px;
}

.mgc_shopping_cart_2_line::before {
  color: #FFF;
}

.mgc_pdf_fill::before {
  color: #FFF;
}

ul.btn_a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 0px auto;
}

ul.btn_a li a {
  display: block;
  position: relative;
  width: 380px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFF;
  font-size: 16px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: #000;
  border: none;
}

ul.btn_a li a::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn_a a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all .4s;
}

@media screen and (min-width: 360px) {
  ul.btn_a li a {
    width: 300px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .spec {
    padding-top: 85px;
  }

  .spec h3 {
    font-size: 22px;
  }

  .spec figure img {
    max-height: 300px;
  }	

  .spec h4 {
    font-size: 18px;
  }

  ul.spec_detail {
    width: 60%;
  }

  ul.btn_a li a {
    width: 600px;
  }
}

@media screen and (min-width: 980px) {
  .spec h3 {
    font-size: 24px;
  }
  
  .spec h4 {
    font-size: 20px;
  }

  ul.spec_detail {
    width: 40%;
    font-size: 14px;
  }

  ul.btn_a {
    flex-direction: row;
  }

  ul.btn_a li a {
    width: 400px;
  }
}

@media screen and (min-width: 1600px) {
  ul.spec_detail {
    width: 30%;
  }
}

/*Recipe
--------------------------------------------------*/

.l-inner {
  position: relative;
  box-sizing: content-box;
  width: 80%;
  max-width: 1200px;
  margin: 0px auto;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media {
  position: relative;
  overflow: hidden;
}
.slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}

.swiper-button-prev::after, .swiper-button-next::after {
  width: 1rem;
  height: 1rem;
  content: "";
  border: solid #FFF;
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.recipe {
  overflow: hidden;
  padding-top: 65px;
}

.recipe .swiper {
  overflow: visible;
}

.recipe .swiper-button-prev, .recipe .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.recipe .swiper-button-prev::before, .recipe .swiper-button-next::before {
  background: rgba(0, 0, 0, 0.3);
}

.recipe .swiper-button-prev::after, .recipe .swiper-button-next::after {
  border-color: #fff;
}

.recipe .swiper-button-prev {
  right: calc(100% - 2.2rem);
}

.recipe .swiper-button-next {
  left: calc(100% - 2.2rem);
}

.recipe .swiper-b:not(.swiper-initialized) {
  padding: 0px;
}

.recipe .swiper-b:not(.swiper-initialized) .swiper-button-prev,
.recipe .swiper-b:not(.swiper-initialized) .swiper-button-next {
  display: none;
}

.recipe .swiper-b:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.recipe .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.recipe .slide {
  overflow: hidden;
  border-radius: 12px;
  background: #FFF;
}

.recipe .slide-media {
  padding-top: 62.5%;
}

.recipe .slide-media img {
  height: calc(100% + 16px);
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}

.recipe .slide-content {
  padding: 20px;
}

h5.slide-title {
  margin: 0px auto;
  padding-bottom: 10px;
  font-size: 16px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  text-align: center;
}

ul.time-icon {
  display: flex;
  width: 50%;
  max-width: 300px;
  margin: 0px auto;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

ul.time-icon img {
  width: 100%;
}

ul.recipe_point {
  width: 90%;
  margin: 10px auto;
}

ul.recipe_point li {
  margin-bottom: 7px;
  padding-top: 7px;
  padding-left: 7px;
  padding-bottom: 7px;
  font-size: 13px;
  border-left: 5px solid #CED1D3;
}

ul.recipe_point li:first-child {
  border-left: none;
}

ul.recipe_point li:first-child img {
  width: 25%;
}

ul.ingredient {
  width: 90%;
  margin: 0px auto;
}

ul.ingredient li {
  padding-bottom: 5px;
  font-size: 13px;
}

ul.ingredient li:first-child {
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px dashed #000;
}

ul.ingredient li:first-child span {
  margin-left: 10px;
  color: #777;
  font-size: 13px;
  font-weight: bold;
}

ul.ingredient li:nth-child(2) {
  padding-top: 5px;
}

@media only screen and (min-width: 768px) {
  .recipe {
    padding-top: 85px;
  }

  h5.slide-title {
    font-size: 22px;
  }
  
  ul.time-icon {
    width: 40%;
  }
  
  ul.recipe_point li {
    padding-bottom: 8px;
  }
  
  ul.recipe_point li:first-child img {
    width: 20%;
  }
  
  ul.ingredient li {
    padding-bottom: 8px;
  }
}

@media only screen and (min-width: 980px) {
  .recipe .swiper-b:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }

  .recipe .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  h5.slide-title {
    font-size: 24px;
  }
  
  ul.recipe_point li {
    padding-bottom: 8px;
    font-size: 16px;
  }

  ul.recipe_point li:first-child img {
    width: 20%;
  }
  
  ul.ingredient li {
    padding-bottom: 8px;
    font-size: 16px;

  }
  
  ul.ingredient li:first-child {
    font-size: 20px;
  }
  
  ul.ingredient li:first-child span {
    font-size: 16px;
  }
}

/*Pagetop
--------------------------------------------------*/

#page-top {
  position: fixed;
  bottom: 28px;
  right: 10px;
  z-index: 9999;
}

#page-top img {
  width: 50px;
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  opacity: 0.85;
}

#page-top img:hover {
filter: alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}

@media screen and (min-width: 980px) {
  #page-top img {
    width: 70px;
  }  
}

/*Footer
--------------------------------------------------*/

footer {
  padding: 20px 0px 30px 0px;
  text-align: center;
}

p.copyright {
  color: #FFF;
  font-size: 13px;
}

.btn_do {
  width: 50%;
  max-width: 230px; 
  margin: 20px auto;
  text-align: center;
  border: 1px solid #FFF;
}

@media screen and (min-width: 980px) {
  p.copyright {
    font-size: 14px;
  }
}