@charset "utf-8";

/* CSS Document */
* {
  max-width: min(100vw, 100%);
}
body {
  overflow-x: hidden;
}
ul.bottom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 90vw;
  width: 880px;
}

ul.bottom-list > li > div:last-child {
  font-size: 20px;
  text-align: start;
}

@keyframes jump {
  0% {
    transform: translateY(0);
    transform: scale(1);
  }

  50% {
    transform: translateY(-8px);
    transform: scale(1.05);
  }

  100% {
    transform: translateY(0);
    transform: scale(1);
  }
}

.jump {
  animation-name: jump;
  animation-duration: 1.5s; /* Adjust duration for desired speed */
  animation-iteration-count: infinite; /* or a specific number */
  animation-timing-function: ease-in-out; /* or other timing functions */
}
a {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  background-image: url(../images/BG.jpg);
  background-position: top center;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: "Shippori Mincho B1";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 6.4px;
  margin: 2% 0% 0% 0%;
}

/* h2 {
    color: var(--green, #00E013);
} */

h3 {
  color: #000;
  font-family: "Shippori Mincho B1";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

p {
  color: #000000;
  text-align: center;
  font-size: 20px;
  font-family: "Shippori Mincho B1";
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 1px;
  margin: 10px;
}
a {
  text-decoration: none;
}
span {
  color: var(--green, #00e013);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2px;
}

ul {
  padding: inherit;
  width: 90%;
}
li {
  color: #000;
  font-family: "Shippori Mincho B1";
  font-size: 20px;
  font-weight: 500;
  list-style-type: none;
}
/* menuBar */

.menu-bar {
  position: fixed;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 999;
  top: 0;
  /* box-shadow: 0px 5px 10px 0px rgb(103 52 69 / 30%); */
}

.menu-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}

.logo img {
  width: 160px;
  height: 37px;
  margin-top: 3px;
  filter: brightness(0) saturate(0%) invert(0%) sepia(100%) saturate(1950%)
    hue-rotate(35deg) brightness(100%) contrast(80%);
}

.nav-bar {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.nav {
  font-size: 18px;
  font-weight: 500;
  /* margin: 0 8px 0 16px; */
  color: #0f0f0f;
  transition: 0.2s;
  cursor: pointer;
}

.nav:hover {
  opacity: 0.8;
}

.login-btn {
  font-size: 18px;
  color: #000000;
  background-color: #0f0f0f;
  padding: 4px 14px 6px 16px;
  margin-left: 24px;
  border-radius: 20px;
  transition: 0.2s;
}

.login-btn:hover {
  background-color: #ffffff;
}

.social-media-btn {
  width: 25px;
  height: 25px;
  /* margin: 0 0 0 16px; */
  background-size: 100%;
}

.fb {
  background-image: url("../images/icon-fb.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.line {
  background-image: url("../images/icon-line.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.x {
  background-image: url("../images/icon-x.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.plurk {
  background-image: url("../images/icon-plurk.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.threads {
  background-image: url("../images/icon-threads.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.ig {
  background-image: url("../images/icon-ig.svg");
  filter: brightness(0) saturate(60%) invert(100%) sepia(100%) saturate(1950%)
    hue-rotate(-100deg) brightness(100%) contrast(100%);
  transition: 0.2s;
}

.social-media-btn:hover {
  opacity: 0.85;
  /* filter: brightness(5); */
}

/* menu-m */

.menu-m-button {
  width: 40px;
  height: 40px;
  padding: 12px 0;
  box-sizing: border-box;
  display: none;
}

.menu-m-icon {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 8px;
  background-color: #191919;
}

.menu-m {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;

  background-image: url(../images/BG.jpg);
  /* background-color: #000000; */
  background-size: cover;
  /*border-radius: 20px;
     border: 5px dashed; */
  position: fixed;
  z-index: 9999;
  display: none;
}

.login-btn-m {
  color: #ffffff;
  background-color: #191919;
  padding: 4px 16px 6px;
  border-radius: 20px;
  font-size: 20px;
  display: inline-flex;
  position: absolute;
  top: 16px;
  left: 16px;
}

.close {
  position: absolute;
  top: 8px;
  right: 16px;
}

.close .deg-45 {
  transform: rotate(45deg);
  margin-top: 10px;
}

.close .deg-315 {
  transform: rotate(315deg);
  margin-top: -10px;
}

.menu-list {
  width: 80%;
  margin: 0 auto;
  list-style-type: none;
  padding: 0;
  margin-top: 20%;
  color: #ffffff;
  letter-spacing: 4px;
}

.menu-list a {
  color: #fdb6ba;
}

.menu-item {
  text-align: center;
  font-size: 26px;
  padding: 16px;
  font-weight: 800;
  cursor: pointer;
}

.menu-item-s {
  display: flex;
  justify-content: center;
  font-size: 22px;
  padding: 32px 0;
  font-weight: 400;
  /* gap: 24px;
    max-width: 360px;
    margin: 0 auto; */
}

.menu-item-s a {
  margin: 0 5% 5%;
}

/* kv */

.kv-pc {
  /* padding-top: 60px; */
  margin: 0 auto;
  font-size: 0;
}

.kv-m {
  display: none;
}

/* content */

.section {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.container {
  margin: 5% 0px 3% 0px;
}
.title {
  width: 20%;
  margin: 0% 0px 3% 0px;
}
.title2 {
  width: 24%;
  margin: 0% 0px 3% 0px;
}
/* BuyBook */
#info,
#manhua,
#buy {
  display: inline-grid;
  justify-items: center;
}
.book {
  width: 60%;
}
.button {
  width: 100%;
  margin: 1%;
  gap: 4%;
  display: flex;
  justify-content: center;
}
.button a img {
  margin: 0% 2%;
  width: 150px;
  height: 53px;
}

/* 代理韓曼 */
.promote {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.comics {
  width: 16%;
  display: grid;
  justify-items: center;
}
.comics img {
  display: flex;
  height: 280px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.comics img:last-child {
  width: 150px;
  height: 53px;
  aspect-ratio: 181/66;
}

.Key-word > h3 > span {
  font-weight: 800;
}

@keyframes move {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(-50%);
  }
}

.text-block {
  display: block;
}

/* 注意事項 */
#info ul li {
  display: flex;
}
.notice {
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho B1";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.footer {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin: 2em 0 0 0;
  font-weight: 800;
  padding: 16px 5%;
  color: #000000;
  background: linear-gradient(
    90deg,
    rgba(222, 221, 237, 0.8) 0%,
    rgba(240, 218, 231, 0.8) 100%
  );
  box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.25);
}

.m-show {
  display: none;
}

/* modal */

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgb(137 211 193 / 90%); */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow: auto;
  overscroll-behavior: contain;
}

.modal {
  position: relative;
  border: 3px solid #000000;
  border-radius: 10px;
  background: #fff;
  box-shadow: 8px 8px 0px 0px #000000;
  height: fit-content;
  font-size: 24px;
  font-weight: 600;
}

.modal-header {
  background-color: #00e013;
  border-bottom: 3px solid #18262e;
  border-radius: 10px 10px 0 0;
  text-align: right;
  display: flex;
  justify-content: end;
  padding: 4px 12px 6px;
}

.modal-content {
  min-width: 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 16px 16px 24px 16px;
  gap: 8px;
}

.modal-content img {
  width: 70%;
}

.modal-btn {
  display: flex;
  gap: 24px;
  margin: 12px 0 8px;
}

.modal-btn div {
  width: 150px;
  padding: 8px 0 8px 4px;
  font-weight: 600;
  letter-spacing: 4px;
  border-radius: 50px;
  border: 0;
  color: #18262e;
  cursor: pointer;
  text-align: center;
  border: 3px solid #18262e;
  box-shadow: 0px 4px 0px 0px #18262e;
}

.confirm {
  background-color: #fcee21;
  transition: 0.2s;
}

.confirm:hover {
  background-color: #00e013;
}

.cancel {
  background-color: #d4d4d4;
  transition: 0.2s;
}

.cancel:hover {
  background-color: #b3b3b3;
}

.join-link {
  display: block;
  color: #00e013;
  font-size: 22px;
  text-decoration: underline;
  margin-top: 2%;
}

.modal-close {
  width: 28px;
  height: 28px;
  background-size: 100%;
  font-size: 56px;
  line-height: 32px;
  color: #18262e;
  cursor: pointer;
  transform: rotate(-45deg);
  font-weight: 400;
}

@media screen and (max-width: 1660px) {
  .modal {
    font-size: 1.25vw;
  }

  .join-link {
    font-size: 1.15vw;
  }

  .BuyBook {
    width: 40%;
  }
}

@media screen and (max-width: 1440px) {
  .modal-content {
    max-width: 400px;
    min-width: 400px;
  }

  .modal-btn {
    margin: 8px 0;
  }

  .modal-btn div {
    width: 120px;
  }

  .modal {
    font-size: 18px;
  }

  .join-link {
    font-size: 16px;
  }

  .footer {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 1280px) {
  .modal-btn div {
    box-shadow: 0px 2px 0px 0px #6a3c47;
  }
  .comics {
    width: 20%;
  }
}

@media screen and (max-width: 991px) {
  ul.bottom-list {
    max-width: min(85vw, 480px);
  }
  .notice {
    font-size: 20px;
  }
  .title {
    width: 30%;
  }
  .title2 {
    width: 34%;
  }
  .comics {
    width: 30%;
    margin-bottom: 2%;
  }

  .modal {
    font-size: 16px;
  }

  .BuyBook {
    width: 50%;
  }

  .box-row {
    margin: auto 5%;
    flex-direction: column;
    align-items: center;
  }

  /* 活動事項 */

  #info ul li {
    flex-direction: column;
    gap: 12px;
  }
  ul.bottom-list {
    gap: 30px;
  }
  .text-line-break {
    display: none;
  }

  .box-align {
    margin: auto 5%;
  }
  ul.bottom-list > li > div:last-child {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 720px) {
  .kv-pc {
    display: none;
  }

  .kv-m {
    display: block;
    font-size: 0;
    padding-top: 60px;
  }

  .logo img {
    width: 140px;
    height: 32px;
  }

  .nav-bar {
    display: none;
  }

  .menu-m-button {
    display: block;
  }

  .social-media-btn {
    width: 30px;
    height: 30px;
    margin: auto;
  }

  /* BuyBook */
  .book {
    width: 90%;
  }
  .comics {
    width: 45%;
    margin-bottom: 4%;
  }
  .acrylic-set {
    padding: 0;
  }

  .Key-word > h3,
  .Key-word > h3 > span {
    font-size: 33px;
    font-weight: 600;
  }

  .footer {
    font-size: 12px;
  }
}

@media screen and (max-width: 576px) {
  .separate img {
    width: 133%;
    margin: auto;
  }

  .text-block {
    display: inline;
  }

  .modal-content {
    max-width: 300px;
    min-width: 300px;
    text-align: center;
  }

  .modal-btn {
    gap: 12px;
  }

  .modal-btn div {
    width: 100px;
  }

  .pc-show {
    display: none;
  }

  .m-show {
    display: block;
  }

  /* 書籍 */
  .title {
    width: 45%;
  }
  .title2 {
    width: 48%;
  }
  #buy h1 {
    font-size: 25px;
  }
  .comics img {
    height: auto;
    width: 85%;
  }
  .Key-word > h3,
  .Key-word > h3 > span {
    font-size: 28px;
    line-height: 37px;
  }
}

@media screen and (max-width: 390px) {
  /* 書籍 */
  .title img {
    width: 65%;
  }
}

.float {
  transform: translateY(0px);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

ul.bottom-list > li {
  display: flex;
  gap: 20px;
  align-items: center;
}

ul.bottom-list > li > div:first-child {
  width: 220px;
  height: 80px;
  flex-shrink: 0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: contain;
}

ul.bottom-list > li:nth-child(odd) > div:first-child {
  background-image: url("../images/buBG.webp");
}

ul.bottom-list > li:nth-child(even) > div:first-child {
  background-image: url("../images/buBG2.webp");
}

ul.bottom-list > li {
  gap: 40px;
}
