@charset "UTF-8";
/* CSS Document */
/***********************************************
***  Pages Common
***********************************************/
.pages-main {
  margin-top: 80px;
  padding-top: 120px;
}
.pages-inner {
  max-width: 1600px;
  width: 98%;
  margin: 0 auto;
}
.pages-heading-default {
  /*
    transform: translateX(-100px);
    opacity: 0;
*/
  transform: translateX(0);
  opacity: 1;
  width: 20%;
  margin-left: 1%;
}
@media only screen and (max-width:1200px) {
  .pages-main {
    padding-top: 80px;
  }
  .pages-heading-default {
    width: 25%;
    margin-left: 1%;
  }
}
@media only screen and (max-width:800px) {
  .pages-heading-default {
    width: 40%;
    margin-left: 1%;
  }
}
@media only screen and (max-width:600px) {
  .pages-main {
    margin-top: 60px;
    padding-top: 40px;
  }
}
.goods-main {
  position: relative;
}
.goods-main:before {
  position: absolute;
  content: "";
  background: url(../img/goods/goods-bg-chara.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  width: 600px;
  height: 900px;
  right: 0;
  top: -30px;
}
.goods-wrapper {
  margin: 0 auto 80px;
}
@media only screen and (max-width:1600px) {
  .goods-main:before {
    width: 40vw;
  }
}
@media only screen and (max-width:800px) {
  .goods-main:before {
    width: 60vw;
    right: -5vw;
  }
}
@media only screen and (max-width:600px) {
  .goods-main:before {
    width: 390px;
    right: -90px;
    top: -10px;
  }
}
@media only screen and (max-width:500px) {
  .goods-main:before {
    width: 80vw;
    right: -70px;
    top: -20px;
  }
}
.modal-fadein-down {
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/***********************************************
***  goods lead
***********************************************/
.goods-lead-wrapper {
  width: 96%;
  display: block;
  margin: 40px auto;
}
.goods-lead-text {
  margin-top: 30px;
  font-size: 26px;
  color: #000;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}
.goods-notice-btn {
  max-width: 420px;
  position: relative;
  transition: 0.2s ease;
}
.goods-notice-btn a {
  position: relative;
  z-index: 2;
}
.goods-notice-btn:before {
  position: absolute;
  content: "";
  background-image: url(../img/goods/goods-trial-btn-bg.png);
  width: 63px;
  height: 100%;
  left: 0;
  bottom: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  animation: scroll-right 1s infinite linear 2s both;
  z-index: 0;
  opacity: 0;
}
.goods-notice-btn:after {
  position: absolute;
  content: "";
  background-image: url(../img/goods/goods-notice-btn-bg.png);
  width: 63px;
  height: 100%;
  left: 0;
  bottom: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  animation: scroll-right 1s infinite linear 0s both;
  z-index: 0;
  opacity: 0;
}
.goods-notice-btn:hover {
  transform: translateX(20px);
}
@keyframes scroll-right {
  from {
    transform: translateX(-30%);
    opacity: 0;
  }
  to {
    transform: translateX(60%);
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .goods-notice-btn {
    max-width: 60%;
    margin-left: -20px;
  }
  .goods-lead-wrapper {
    width: 100%;
    display: block;
    margin: 30px auto 0;
  }
  .goods-lead-text {
    margin-top: 10px;
  }
}
/***********************************************
***  goods メニュー
***********************************************/
.goods-category__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 30px;
}
.goods-category__item {
  position: relative;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  color: #fff;
  border-radius: 40px;
  padding: 8px 0;
  z-index: 10;
  border: 2px solid #e60013;
}
.goods-category__item:hover, .goods-category__item.is-active {
  color: #e60013;
}
.goods-category__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #e60013;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  z-index: -2;
}
.goods-category__item::after {
  background: #fff;
  content: "";
  border-radius: 40px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}
.goods-category__item:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.goods-category__item.is-active::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 1000px) {
  .goods-category__item {
    margin: 0;
  }
}
@media (max-width: 800px) {
  .goods-category__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 500px;
    width: 95%;
    gap: 10px 20px;
    margin: 30px auto 30px;
  }
  .goods-category__item {
    font-size: 12px;
    width: 8em;
    padding: 6px 0;
  }
}
@media (max-width: 500px) {
  .goods-category__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
         max-width: 350px;
    gap: 10px 4px;
    margin: 30px auto 30px;
  }
    
  .goods-category__item {
    font-size: 11px;
    width: 7em;
    padding: 6px 0;
  }
}
/***********************************************
***  goods モーダル
***********************************************/
.js-modal-goods {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: #7d4798 url(../img/top/contents/modal-bg2.png);
  background-size: auto 100%;
  background-position: top left;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-modal-goods.is-active {
  opacity: 1;
  visibility: visible;
}
.js-modal-goods__container {
  position: relative;
  z-index: 2;
  background: rgb(0 0 0 / 71%);
  padding: 40px;
  width: calc(100% - 60px);
  max-width: 800px;
  max-height: 90%;
  overflow-y: auto;
}
.js-modal-goods__container::-webkit-scrollbar {
  width: 2px;
}
.js-modal-goods__container::-webkit-scrollbar-thumb {
  background-color: #ff8786;
}
.js-modal-goods__container::-webkit-scrollbar-track {
  background-color: #c5c5c5;
}
.js-modal-goods__close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #e60013;
  font-size: 80px;
  font-weight: bold;
  cursor: pointer;
}
.js-modal-goods__image-container {
  position: relative;
}
.js-modal-goods__image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: min(100%, 400px);
  text-align: center;
}
.js-modal-goods__text-container {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 540px);
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}
.js-modal-goods__name-1 {
  margin-bottom: 10px;
  font-size: 20px
}
.js-modal-goods__detail {
  font-size: 16px;
  margin-bottom: 10px;
}
.js-modal-goods__category {
  background-color: #fff;
  color: #000;
  display: inline-block;
  border-radius: 40px;
  font-size: 14px;
  padding: 2px 6px;
}
.js-modal-goods__variation {
  margin-bottom: 5px;
  font-size: 20px;
  visibility: hidden;
  height: 0;
}
.js-modal-goods__price {
  font-size: 20px;
  text-align: right;
  margin-top: -1.3em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7d4798;
}
.js-modal-goods__price .small {
  font-size: 0.8em;
  ;
}
.js-modal-goods__limit {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}
.js-modal-goods__box {
  display: inline-block;
  background: #f39800;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 13px;
  color: #ffffff;
}
.js-modal-goods__boxr:not(:last-child) {
  margin-right: 5px;
}
.js-modal-goods__random {
  display: inline-block;
  background: #7d4798;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 13px;
  color: #ffffff;
}
.js-modal-goods__random:not(:last-child) {
  margin-right: 5px;
}
.js-modal-goods__size {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: normal;
  position: relative;
  margin-left: 4em;
}
.js-modal-goods__size:before {
  content: "サイズ：";
  position: absolute;
  left: -4em;
}
.js-modal-goods__material {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: normal;
  position: relative;
  margin-left: 4em;
}
.js-modal-goods__material:before {
  content: "材質　：";
  position: absolute;
  left: -4em;
}
.js-modal-goods__note {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: normal;
}
.js-modal-goods__copy {
  font-size: 10px;
  font-weight: normal;
}
.js-modal-goods__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.js-modal-goods__chara1 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 100%;
  overflow: hidden;
  background: url(../img/goods/uchujin4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  /*    mix-blend-mode: color-burn;*/
}
@media (max-width: 1600px) {
  .js-modal-goods__chara1 {
    /*
    bottom: inherit;
    top: 0;
    background-position: left -100px;
*/
  }
}
@media (max-width: 500px) {
  .js-modal-goods__chara1 {
    width: 100%;
    height: 100%;
    background-position: center 60vh;
  }
}
.js-modal-goods__chara2 {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 0;
  width: 500px;
  height: 800px;
  overflow: hidden;
  opacity: 0;
  /*    mix-blend-mode: color-burn;*/
}
.chara1-blur {
  animation-name: blur1;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  transform: translateY(-100px);
}
.chara2-blur {
  animation-name: blur2;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes blur1 {
  0% {
    opacity: 0;
    filter: blur(40px);
    transform: translateY(-100px);
  }
  50% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(40px);
    transform: translateY(100px);
  }
}
@keyframes blur2 {
  0% {
    opacity: 0;
    filter: blur(40px);
  }
  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    filter: blur(40px);
  }
}
.js-modal-goods__toggle {
  cursor: pointer;
}
.js-modal-goods__prev {
  position: absolute;
  z-index: 10;
  inset: 0 auto 0 20px;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
}
@media (max-width: 800px) {
  .js-modal-goods__container {
    padding: 20px;
    width: calc(100% - 40px);
  }
  .js-modal-goods__close {
    font-size: 50px;
  }
  .js-modal-goods__image {
    width: 80%;
  }
  .js-modal-goods__text-container {
    width: min(100%, 400px);
  }
}
@media (max-width: 600px) {
  .js-modal-goods__name-1 {
    font-size: 18px;
  }
  .js-modal-goods__price {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .js-modal-goods__close {
    font-size: 40px;
  }
}
@media (max-width: 800px) {
  .js-modal-goods__prev {
    width: 15px;
  }
}
.js-modal-goods__next {
  position: absolute;
  z-index: 10;
  inset: 0 20px 0 auto;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  right: 0;
}
@media (max-width: 800px) {
  .js-modal-goods__next {
    width: 15px;
  }
}
/***********************************************
***  goods 一覧
***********************************************/
.goods-list {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.goods-list:not(:last-child) {
  margin-bottom: 40px;
}
.goods-list__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.goods-list__item {
  position: relative;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  padding: 5px;
  background: #000;
}
.goods-list__item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  background: #000;
  border: 1px solid #e60013;
  padding: 20px 15px 15px;
  width: 100%;
  height: 100%;
}
.goods-list__image-container {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  overflow: hidden;
}
.goods-list__image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s;
}
.goods-list__image-container img:hover {
  transform: scale(1.2);
}
.goods-list__info-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.goods-list__text-container {
  position: relative;
  z-index: 1;
}
.goods-list__name-1 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  min-height: 2.4em;
}
.goods-list__name-1 .ib {
  display: inline-block;
}
.goods-list__name-1 .small {
  display: inline-block;
  font-size: 0.8em;
}
.goods-list-price-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.goods-list__category {
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  border-radius: 40px;
  display: inline-block;
  padding: 2px 6px;
}
.goods-list__price {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-align: right;
}
.goods-list__price:not(:last-child) {
  margin-bottom: 10px;
}
.goods-list__price .small {
  font-size: 0.8em;
}
.goods-list__limit {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  display: inline-block;
  margin-right: 6px;
}
.goods-list__note {
  display: none;
}
.goods-list__copy {
  display: none;
}
.goods-list__mark {
  display: inline-block;
  background: #f2e936;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 12px;
  color: #ffffff;
}
.goods-list__mark:not(:last-child) {
  margin-right: 5px;
}
.goods-list__box {
  display: inline-block;
  background: #f39800;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 12px;
  color: #ffffff;
}
.goods-list__box:not(:last-child) {
  margin-right: 5px;
}
.goods-list__random {
  display: inline-block;
  background: #7d4798;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 12px;
  color: #ffffff;
}
.goods-list__random:not(:last-child) {
  margin-right: 5px;
}
.goods-list__select-container {
  display: none;
}
@media (max-width: 1400px) {
  .goods-list__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .goods-list__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .goods-list__list {
    grid-template-columns: 1fr 1fr;
  }
  .goods-list__name-1 {
    margin-bottom: 10px;
  }
  .goods-list__category {
    margin-bottom: 10px;
  }
  .goods-list__price:not(:last-child) {
    margin-bottom: 10px;
  }
  .goods-list__price .small {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .goods-list {
    padding-bottom: 30px;
  }
  .goods-list__list {
    grid-template-columns: 1fr;
  }
  .goods-list__item {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 420px;
  }
  .goods-list__price {
    font-size: 16px;
  }
}
.goods-list__detail {
  display: none;
}
.goods-list__material {
  display: none;
}
.goods-list__size {
  display: none;
}
/***********************************************
***  goods notice
***********************************************/
.goods-notice-section {
  display: block;
  padding-top: 80px;
  margin: -80px auto 0;
  max-width: 1200px;
}
.goods-notice-heading {
  background: #000000;
  color: #fff;
  text-align: center;
  border-radius: 25px 25px 0 0;
  line-height: 1.4;
  padding: 20px;
  letter-spacing: 0.08em;
  font-size: 20px;
  font-weight: 800;
}

.caution-notice-heading {
  background: #000000;
  color: #fff;
  text-align: center;
  border-radius: 25px 25px 0 0;
  line-height: 1.4;
  padding: 20px;
  letter-spacing: 0.08em;
  font-size: 20px;
  font-weight: 800;
}

.goods-notice-lists-wrapper {
  border: 10px solid #000000;
  border-top: 0;
  border-radius: 25px 25px 25px 25px;
  padding: 40px 60px;
  background-color: #fff;
}

.caution-notice-lists-wrapper {
  border: 10px solid #000000;
  border-top: 0;
  border-radius: 25px 25px 25px 25px;
  padding: 40px 60px;
  background-color: #fff;
}

.goods-notice-lists {
  margin-left: 1.5em;
}

.caution-notice-lists {
  margin-left: 1.5em;
}

.goods-notice-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}

.caution-notice-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
.caution-notice-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
}

.goods-notice-list:before {
  position: absolute;
  content: "●";
  left: -1.5em;
  font-size: 10px;
  top: 3px;
  color: #e60013;
}

.caution-notice-list:before {
  position: absolute;
  content: "●";
  left: -1.5em;
  font-size: 10px;
  top: 3px;
  color: #faa21c;
}

@media (max-width: 800px) {
  .goods-notice-section {
    width: 90%;
  }
  .goods-notice-heading {
    padding: 13px;
    font-size: 16px;
  }
  .goods-notice-lists-wrapper {
    border: 8px solid #000000;
    padding: 20px;
  }
  .goods-notice-list {
    font-size: 13px;
  }
}