@charset "UTF-8";
.only_pc {
  display: block;
}

.only_sp {
  display: none;
}

/*スマホ*/
@media screen and (max-width: 896px) {
  .only_pc {
    display: none;
  }

  .only_sp {
    display: block;
  }
}
body {
  width: 100%;
}

.wrapper {
  background: #fff;
}

/*
    .area-wrapper
=========================================*/
.area-wrapper {
  line-height: 1.8;
  background-color: #000;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
.area-wrapper a {
  color: #000;
}
.area-wrapper a:hover {
  opacity: 0.7 !important;
  transition: all 0.6s ease;
}
.area-wrapper .mainvisual img {
  width: 100%;
}
.area-wrapper .header-text {
  line-height: 2;
  font-size: 16px;
  text-align: center;
  margin: 100px auto;
  color: #000;
  font-weight: 500;
}
.area-wrapper .bodyWrap {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .area-wrapper {
    font-size: 14px;
  }
  .area-wrapper .header-text {
    font-size: 12px;
    text-align: center;
    width: auto;
    margin: 20px;
  }
}

a:focus, *:focus {
  outline: none;
}

.area-nav ul {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.area-nav ul li {
  width: 150px;
  line-height: 1;
  border-right: 1px solid #000;
  padding: 10px 40px;
}
.area-nav ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 896px) {
  .area-nav ul li {
    width: 140px;
  }
}

/*
    area-body
=========================================*/
.area-body {
  padding: 100px 0;
  color: #000;
  background: #fff;
  margin: 0;
}
.area-body h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}
.area-body section {
  margin: 0 0 150px;
}
.area-body section .section-image {
  width: 1050px;
  margin: 0 auto;
}
.area-body .product-list {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 0;
}
.area-body .product-list li {
  width: 230px;
  margin: 0 10px;
}
.area-body .product-list li .name {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-decoration: underline;
}
.area-body .product-list li .name .pri {
  font-weight: normal;
}
@media screen and (max-width: 896px) {
  .area-body {
    padding: 50px 0;
  }
  .area-body h2 {
    width: auto;
    text-align: center;
    font-size: 16px;
  }
  .area-body section {
    margin: 0 30px 50px;
  }
  .area-body section .section-image {
    width: auto;
    margin: 0 auto;
  }
  .area-body .product-list {
    display: flex;
    display: -webkit-flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0 0;
  }
  .area-body .product-list li {
    width: 48%;
    margin: 0 1% 40px;
  }
}

img {
  max-width: 100%;
}

.inview {
  opacity: 0;
}

.up {
  -webkit-animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
  animation: VisualImage 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both 1 normal;
}

/*VisualImage*/
@-webkit-keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes VisualImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.VisualImage {
  -webkit-animation-name: VisualImage;
  animation-name: VisualImage;
}