@charset "utf-8";

.card {
  width: 100%;
  min-width: 200px;
  height: auto;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
  max-width: 216px;
  margin: 0 1em;
}

.card:hover {
  transform: scale(1.1); /* 拡大 */
}
.card__imgframe {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background: url(../images/comic/1.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
}
.card__imgframe2 {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background: url(../images/comic/2.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
}
.card__imgframe3 {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background: url(../images/comic/3.jpg) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
}
.card__imgframe4 {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background: url(../images/comic/4.png) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
}
.card__textbox {
  width: 100%;
  height: auto;
  padding: 20px 18px;
  background: #ffffff;
  box-sizing: border-box;
}
.card__textbox > * + * {
  margin-top: 10px;
}
.card__titletext {
  font-size: 20px;
  font-weight: bold;
  line-height: 125%;
}
.card__overviewtext {
  font-size: 12px;
  line-height: 150%;
}

.card-skin {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
}

.comic a {
  color: #444;
}

.comic a:hover {
  opacity: 0.8;
}

.img-box img {
  width: 100%;
  padding: 1rem;
}
.img-box {
  margin-bottom: 2rem;
}

@media screen and (max-width: 814px) {
  .card {
    width: 80%;
    margin: 1rem auto;
    max-width: initial;
    margin: 1em auto;
  }
}
