@charset "UTF-8";

.category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.category a {
  cursor: pointer;
}

.category li {
  position: relative;
  overflow: hidden;
  display:flex;
  justify-content:center;
  border-radius: 40px 0;
  width: 380px;
  height: 420px;
  margin: 0 10px 20px 10px;
  background-color: #191919;
  text-align: center;
}

.category:after {
  content: "";
  display: block;
  width: 400px;
  height: 0;
}

.category li img {
  height: 100%;
  filter: grayscale(100%);
  transition: 0.8s all cubic-bezier(0.19, 1, 0.22, 1);
}

.category li:hover img {
  filter: grayscale(0%);
  /* filter: brightness(120%); */
  /* transform: scale(1.05, 1.05);
  transition: 0.6s all cubic-bezier(0.19, 1, 0.22, 1); */
  transform: scale(1.2, 1.2);
  transition: 3s transform linear, 0.2s filter linear;
}

.category li div {
  position: absolute;
  width: 100%;
  vertical-align: bottom;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.1s all linear;
}

.category li:hover div {
  background-color: rgba(0, 255, 255, 0.8);;
  transition: 0s all linear;
}

.category li div p {
  font-family: 'Exo', sans-serif;
  padding: 10px 10px 4px 10px;
  text-align: left;
}

.category li:hover div p {
  color: #000;
}

.category li div .detail {
  padding: 0 10px 10px 10px;
  font-size: 70%;
  text-align: left;
}

@media screen and (max-width: 840px) {
  .category li img {
    filter: none;
    transition:none;
  }
  .category li:hover img {
    filter: none;
    transition:none;
    transform: none;
  }
}

/* ---------- Detail ---------- */

.content {
  padding: 0 10px;
}

@media screen and (max-width: 600px) {
  .content {
    padding: 0 10px;
  }
}

.content p {
  text-align: left;
  margin: 0 0 40px 0;
}

.content img {
  width: 100%;
}

.content .images {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
}

.content .images p {
  text-align: center;
  margin: 10px auto 0;
}

.content dl {
  display: flex;
  flex-wrap: wrap;
}

.content dl dt {
  font-family: 'Exo', sans-serif;
  text-align: center;
  width: 20%;
  padding: 10px;
  margin: 0 0 4px 0;
  background-color: #191919;
}

.content dl dd {
  font-family: 'Exo', sans-serif;
  text-align: left;
  padding: 10px 0 10px 20px;
  margin: 0 0 4px 0;
  width: 60%;
}

/* ---------- YouTube ---------- */

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 40px 0;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ---------- Video ---------- */

.video-full {
  width: 100%;
}

.video-sp {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.video-sp li {
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  width: 380px;
  margin: 0 15px 20px 15px;
  text-align: center;
}

.video-sp p {
  margin: 10px 0 20px 0;
}

.video-sp p.full {
  width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
}

.video-sp video {
  width: 100%;
}

.video-sp:after {
  content: "";
  display: block;
  width: 400px;
  height: 0;
}


/* ---------- Video ---------- */

.list4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.list4 li {
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  width: 180px;
  margin: 0 5px 10px 5px;
  text-align: center;
}

.list4 p {
  margin: 10px 0 20px 0;
}

.list4 p.full {
  width: 100%;
  text-align: center;
  margin: 10px 0 30px 0;
}