/* all.scss */
/* _reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  display: block;
}

img {
  vertical-align: middle;
}

/* _typography.scss */
body {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

h1, h2, h3 {
  font-family: "Arial", sans-serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

/* _grid.scss */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
  margin-top: 1rem;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
}

.about,
.services,
.contact {
  background-color: #fff;
  min-height: 60vh;
}

footer {
  background-image: url(../../img/stray_image//bottom-bar.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem 0.8rem;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 1.5rem 1rem 0.8rem;
  }
  .container {
    padding: 0;
  }
}
/* _home.scss */
.body {
  box-sizing: border-box;
  background-image: url(../../img/stray_image//bg-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

.loremsection {
  min-height: 1200px;
  position: relative;
  z-index: 2;
}

.fixed-nav {
  background-color: #ffffff;
  border: 2px solid #fbd99f;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5rem;
  position: sticky;
  top: 0rem;
  z-index: 99;
}
.fixed-nav .logo {
  padding: 0.5rem;
  width: 150px;
}
.fixed-nav .nav-bar ul {
  gap: 1rem;
}
.fixed-nav .nav-bar ul li {
  cursor: pointer;
}
.fixed-nav .nav-bar ul li a {
  color: #ef6515;
  text-decoration: none;
  display: block;
}

.deco .dot-r {
  right: 0;
}
.deco .dot-l {
  left: 0;
  top: 0;
}
.deco .logo-r {
  right: 0;
}
.deco .logo-l {
  top: 45%;
}
.deco .lightning {
  top: 20%;
  overflow: hidden;
  z-index: 3;
}
.deco .lightning img {
  animation: pulse 1.5s infinite;
}

.hero {
  aspect-ratio: 236/133;
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInDown 1s;
}
.hero .hero-frame {
  top: 0;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 236/133;
}
.hero .hero-img {
  aspect-ratio: 236/133;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.hero-mask {
  clip-path: polygon(50% 0%, 92% 6%, 99% 35%, 99% 70%, 95% 93%, 50% 100%, 5% 92%, 1% 70%, 1% 35%, 7% 7%);
}

.comics {
  margin-top: 2rem;
}
.comics .comic-tabs ul {
  gap: 5rem;
}
.comics .comic-tabs li {
  aspect-ratio: 139/48;
  width: 200px;
  height: 100%;
  display: block;
  background-image: url(../../img/stray_image//btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  align-content: center;
  color: aliceblue;
  text-align: center;
  text-decoration: none;
  padding-bottom: 0.2rem;
  font-size: 1.2rem;
  letter-spacing: 3px;
  transition: all 0.5s;
}
.comics .comic-tabs li:hover {
  background-image: url(../../img/stray_image//btn-active.png);
  transform: translate(0, -10px);
  cursor: pointer;
}
.comics .comic-tabs li.active {
  background-image: url(../../img/stray_image//btn-active.png);
}

#product-grid section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 5rem;
}

.card {
  width: 25%;
  padding: 20px;
  border: 2px solid #634303;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
  text-decoration: none;
}
.card p {
  margin-top: 10px;
  font-size: 16px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: gray;
}
.card a {
  text-decoration: none;
}
.card img {
  width: 100%;
}
.card:hover {
  transform: translateY(-10px);
}
.card:hover p {
  color: rgb(229, 135, 35);
}

.fixedBottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 3rem;
  justify-content: center;
  z-index: 9;
}
.fixedBottom button {
  padding: 10px;
  border-radius: 30px;
  gap: 1rem;
  align-items: center;
  display: flex;
  letter-spacing: 0.3rem;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background-color: rgb(255, 200, 90);
  padding: 0.5rem 1.5rem;
}
.fixedBottom button:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@media screen and (max-width: 1024px) {
  .deco .logo-l {
    top: 30%;
    width: 70%;
  }
  .deco .logo-r {
    right: 0%;
    width: 70%;
  }
  .deco .dot-l,
  .deco .dot-r {
    width: 30%;
  }
  #product-grid section {
    gap: 20px;
  }
  .card {
    width: 30%;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .card {
    width: 44%;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .body {
    background-image: url(../../img/stray_image//BG-m.jpg);
  }
  .hero {
    width: 95%;
  }
  .deco .lightning {
    top: 30%;
  }
  #product-grid section {
    gap: 15px;
    padding: 0px;
    margin-top: 1rem;
  }
  .card {
    width: 45%;
  }
  .comics .comic-tabs ul {
    gap: 0.8rem;
  }
  .comics .comic-tabs li {
    aspect-ratio: 139/48;
    width: 32%;
  }
  .fixedBottom {
    gap: 2rem;
  }
  .fixedBottom button {
    padding: 5px 15px;
    border-radius: 30px;
    gap: 0.5rem;
    letter-spacing: 0rem;
    font-size: 1.2rem;
    box-shadow: 0px 0px 5px #b04100;
  }
  .fixed-nav {
    padding: 0 1rem;
    width: 95%;
  }
  .fixed-nav .logo {
    padding: 0.5rem;
    width: 30%;
  }
  .fixed-nav .nav-bar ul {
    gap: 1rem;
  }
  .fixed-nav .nav-bar ul li a {
    font-size: 0.9rem;
  }
}
.contain-page {
  max-width: 750px;
  margin: 0 auto;
}
.contain-page h2 {
  font-weight: bold;
}

.app-info {
  display: flex;
  padding: 20px 0;
  width: 87.5%;
  margin: 0 auto;
  background: #fff;
}

.app-logo {
  float: left;
  width: 28%;
  margin-right: 10px;
}
.app-logo img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.app-info-rig {
  flex: 1;
}
.app-info-rig strong {
  display: block;
  margin-top: 6px;
  margin-left: 3.28358%;
  font-size: 20px;
  font-weight: bold;
}
.app-info-rig p {
  margin: 0.3em 0 0 3.28358%;
  font-size: 14px;
  color: #8a8a90;
}

.btn {
  display: block;
  width: 50%;
  padding: 4px 15px;
  background: rgb(4, 119, 249);
  border: rgb(4, 119, 249) 1px solid;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.app-show {
  /* display: flex
  ; */
  padding: 0 0 20px;
  width: 87.5%;
  margin: 0 auto;
  background: #fff;
  color: #8e8f92;
}

.app-age {
  text-align: right;
  float: right;
  size: 12px;
}

.app-score {
  display: flex;
  flex-wrap: wrap;
}

.app-score strong,
.app-age strong {
  font-size: 16px;
  font-weight: bold;
}

.app-score p,
.app-age p {
  color: #d8d8d8;
  font-size: 12px;
}

.app-score > .img {
  width: 80px;
  margin-left: 5px;
  vertical-align: center !important;
  height: 100%;
  align-self: center;
}

.app-intro,
.comment-box,
.information-box {
  margin: 0 auto;
  padding: 20px 0;
  width: 87.5%;
  border-top: 1px solid #e5e5e5;
}

.app-intro .app-title {
  margin-bottom: 0.85em;
  font-size: 20px;
}
.app-intro .app-intro-con {
  position: relative;
  line-height: 1.8;
  font-size: 14px;
  height: 5.4em;
  overflow: hidden;
}

.app-install {
  margin-top: 0.5rem;
  position: relative;
}
.app-install .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
}
.app-install .swiper-button-prev,
.app-install .swiper-button-next {
  color: #333;
}
.app-install .swiper-button-next {
  right: -10px;
}
.app-install .swiper-button-prev {
  left: -10px;
}
.app-install .swiper-pagination {
  bottom: 0px;
}

.comment-box .app-title {
  margin-bottom: 0.85em;
  font-size: 20px;
}
.comment-box .app-title .comment-right {
  float: right;
  width: 63.38308%;
}

.comment-right {
  width: 63.38308%;
}
.comment-right .comment-star-list {
  line-height: 1;
}
.comment-right .comment-star-list .comment-star {
  position: relative;
  width: 46px;
  height: 7px;
  display: inline-block;
  vertical-align: middle;
}
.comment-right .comment-star-list .comment-star img {
  display: block;
  width: 100%;
  height: 100%;
}
.comment-right .comment-star-list .comment-star div {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
}
.comment-right .comment-star-list .comment-progress {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: calc(100% - 56px);
  height: 2px;
  background: #e9e9ec;
  border-radius: 2px;
}
.comment-right .comment-star-list .comment-progress div {
  position: absolute;
  width: 0;
  height: 2px;
  background: #4a4a4e;
  border-radius: 2px;
}
.comment-right .comment-star-list li:nth-child(1) .comment-progress div {
  width: 90%;
}
.comment-right .comment-star-list li:nth-child(2) .comment-progress div {
  width: 10%;
}
.comment-right .comment-star-list li:nth-child(2) .comment-star div {
  width: 20%;
}
.comment-right .comment-star-list li:nth-child(3) .comment-star div {
  width: 40%;
}
.comment-right .comment-star-list li:nth-child(4) .comment-star div {
  width: 60%;
}
.comment-right .comment-star-list li:nth-child(5) .comment-star div {
  width: 80%;
}
.comment-right p {
  margin-top: 5px;
  color: #7b7b7b;
  text-align: right;
  font-size: 12px;
}

.comment-left strong {
  font-size: 60px;
  line-height: 43px;
  color: #4a4a4e;
  font-weight: bold;
}
.comment-left p {
  width: 91px;
  text-align: center;
  color: #7b7b7b;
  margin-top: 10px;
  font-size: 12px;
}

.information-list li {
  font-size: 12px;
  line-height: 3.5;
  border-bottom: #f2f2f2 1px solid;
  overflow: hidden;
}
.information-list li .l {
  float: left;
  color: #737379;
}
.information-list li .r {
  overflow: hidden;
  text-align: right;
}
.information-list li .r p {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  line-height: 1.2;
}

.mask_safari {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}

.safari_pop {
  box-sizing: border-box;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  z-index: 11;
  background: white;
  display: none;
}

.safari_pop > a {
  display: block;
  margin-top: 15px;
  border: 1px solid #ececec;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #c6c5ca;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .app-install {
    padding: 0 2rem 2rem;
  }
}/*# sourceMappingURL=all.css.map */