@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background-color: #FFFBF0;
  color: #333333;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
}

.sec-pd {
  padding-top: 70px;
}

@media (max-width: 768px) {
  .sec-pd {
    padding-top: 50px;
  }
}

h2 {
  text-align: center;
  margin-bottom: 50px;
}

h2 .title {
  width: 263px;
}

@media (max-width: 768px) {
  h2 .title {
    width: 187px;
  }
}

.dis-sp {
  display: none;
}

@media (max-width: 768px) {
  .dis-sp {
    display: inline;
  }
}

.dis-pc {
  display: inline;
}

@media (max-width: 768px) {
  .dis-pc {
    display: none;
  }
}

.page-content {
  margin-top: 10vh;
  margin-bottom: 30vh;
}

.page-content h1 {
  margin-bottom: 50px;
}

.page-content p {
  margin-bottom: 15px;
}

.page-content ul {
  margin-bottom: 15px;
}

.page-content li {
  list-style: disc;
  margin-left: 50px;
}

.page-content a {
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

p,
li,
a,
span {
  font-size: 1.6rem;
  line-height: 160%;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.872rem;
}

.btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn a,
.btn button {
  display: inline-block;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  font-size: 2rem;
  padding-block: 5px;
  border: 1px solid transparent;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {

  .btn a:hover,
  .btn button:hover {
    opacity: 0.7;
  }
}

.picup-read-btn-wrap button {
  display: block;
  border: 1px solid #FF7F50;
  color: #FF7F50;
  background-color: #FFFFFF;
}

.buy-btn-wrap a {
  border: 1px solid #E53935;
  color: #FFFFFF;
  background-color: #E53935;
  position: relative;
  overflow: hidden;
}

.buy-btn-wrap a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

@media (hover: hover) {
  .buy-btn-wrap a:hover {
    opacity: 1;
  }
}

@media (hover: hover) {
  .buy-btn-wrap a:hover::after {
    left: 150%;
    transition: left 0.5s ease-in-out;
  }
}

.read-btn-wrap button,
.list-btn-wrap a {
  border: 1px solid #FF7F50;
  color: #FFFFFF;
  background-color: #FF7F50;
}

.list-btn-wrap {
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .list-btn-wrap {
    width: 100%;
  }
}

.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag li {
  background-color: #75CFCF;
  color: #FFFFFF;
  padding: 5px 20px;
  font-size: 1.4rem;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .tag li {
    padding: 3px 10px;
    font-size: 1.2rem;
  }
}

.img-wrapper img {
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .img-wrapper img:hover {
    opacity: 0.7;
  }
}

.manga-slick-wrap {
  width: 50%;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .manga-slick-wrap {
    width: 100%;
  }
}

.manga-slick-wrap a.slick-area {
  display: block;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .manga-slick-wrap a.slick-area:hover {
    opacity: 0.7;
  }
}

.manga-slick-wrap a.slick-area .manga-slick li img {
  width: 100%;
  height: auto;
  display: block;
}

.slick-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 5px;
  padding-inline: 2%;
}

.slick-controls .slick-prev-btn,
.slick-controls .slick-next-btn {
  border: none;
  background-color: transparent;
  color: #333333;
  font-size: 2.5rem;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {

  .slick-controls .slick-prev-btn:hover,
  .slick-controls .slick-next-btn:hover {
    opacity: 0.7;
  }
}

.slick-controls .slick-counter span {
  font-size: 1.6rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.is-active {
  display: flex;
}

.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  height: 90dvh;
  z-index: 10000;
  display: flex;
  align-items: center;
}

@media (max-width: 425px) {
  .modal .modal-content {
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    flex-direction: column;
    justify-content: center;
  }
}

.modal .close-btn {
  position: absolute;
  top: -40px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3.6rem;
  cursor: pointer;
  z-index: 10001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 425px) {
  .modal .close-btn {
    top: 10px;
    right: 10px;
  }
}

.manga-viewer {
  width: 100%;
  height: 97%;
}

@media (max-width: 425px) {
  .manga-viewer {
    height: calc(100dvh - 60px);
    height: calc(-webkit-fill-available - 60px);
  }
}

.manga-viewer .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.manga-viewer .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.manga-viewer .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
}

.manga-viewer .swiper-scrollbar .swiper-scrollbar-drag {
  background: #75CFCF;
}

.manga-viewer .swiper-pagination {
  color: #fff;
}

.manga-viewer .swiper-pagination span {
  font-size: 1.6rem;
}

.manga-viewer .swiper-button-next,
.manga-viewer .swiper-button-prev {
  color: #fff;
}

.final-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.final-slide__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: blur(3px);
}

.final-slide__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.final-slide .final-page-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.final-slide .final-page-content p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.final-slide .final-page-content .buy-btn-wrap a {
  display: inline-block;
  background-color: #E53935;
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .final-slide .final-page-content .buy-btn-wrap a:hover {
    opacity: 0.7;
  }
}

.swiper-wrapper {
  height: 92%;
}

.swiper-button-next,
.swiper-button-prev {
  top: 95%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 2rem;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 20px);
}

html {
  scroll-behavior: smooth;
}

/* ふわっ（下から） */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ふわっ（左から）*/
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ふわっ（右から） */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-block: 10px;
  background-color: #FFFBF0;
}

@media (max-width: 768px) {
  header {
    padding-block: 0;
  }
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
}

@media (max-width: 768px) {
  header .inner {
    padding-inline: 0;
  }
}

header .inner h1 img {
  width: 158px;
}

