@charset "UTF-8";
html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap: break-word;
  word-wrap: break-word;
  color: #1b1b1b;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.first-view {
  position: fixed;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
}

.scroll-arrow {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  color: #333;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 1s ease;
  animation: bounce 2s infinite;
  pointer-events: none;
}

.scroll-arrow.show {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    padding-bottom: 50px;
  }
}

.content_inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .content_inner {
    padding: 0;
  }
}

.image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.image-wrap:hover {
  animation: shake 0.8s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2px, -2px);
  }
  20% {
    transform: translate(2px, 1px);
  }
  30% {
    transform: translate(-1px, 2px);
  }
  40% {
    transform: translate(2px, -1px);
  }
  50% {
    transform: translate(-2px, 2px);
  }
  60% {
    transform: translate(1px, -2px);
  }
  70% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(2px, 2px);
  }
  90% {
    transform: translate(-2px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.image-wrap_content {
  position: relative;
}
.image-wrap_content .buybutton {
  display: block !important;
}

.base-img {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.overlay-img,
.buybutton {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute; /* 必要なら調整 */
}

.image-wrap.shown .base-img {
  opacity: 1;
}

.image-wrap.revealed .overlay-img,
.image-wrap.revealed .buybutton {
  opacity: 1;
  transform: translateY(0);
}

.base-img,
.overlay-img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.overlay-img.show {
  opacity: 1;
}

.buybutton {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  max-width: initial !important;
}

.buybutton iframe {
  height: 100% !important;
}

.shopify-buy__btn-wrapper {
  margin-top: 0 !important;
}

footer {
  position: relative;
  width: 100%;
  background-color: #fafafa;
  margin-top: 100px;
}

footer .footer-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}
.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-text a {
  font-size: 1.3rem;
  color: #333;
  text-decoration: none;
}

.footer-link-list li {
  list-style: none;
  margin-bottom: 10px;
}

.copylight {
  margin-top: 20px;
  color: #999;
}

.c-pager {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  background-color: #fff;
  height: 60px;
  padding: 10px;
  border-radius: 30px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 10px, rgba(0, 0, 0, 0.1) 0px 4px 30px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .c-pager {
    display: grid;
    row-gap: 1.5rem;
    column-gap: 2.25rem;
    grid-template: "list list" 1fr "prev next"/1fr 1fr;
    height: 80px;
    width: 90%;
    border-radius: 40px;
  }
  .c-pager .page-prev {
    grid-area: prev;
    text-align: right;
  }
  .c-pager .page-next {
    grid-area: next;
    text-align: left;
  }
  .c-pager .page-list {
    grid-area: list;
    justify-content: center;
  }
}
.c-pager.is-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.c-pager > * {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.c-pager .page-prev.-disabled, .c-pager .page-next.-disabled {
  font-weight: normal;
  color: #999;
}

.page-list {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.page-list li {
  position: relative;
  list-style: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-list li span.current {
  font-weight: normal;
}

.page-list li span.page-numbers {
  position: relative;
}

.page-list li span.current::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: -0.5rem;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #333;
}

.page-list a {
  color: #333;
  text-decoration: none;
}

.c-pager a:-webkit-any-link {
  color: #333;
  text-decoration: none;
}

.manga-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  background-color: #1b1b1b;
  margin: 100px 0 40px 0;
}
.manga-title:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .manga-title {
    padding: 10px 20px;
  }
}
.manga-title h2.title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

.buy-button_btn {
  display: inline-block;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #1b1b1b;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 0 10px;
  border-radius: 5px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.shopify-buy__layout-vertical {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */
