@charset "UTF-8";

#product > div:nth-last-child(1) {
  margin-bottom: 0;
}

.box-style-02 > .ttl {
  font-size: 100%;
  text-align: unset;
  color: unset;
  padding: 0px 2% 5px;
  background-color: unset;
  border-bottom: 1px solid var(--main-color);
}

.box-style-01 > .inner > .txt-blc > .box {
  margin-bottom: 10px
} 

.tbl-style-01 {
  font-size: 90%;
}

.tbl-style-01 > tbody > tr > th,
.tbl-style-01 > tbody > tr > td {
  padding: 5px;
}

#product .box .inner > .img-blc > .main {
  position: relative;
  margin-bottom: 8px;
}

#product .box .inner > .img-blc > .main > img {
  position: relative;
  transition: 300ms all ease-in-out;
}

#product .box .inner > .img-blc > .main > img.hide {
  display: none;
  opacity: 0;
  visibility: hidden;
}

#product .box .inner > .img-blc > .main > img.show {
  animation-name: example;
  animation-duration: 500ms;
  display: block;
  visibility: visible;
}

@keyframes example {
  from {opacity: 0;}
  to {opacity: 1;}
}

#product .box .inner > .img-blc > .list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#product .box .inner > .img-blc > .list.wait::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#product .box .inner > .img-blc > .list > li {
  width: calc((100% / 3) - ((8px * 2) / 3));
  margin-right: 8px;
  margin-bottom: 5px;
  transition: 300ms all ease-in-out;
}

#product .box .inner > .img-blc > .list > li:hover {
  opacity: .7;
}

#product .box .inner > .img-blc > .list > li:nth-child(3n+3) {
  margin-right: 0;
}