@media (max-width: 768px) {
  header .inner h1 img {
    width: 126px;
  }
}

header .inner nav {
  height: 100%;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

@media (max-width: 768px) {
  header .inner nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.2s ease;
    opacity: 0;
    z-index: 40;
  }
}

header .inner nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

@media (max-width: 768px) {
  header .inner nav ul {
    flex-direction: column;
    background-color: #75CFCF;
    padding: 100px 5% 5% 5%;
    color: #FFFFFF;
  }
}

header .inner nav ul li a {
  font-size: 1.6rem;
}

header .inner .hamburger {
  width: 60px;
  height: 60px;
  z-index: 100;
  background-color: #75CFCF;
  position: relative;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  header .inner .hamburger {
    display: block;
  }
}

header .inner .hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 60%;
  background-color: #fff;
  transition: 0.4s ease;
  border-radius: 10px;
}

@media (max-width: 425px) {
  header .inner .hamburger span {
    height: 2px;
  }
}

header .inner .hamburger span:nth-child(1) {
  top: 26%;
}

header .inner .hamburger span:nth-child(2) {
  top: 48%;
}

header .inner .hamburger span:nth-child(3) {
  top: 70%;
}

header.open .inner nav {
  max-height: 100vh;
  height: 250px;
  opacity: 1;
}

header.open .inner .hamburger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

header.open .inner .hamburger span:nth-child(2) {
  opacity: 0;
}

header.open .inner .hamburger span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

footer {
  margin-top: 100px;
}

footer .footer-inner {
  position: relative;
}

footer .footer-inner .footer-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}

footer .footer-inner .footer-text a {
  font-size: 1.6rem;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  footer .footer-inner .footer-text a:hover {
    opacity: 0.7;
  }
}

footer .back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border: 1px #75CFCF solid;
  background-color: #FFFFFF;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 1000;
}

@media (max-width: 768px) {
  footer .back-to-top {
    width: 40px;
    height: 40px;
  }
}

footer .back-to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

footer .back-to-top::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  right: 25%;
  border-top: #75CFCF 3px solid;
  border-right: #75CFCF 3px solid;
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  footer .back-to-top::after {
    right: 18%;
    width: 10px;
    height: 10px;
  }
}

@media (hover: hover) {
  footer .back-to-top:hover {
    background-color: #75CFCF;
  }

  footer .back-to-top:hover::after {
    border-top: #fff 3px solid;
    border-right: #fff 3px solid;
  }
}

.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #333333;
  align-items: center;
  justify-content: center;
}

.age-modal.is-active {
  display: flex;
}

.age-modal__inner {
  background: #FFFBF0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-modal__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.age-modal__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-modal__btn {
  width: 120px;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .age-modal__btn:hover {
    opacity: 0.7;
  }
}

.age-modal__btn--yes {
  background-color: #75CFCF;
  color: #fff;
}

.age-modal__btn--no {
  background-color: #ccc;
  color: #333;
}

@media (max-width: 768px) {
  .new-manga.sec-pd {
    padding-top: 15px;
  }
}

.new-manga .item {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .new-manga .item {
    flex-direction: column;
    gap: 10px;
  }
}

.new-manga .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (max-width: 768px) {
  .new-manga .content {
    width: 100%;
    gap: 20px;
  }
}

.new-manga .content h3 {
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .new-manga .content h3 {
    font-size: 1.8rem;
  }
}

.ichioshi-manga {
  margin-bottom: 70px;
}

.ichioshi-manga .flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .ichioshi-manga .flex {
    grid-template-columns: 1fr;
  }
}

.ichioshi-manga .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .ichioshi-manga .item {
    gap: 15px;
    width: 100%;
    padding-bottom: 20px;
  }
}

.ichioshi-manga .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding-inline: 2%;
}

@media (max-width: 768px) {
  .ichioshi-manga .content {
    width: 100%;
  }
}

.ichioshi-manga .content h3 {
  font-size: 1.8rem;
  min-height: 6em;
}

@media (max-width: 768px) {
  .ichioshi-manga .content h3 {
    min-height: auto;
  }
}

.ichioshi-manga .content .btn {
  margin-top: auto;
  padding-inline: 2%;
}

@media (max-width: 768px) {
  .page-list.sec-pd {
    padding-top: 15px;
  }
}

.page-list .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .page-list .grid {
    grid-template-columns: 1fr;
  }
}

.page-list .grid .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  padding-right: 5px;
}

.page-list .grid .item .flex {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.page-list .grid .item .flex .img-wrapper {
  display: block;
  width: 50%;
}

.page-list .grid .item .flex .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-list .grid .item .flex .content h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-list .grid .item .flex .content h3 {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.page-list .grid .item .btn {
  padding-inline: 2%;
}

.page-list .grid .item .read-btn-wrap button {
  font-size: 1.6rem;
  padding-block: 3px;
}

@media (max-width: 768px) {
  .page-list .grid .item .read-btn-wrap button {
    font-size: 1.4rem;
  }
}

.page-list .pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.page-detail {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .page-detail {
    margin-bottom: 150px;
  }

  .page-detail.sec-pd {
    padding-top: 0;
  }
}

.page-detail .item {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .page-detail .item {
    flex-direction: column;
    gap: 10px;
  }
}

.page-detail .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (max-width: 768px) {
  .page-detail .content {
    width: 100%;
    gap: 20px;
  }
}

.page-detail .content h3 {
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .page-detail .content h3 {
    font-size: 1.8rem;
  }
}

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