<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ==================================================
  common OW
================================================== */
/* 変数
-------------------------------------------------- */
/* ----- メディアクエリー ----- */
@media only screen and (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
  .sp_only {
    display: none !important;
  }
}

/* 共通
-------------------------------------------------- */
* {
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
}
*:lang(en-us) {
  letter-spacing: 0.05em;
  font-family: "Open Sans", sans-serif;
}
*:lang(ko-kr) {
  letter-spacing: 0.05em;
  font-family: "Noto Sans KR", sans-serif;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

body {
  background-color: #080617;
}

section {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1023px) {
  section {
    margin-bottom: 90px;
  }
}

footer {
  position: relative;
  z-index: 10;
}

h2 {
  font-size: 48px;
  color: #fff;
  text-align: center;
  margin: 120px auto;
}
@media only screen and (max-width: 1023px) {
  h2 {
    font-size: 32px;
    margin: 40px 0;
  }
  h2 span {
    background: linear-gradient(transparent 60%, #7b5185 60%);
  }
}

p {
  color: #fff;
  line-height: 2em;
}

a:hover {
  opacity: 0.8;
  transition: 1s;
}
a.pc_only:hover {
  opacity: 1;
}

/* reset
-------------------------------------------------- */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* anime
-------------------------------------------------- */
.body_bg_bottom {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
}

.slide-in-bottom {
  bottom: 400px;
  animation: slide-in-bottom 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(2000px);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
/* ==================================================
  common OW
================================================== */
/* ==================================================
  メインビジュアル
================================================== */
.mv {
  height: 1100px;
  position: relative;
  text-align: center;
  background: url(../img/mv_pc.webp) no-repeat center;
}
@media only screen and (max-width: 1023px) {
  .mv {
    background: url(../img/mv_sp.webp) no-repeat center;
    height: auto;
    background-size: cover;
    margin-bottom: 0;
  }
}
.mv_inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1023px) {
  .mv_inner {
    width: auto;
    padding: 0 20px;
  }
}
.mv_inner .sub_copy {
  background: url(../img/bg_sub_txt.png) no-repeat center;
  background-size: cover;
  width: 480px;
  text-align: center;
  font-size: 1.6rem;
  padding-left: 0.8rem;
  left: -36px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .mv_inner .sub_copy {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: left;
    background-size: revert;
    background-position: right;
    font-size: 1.3rem;
  }
}
.mv_inner h1 {
  position: absolute;
  width: 300px;
  top: 10px;
  left: 10px;
}
@media only screen and (max-width: 1023px) {
  .mv_inner h1 {
    max-width: 240px;
    top: 8vw;
  }
}
.mv_inner .mv_copy {
  max-height: 300px;
  max-width: 640px;
}
.mv_inner .mv_copy.type_eng, .mv_inner .mv_copy.type_kr {
  margin-left: 0px;
  top: 88px;
  max-width: 460px;
}
.mv_inner .store_wrap {
  display: flex;
  justify-content: center;
  margin-top: 400px;
  gap: 20px;
  position: absolute;
  width: inherit;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mv_inner .store_wrap .btn_wrap {
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 400px;
}
.mv_inner .store_wrap a:hover {
  opacity: 0.7;
}
.mv_inner .store_wrap .store_btn {
  width: 100%;
  height: 55px;
}
.mv_inner .slide-bottom {
  animation: slide-bottom 3s ease-out alternate forwards;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.mv_inner .puff-in-center {
  animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
@keyframes puff-in-center {
  0% {
    transform: scale(1.05);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.mv_inner .btn_x {
  position: absolute;
  height: 70px;
  width: 70px;
  right: 10px;
  top: 10px;
  z-index: 100;
}
.mv_inner .btn_x:hover {
  transition: 0.2s all;
  animation: neon_animation 1s infinite alternate;
}
@media only screen and (max-width: 1023px) {
  .mv_inner {
    height: 178vw;
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  .mv_inner .btn_x {
    height: 72px;
    width: 72px;
    right: 5px;
    top: 5px;
  }
  .mv_inner .mv_copy {
    position: relative;
    max-width: 70%;
    top: 47vw;
    left: -21%;
  }
}

*:lang(en-us) .mv {
  background: url(../img/mv_pc_en_us.webp) no-repeat center;
}
@media only screen and (max-width: 1023px) {
  *:lang(en-us) .mv {
    background: url(../img/mv_sp_en_us.webp) no-repeat center;
    background-size: cover;
  }
}
*:lang(zh-cn) .mv {
  background: url(../img/mv_pc_zh_cn.webp) no-repeat center;
}
@media only screen and (max-width: 1023px) {
  *:lang(zh-cn) .mv {
    background: url(../img/mv_sp_zh_cn.webp) no-repeat center;
    background-size: cover;
  }
}
*:lang(zh-tw) .mv {
  background: url(../img/mv_pc_zh_tw.webp) no-repeat center;
}
@media only screen and (max-width: 1023px) {
  *:lang(zh-tw) .mv {
    background: url(../img/mv_sp_zh_tw.webp) no-repeat center;
    background-size: cover;
  }
}
*:lang(ko-kr) .mv {
  background: url(../img/mv_pc_ko_kr.webp) no-repeat center;
}
@media only screen and (max-width: 1023px) {
  *:lang(ko-kr) .mv {
    background: url(../img/mv_sp_ko_kr.webp) no-repeat center;
    background-size: cover;
  }
}
*:lang(en-us) .mv_copy, *:lang(zh-cn) .mv_copy, *:lang(zh-tw) .mv_copy, *:lang(ko-kr) .mv_copy {
  max-width: 80%;
  top: 66vw;
  left: -10%;
}
@media only screen and (max-width: 1023px) {
  *:lang(en-us) .mv_copy, *:lang(zh-cn) .mv_copy, *:lang(zh-tw) .mv_copy, *:lang(ko-kr) .mv_copy {
    max-width: 90%;
  }
}

/* ==================================================
  common OW
================================================== */
/* ==================================================
  DLsite Soundとは？
================================================== */
.product {
  z-index: 10;
}
.product_inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: -250px;
  z-index: 10;
}
@media only screen and (max-width: 1023px) {
  .product_inner {
    width: auto;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .product_inner {
    display: block;
    margin-top: auto;
  }
}
.product_wrap {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
}
.product_wrap .product {
  width: 300px;
}
.product_wrap .product .ttl {
  color: #77aaf6;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  min-height: 96px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.product_wrap .product img {
  margin-bottom: 30px;
}
.product_wrap .explanation {
  font-size: 18px;
}
@media only screen and (max-width: 1023px) {
  .product_wrap {
    justify-content: space-around;
  }
  .product_wrap .product {
    width: 100%;
    max-width: 300px;
  }
  .product_wrap .product:not(:last-child) {
    margin-bottom: 60px;
  }
  .product_wrap .product .ttl {
    font-size: 24px;
    min-height: auto;
  }
}

/* ==================================================
  common OW
================================================== */
/* ==================================================
  ブラウザ視聴との違い
================================================== */
.comparison {
  background-size: cover;
  padding: 80px 0;
}
@media only screen and (max-width: 1023px) {
  .comparison {
    padding: 0;
  }
}
.comparison_inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .comparison_inner {
    width: auto;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .comparison_inner {
    display: block;
  }
}

/* ==================================================
  common OW
================================================== */
/* ==================================================
  ストア情報
================================================== */
.store {
  margin: 120px auto 90px;
}
@media only screen and (max-width: 1023px) {
  .store {
    margin: 0 auto 90px;
    padding: 0 20px;
  }
}
.store_inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  box-sizing: border-box;
  width: 1024px;
  height: 360px;
  background-image: url(../img/bg_store_pc.png);
  background-position: 10%;
  background-size: cover;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  padding: 65px 150px;
}
@media only screen and (max-width: 1023px) {
  .store_inner {
    width: auto;
    padding: 0 20px;
  }
}
.store_inner .app_icon,
.store_inner .store_qr {
  width: 110px;
  height: 110px;
}
@media only screen and (max-width: 1023px) {
  .store_inner .app_icon,
  .store_inner .store_qr {
    margin-bottom: 10px;
  }
}
.store_inner .store_copy {
  font-size: 24px;
  position: absolute;
}
@media only screen and (max-width: 1023px) {
  .store_inner {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    justify-content: space-around;
    max-width: 580px;
  }
  .store_inner .store_copy {
    text-align: center;
    font-size: 16px;
    position: relative;
  }
}
.store_inner .store_wrap {
  margin-top: 55px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.store_inner .store_wrap a {
  margin: 0 10px;
}
.store_inner .store_wrap .store_wrap_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.store_inner .store_wrap .store_btn {
  width: 100%;
  height: 55px;
}
.store_inner .store_wrap .store_qr {
  width: 110px;
  height: 110px;
  margin-top: 16px;
}
@media only screen and (max-width: 1023px) {
  .store_inner .store_wrap {
    display: flex;
    margin: 20px 0 0;
    flex-direction: column;
  }
  .store_inner .store_wrap img {
    width: 120px;
    margin: 0;
  }
  .store_inner .store_wrap a {
    margin: 0 5px;
  }
  .store_inner .store_wrap .store_btn {
    margin: 8px auto;
    width: 300px;
    height: 70px;
  }
}

/* ==================================================
  common OW
================================================== */
/* ==================================================
  footer
================================================== */
.footer {
  background-size: 8px 8px, auto;
  background-repeat: repeat-x, repeat;
  background-position: top;
  margin-bottom: 40px;
}
.footer_inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .footer_inner {
    width: auto;
    padding: 0 20px;
  }
}
.footer_inner .footer_link {
  margin-bottom: 20px;
}
.footer_inner .footer_link a {
  color: #fff;
  margin: 0 15px;
  padding: 0.8rem 0;
}
.footer_inner .footer_link a:not(:last-child):after {
  content: "|";
  margin-left: 30px;
}
@media only screen and (max-width: 1023px) {
  .footer_inner .footer_link {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    line-height: 2em;
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .footer_inner .footer_link a:not(:last-child):after {
    content: none;
  }
}
.footer_copy {
  color: #77aaf6;
  text-align: center;
  padding: 12px 0;
}
@media only screen and (max-width: 1023px) {
  .footer_copy {
    margin-top: 32px;
  }
}

p {
  color: #fff;
}/*# sourceMappingURL=lp.css.map */</pre></body></html>