/* スクロールバーcss ここから */
::-webkit-scrollbar{
  width: 5px;
}

::-webkit-scrollbar-track{
  background-color: #000;
}

::-webkit-scrollbar-thumb{
  background-color: #FFF;
  border-radius: 10px;
}
/* スクロールバーcss ここまで */

html {
  font-size: 62.5%;
  min-height: 100%;
}

body {
  margin: 0;
  color: #fff;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.65;
  background: #000;
}

body.menu-open {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}

a:hover {
  opacity: .8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, li, p, h1, h2, h3, div, section, article, nav, button {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button {
  font: inherit;
}

@font-face {
  font-family: "snsicon";
  src: url(fonts/snsicon.ttf) format("truetype"), url(fonts/snsicon.woff) format("woff"), url(fonts/snsicon.svg) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.icon {
  font-family: "snsicon" !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-instagram:before { content: ""; }
.icon-facebook:before { content: ""; }
.icon-twitter:before { content: ""; }

body.article-bg::before {
  background-image: url("images/img_articlebg.jpg");
  background-size: cover;
  background-position: center top;
  position: fixed;
  inset: 0;
  content: "";
  z-index: -2;
}

body.article-bg::after {
  background: rgba(0, 0, 0, .62);
  position: fixed;
  inset: 0;
  content: "";
  z-index: -1;
}

.site-header {
  position: relative;
  z-index: 80;
  background: #000;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px 8px;
}

.site-logo img {
  width: 223px;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-sns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch a {
  font-size: 1.2rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}

.lang-switch a.current {
  min-width: 40px;
  text-align: center;
  padding: 4px 10px;
  color: #111;
  background: #48ded6;
}

.global-nav-wrap {
  position: relative;
  z-index: 70;
}

.global-nav {
  background: linear-gradient(180deg, #59ded8 0%, #3fd4cc 52%, #35cfc7 100%);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 -1px 0 rgba(0,0,0,.08);
}

.global-nav-wrap.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  animation: navSlideDown .26s ease-out forwards;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.global-nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 14px;
}

.global-nav-list li {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 64px;
  padding: 0 18px;
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
  overflow: hidden;
  text-decoration: none;
}

.global-nav a::before,
.global-nav a::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.global-nav a::before {
  border-top: 2px solid rgba(255,255,255,.9);
  border-bottom: 2px solid rgba(255,255,255,.9);
  transform: scaleX(.72);
}

.global-nav a::after {
  border-left: 2px solid rgba(255,255,255,.9);
  border-right: 2px solid rgba(255,255,255,.9);
  transform: scaleY(.72);
}

.global-nav a:hover,
.global-nav a:focus-visible {
  opacity: 1;
  background: rgba(255,255,255,.05);
}

.global-nav a:hover::before,
.global-nav a:hover::after,
.global-nav a:focus-visible::before,
.global-nav a:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.global-nav a.current {
  background: none;
}

.nav-spacer {
  display: none;
}

.openbtn1,
#g-nav {
  display: none;
}

.page-hero {
  position: relative;
  padding: 50px 16px 50px;
  text-align: center;
  background:
    url("../images/bg_header_01.jpg") center/cover no-repeat;
  border-bottom: 2px solid rgba(126, 144, 148, .75);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 7rem;
  line-height: 1.2;
  letter-spacing: .06em;
  font-weight: 700;
  color: #f8ffff;
  text-shadow: 0 0 12px rgba(89, 255, 241, .55);
}

.dlc-main {
  max-width: 760px;
  margin: 54px auto 0;
  padding: 0 16px 110px;
}

.dlc-item + .dlc-item {
  margin-top: 100px;
}

.common-thumb {
  display: block;
  width: 40%;
  margin: 0 auto 0;
}

.dlc-info {
  display: block;
  width: 100%;
  margin: 0 auto 0;
}

.dlc-title {
  margin-top: 14px;
  font-size: 2.9rem;
  line-height: 1.25;
  font-weight: 700;
  color: #37d3c0;
}

.dlc-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.dlc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 7px 14px 8px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.dlc-badge.free {
  background: #37d3c0;
}

.dlc-badge.paid {
  background: #d6151e;
}

.dlc-price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.dlc-subtitle {
  margin-top: 24px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.dlc-description {
  margin-top: 10px;
  line-height: 1.65;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  .global-nav a {
    min-width: 120px;
    height: 58px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 900px) {
  .page-hero h1 {
    font-size: 5.2rem;
  }
}

@media screen and (max-width: 767px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .site-header-top {
    padding: 10px 64px 10px 12px;
    min-height: 58px;
  }

  .site-logo img {
    width: 170px;
  }

  .site-header-right {
    display: none;
  }

  .global-nav-wrap,
  .nav-spacer {
    display: none !important;
  }

  .openbtn1 {
    display: block;
    position: fixed;
    top: 8px;
    right: 10px;
    width: 46px;
    height: 46px;
    z-index: 220;
    border: 1px solid rgba(255,255,255,.9);
    background: rgba(44,181,169,.78);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
  }

  .openbtn1 span {
    display: block;
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .28s ease, opacity .2s ease, top .28s ease;
  }

  .openbtn1 span:nth-of-type(1) { top: 14px; }
  .openbtn1 span:nth-of-type(2) { top: 21px; }
  .openbtn1 span:nth-of-type(3) { top: 28px; }

  .openbtn1.active span:nth-of-type(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .openbtn1.is-fixed {
    animation: navSlideDown .22s ease-out forwards;
  }

  #g-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,.94);
    transition: opacity .24s ease, visibility .24s ease;
  }

  #g-nav.panelactive {
    opacity: 1;
    visibility: visible;
    z-index: 210;
  }

  #g-nav .g-nav-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 88px 20px 34px;
  }

  #g-nav-list {
    width: 100%;
    max-width: 300px;
  }

  #g-nav-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
  }

  #g-nav-list li {
    width: 100%;
    text-align: center;
  }

  #g-nav-list a {
    display: inline-block;
    position: relative;
    min-width: 210px;
    padding: 10px 24px;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .04em;
  }

  #g-nav-list a::before,
  #g-nav-list a::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
  }

  #g-nav-list a::before {
    border-top: 1px solid rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.9);
    transform: scaleX(.78);
  }

  #g-nav-list a::after {
    border-left: 1px solid rgba(255,255,255,.9);
    border-right: 1px solid rgba(255,255,255,.9);
    transform: scaleY(.78);
  }

  #g-nav-list a:hover::before,
  #g-nav-list a:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .g-nav-meta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .g-nav-sns {
    display: flex;
    gap: 20px;
  }

  .g-nav-sns a {
    font-size: 3.2rem;
  }

  .g-nav-lang {
    display: flex;
    gap: 12px;
  }

  .g-nav-lang a {
    min-width: 56px;
    text-align: center;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,.75);
    color: rgba(255,255,255,.8);
    font-size: 1.3rem;
    letter-spacing: .08em;
  }

  .g-nav-lang a.current {
    background: #48ded6;
    border-color: #48ded6;
    color: #111;
  }

  .page-hero {
    padding: 54px 16px 48px;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

  .dlc-main {
    margin-top: 28px;
    padding-bottom: 70px;
  }

  .dlc-item + .dlc-item {
    margin-top: 56px;
  }

  .dlc-title {
    font-size: 2.4rem;
  }

  .dlc-meta {
    gap: 12px;
    margin-top: 12px;
  }

  .dlc-badge {
    min-width: 60px;
    padding: 6px 12px 7px;
    font-size: 1.4rem;
  }

  .dlc-price {
    font-size: 1.8rem;
  }

  .dlc-subtitle {
    margin-top: 18px;
    font-size: 1.8rem;
  }

  .dlc-description {
    font-size: 1.6rem;
  }
}

