img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.wrap {
  text-align: left;
  margin: 0 auto 3rem;
  max-width: 1200px;
  padding: 10px;
}

.content_head {
  margin: 0 0 10px 0;
  text-align: center;
  position: relative;
}
.content_head strong {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  padding: 7px 15px 5px;
  line-height: 150%;
}

.background-img {
  height: 200px;
  background: url("../img/ladies-banner.jpg") center no-repeat;
  background-size: cover;
  z-index: 1;
}
.background-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  /* Adjust the transparency (last parameter) as needed */
}

.caption {
  margin: 0 0 8px;
}

td.contents_head {
  border-left: 5px double #c40017;
  background-color: #c40017;
  padding: 6px 9px 5px 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}

h1 {
  width: 80%;
  font-size: 2.4rem;
  padding: 10px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 8px #F59A1F;
  line-height: initial;
}

h2 {
  margin: 0 0 10px 0;
  padding: 10px 0 8px 8px;
  color: #ffffff;
  background-color: #F59A1F;
  text-align: center;
}

#comicList .thumb {
  height: 80%;
  position: relative;
}
#comicList .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
}
#comicList .text {
  position: absolute;
  width: 100%;
  padding: 5px;
  bottom: 5px;
  background-color: rgba(255, 255, 255, 0.7019607843);
}
#comicList .text span {
  margin-top: 10px;
}
#comicList .text .title {
  font-weight: bold;
  margin: 0;
}
#comicList .price {
  font-weight: bold;
  font-size: 1.8rem;
  color: #c40017;
  text-align: center;
  margin: 1rem 0;
  line-height: 2rem;
}

.splide__pagination {
  bottom: -0.5rem;
}
.splide__pagination__page.is-active {
  background: #F59A1F;
}

#categoryList {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  gap: 5px;
}
#categoryList a {
  position: relative;
  display: inline-block;
  height: 100%;
}
#categoryList a h3 {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #fff;
  margin: 0;
  text-align: center;
}
#categoryList a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#categoryList a:hover::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
#categoryList a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner a {
  text-decoration: none;
  color: #754A0F;
}
.inner a:hover {
  text-decoration: underline;
  color: #F59A1F;
}

.global_head {
  margin-bottom: -10px;
}

#comicSplide {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  #categoryList {
    grid-template-columns: repeat(4, 1fr);
  }
  #categoryList a h3 {
    font-size: 1rem;
  }
  #comicSplide {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
    width: 95%;
  }
  #comicList .price {
    font-size: 1.5rem;
  }
  #comicSplide {
    margin-bottom: 2rem;
  }
  .splide__pagination {
    bottom: -1rem;
  }
  #categoryList {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=ladies2.css.map */