/* ===== footer + page top ===== */

/* c-sns-icon */
.c-sns-icon {
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-size: 2.4rem;
    height: 32px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    width: 32px;
}
.c-sns-icon .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* page top */

#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  border-radius: 5px;
  width: 80px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/* footer */
.l-footer {
    width: 100%;
    background: #000;
    color: #f0f0f0;
}

.l-footer-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px 16px;
}

.l-footer-logo {
    text-align: center;
    width: 100%;
}
.l-footer-logo a {
    display: inline-block;
}

.l-footer-contents {
    width: 100%;
}

.l-footer-sns {
    margin-bottom: 32px;
    text-align: center;
}

.l-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 35px;
    list-style: none;
    padding: 0;
}

.l-footer-nav-item {
    margin: 16px 8px 0;
}

.l-footer-nav-text {
    text-decoration: none;
}

.l-footer-copy {
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 16px;
}

.l-footer-copy {
    text-align: center
}

/* PC時の index 側と同じ寄せ方 */
@media screen and (min-width: 1025px) {
    .l-footer-inner {
        flex-wrap: nowrap;
    }
    .l-footer-logo {
        margin: 0 auto;
        text-align: center;
        width: 200px;
    }
    .l-footer-contents {
        width: auto;
    }
    .l-footer-sns {
        margin-top: 0;
        text-align: center;
    }
    .l-footer-nav {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/* ===== SNSアイコンサイズ固定 ===== */

.l-footer-sns img,
.site-sns img {
  width: 20px;
  height: 20px;
}

.g-nav-sns img {
  width: 20px;
  height: 20px;
}

/* DLC説明内リンクだけ下線を表示 */
.dlc-description a {
  text-decoration: underline;
}

/* ホバー時も見やすく */
.dlc-description a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ローディング画面 ここから */
#loading {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#loading_barWrap {
    width: 100vw;
    height: calc(1rem + 5px);
    position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loading p.image{
  text-align: center;
  margin: 1.5em 0;
}

#loading_barWrap img{
	width: 100%;
	max-width: 250px;
}

#loading_bar {
    width: 0;
    height: 1px;
    background: #fff;
    transition-duration: 1s;
}

.loadingNone {
    animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/* ローディング画面 ここまで */