@charset "utf-8";

/*-------------------------------------------------
共通
-------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

.sp-only {
  display: none;
}

.pt80-pc {
  padding-top: 80px;
}

.pt4 {
  padding-top: 4px;
}

.pt10 {
  padding-top: 10px;
}

.small {
  font-size: 13px !important;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-weight {
  font-weight: bold;
}

.required::before {
  content: '※';
  color: #B60014;
}

.text-red {
  color: #B60014;
}

.text-red-i {
  color: #B60014 !important;
}

.text-blue {
  color: #5566D1 !important;
}

.text-light-gray {
  color: #cccccc;
}

.text-slight-gray {
  color: #8b8b8b;
}

.text-gray {
  color: #666666;
}

.text-white {
  color: #ffffff !important;
}

.text-yellow {
  color: #FF8800 !important;
}

.text-green {
  color: #339933 !important;
}

.text-black {
  color: #222222 !important;
}

/* 自動改行させない */
.text-nowrap {
  white-space: nowrap;
}

.under_line {
  text-decoration: underline !important;
  word-break: break-all;
}

/* 非表示 */
.display-none {
  display: none;
}

/* Lityカスタマイズ */
.lity-close {
  display: none;
}

.lity-content:after {
  box-shadow: none !important;
}


html {
  min-width: 100%;
  background-color: #F5F5F5;
  scroll-behavior: smooth;
}

body {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", Osaka, sans-serif;
}

textarea {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", Osaka, sans-serif;
}

a:default,
a:link,
a:active,
a:visited {
  color: #333333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


/* ヘッダ */
header {
  position: fixed;
  width: 100%;
  z-index: 200;
}

.header-top {
  background: #000000;
}

.header-top .logo {
  margin-left: 15px;
}

.header-top .logo img {
  width: 100px;
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.home-btn {
  display: none;
}

.header-top .games-store {
  text-indent: 0;
  display: block;
  color: #ffffff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 15px;
  margin-right: 15px;
  border: solid 2.5px #ffffff;
}

.header-cap {
  height: 38px;
  background: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: #252a2e solid 1px
}

/* ヘッダ固定［Gamesストア］リンク */
.header-cap__btn a {
  display: block;
  width: 108px;
  height: 32px;
  font-size: 12px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  background-color: #1111bb;
  color: #fff;
  border-radius: 0 0 8px 8px;
  transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 374px) {
  .header-cap__btn a {
    width: 90px;
    font-size: 10px;
  }
}

.header-cap__btn a span {
  display: inline-block;
  transition: 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .header-cap__btn a:hover {
    filter: contrast(5);
  }

  .header-cap__btn a:hover span {
    transform: scale(1.05);
  }
}

/* 言語選択 */
.change-lang {
  position: relative;
  width: 120px;
  display: flex;
  justify-content: flex-end;
}

.change-lang__button {
  width: 100%;
  position: relative;
  z-index: 102;
  font-size: clamp(10px, calc(10 / 375 * 100vw), 11px);
  color: #fff;
  padding: 10px 50px 10px 20px;
  background-image: url(/assets/img/arrow_down_white.svg);
  background-size: 13px auto;
  background-repeat: no-repeat;
  background-position: center right 10px;
}

@media (hover: hover) and (pointer: fine) {
  .change-lang__button {
    transition: 0.3s ease-in-out;
  }

  .change-lang__button:hover {
    background-color: #333;
  }
}

.change-lang__button.is-open {
  background-image: url(/assets/img/arrow_up_white.svg);
}

.change-lang__list {
  position: absolute;
  z-index: 103;
  top: 35px;
  left: 0;
  width: 100%;
  overflow: hidden;
  font-size: 11px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.15s ease-in-out;
  border-radius: 0 0 0 5px;
}

.change-lang__list.is-open {
  transform: scaleY(1);
}

.change-lang__list li a {
  display: block;
  color: #fff;
  text-align: left;
  padding: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .change-lang__list li a {
    transition: 0.15s ease-in-out;
  }

  .change-lang__list li a:hover {
    color: #ffc500;
    background-color: #222222;
  }
}

.change-lang__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  display: none;
}

.change-lang__bg.is-open {
  display: block;
}

/* ハンバーガーメニュー */
.nav-button {
  display: none;
}

/* サイトタイトル */
.header-under {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.header-under__title {
  display: flex;
  align-items: center;
  position: relative;
}

.duelist-point {
  width: 241px;
  margin-right: 70px;
}

.duelist-point img {
  width: 100%;
}

/* サイトタイトル横の(?)アイコン */
.header-under__title .question {
  display: block;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 25px;
  transition: 0.3s ease-in-out;
}

.header-under__title .question img {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .header-under__title .question:hover {
    filter: contrast(2);
    transform: scale(1.05);
  }
}

nav.nav {
  height: 70px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

nav.nav a {
  display: block;
  min-width: 40px;
  text-align: center;
  padding-top: 45px;
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  transition: 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  nav.nav a:hover {
    filter: contrast(2);
    transform: scale(1.05);
  }
}

nav.nav a::before {
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
}

nav.nav a:hover {
  background-color: rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

/* PC表示時のアイコン間隔の微調整 */
@media only screen and (min-width: 921px) {
  nav.nav a.campaign {
    margin: 0 -0.75em;
  }

  nav.nav a.setting {
    margin: 0 -0.5em;
  }
}

.h_top:before {
  background-image: url(/assets/img/ic_top.png);
}

.news:before,
.news.alert:before {
  background-image: url(/assets/img/ic_news.png);
}

.campaign:before {
  background-image: url(/assets/img/ic_campaign.png);
}

.use:before {
  background-image: url(/assets/img/ic_use.png);
}

.save:before {
  background-image: url(/assets/img/ic_get.png);
}

.balance:before {
  background-image: url(/assets/img/ic_points.png);
}

.setting:before,
.setting.new:before {
  background-image: url(/assets/img/ic_mypage.png);
}

.news.alert:after {
  position: absolute;
  top: -5px;
  right: -10px;
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-size: auto 21px;
  background-position: center right;
  background-repeat: no-repeat;
  background-image: url(/assets/img/ic_alert.png);
}

.setting.new:after {
  position: absolute;
  top: -10px;
  left: 40%;
  content: "";
  display: inline-block;
  width: 48px;
  height: 20px;
  background-size: auto 20px;
  background-position: center right;
  background-repeat: no-repeat;
}

.pc_menu {
  display: block !important;
}

.sp_menu {
  display: none !important;
}

/* TOP Gamesストアバナー */
.header-banner {
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.header-banner a {
  display: block;
  width: 100%;
  text-align: center;
  transition: 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .header-banner:hover {
    filter: contrast(5);
  }
  .header-banner a:hover {
    transform: scale(1.025);
  }
}

.games-store-bnr {
  height: 64px;
  width: auto;
  margin: 0 auto;
}

/* メイン */
.main-default {
  padding: 130px 15px 0;
  background-image: url(/assets/img/bg_star_black.png);
}

.main-default.nopad {
  padding: 130px 0 0 0;
}

.main-default.error {
  padding: 160px 15px 0;
}

.main-message {
  width: 560px;
  padding: 18px;
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.main-message::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.large {
  width: 640px;
}

.main-default article,
.main-default section,
.main-message article,
.main-message section {
  max-width: calc(1024px - (15px * 2));
  margin: 0 auto 30px auto;
  font-size: 16px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {

  .main-default article,
  .main-default section,
  .main-message article,
  .main-message section {
    margin-bottom: 15px;
  }
}

.ydp h1,
.ydp h2 {
  display: inline-block;
  border-width: 0 0 0 8px;
  border-style: solid;
  border-color: #666666;
  padding: 4px 8px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: bold;
}

.ydp h3,
.ydp h4 {
  display: flex;
  align-items: center;
  padding: 4px 8px 4px 0;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: bold;
  vertical-align: middle;
  font-size: 18px;
}

.lity-content h3 {
  display: block;
}

.ydp h3:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #666666;
  border-radius: 8px;
  margin-right: 4px;
}

.ydp h1 {
  font-size: 24px;
}

.ydp h2 {
  font-size: 24px;
}

.ydp p {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
}

.ydp .mb {
  margin-bottom: 20px;
}

.ydp .mb-small {
  margin-bottom: 8px;
}

.ydp .mb-big {
  margin-bottom: 40px;
}

.ydp .mt {
  margin-top: 20px;
}

.ydp .mt-small {
  margin-top: 8px;
}

.ydp .mt-big {
  margin-top: 40px;
}


.ydp .ydp-box {
  padding: 20px;
  border-width: 2px;
  border-style: solid;
  border-color: #bbbbbb;
  border-radius: 10px;
  background-color: #ffffff;
}

.ydp .ydp-box.ydp-box-grad-h {
  background: linear-gradient(90deg, #F0F0F0, #ffffff);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.ydp .ydp-box.ydp-box-grad-v {
  background: linear-gradient(180deg, #F0F0F0, #ffffff);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.ydp .ydp-box.ydp-box-gray {
  background-color: #F0F0F0;
}

.ydp .ydp-box.ydp-box-lightgray {
  background-color: #F5F5F5;
}

.ydp .ydp-box.ydp-box-notice {
  background-color: #ffffff;
  border-color: #e80013;
}

.ydp .ydp-box.ydp-box-yellow {
  background-color: #FFF9E2;
  border-color: #FAC357;
}

.ydp .border-red {
  border-color: #e80013;
}

.ydp .border-yellow {
  border-color: #ffb500;
}

.ydp .border-green {
  border-color: #339933;
}

.ydp .border-blue {
  border-color: #5566D1;
}

.ydp .border-gray {
  border-color: #666666;
}

.ydp .border-black {
  border-color: #222222;
}

.ydp .bg-red {
  background-color: #B60014;
}

.ydp .bg-yellow {
  background-color: #FF8800;
}

.ydp .bg-green {
  background-color: #339933;
}

.ydp .bg-blue {
  background-color: #5566D1;
}

.ydp .bg-gray {
  background-color: #666666;
}

.ydp .bg-black {
  background-color: #222222;
}

/* その他 */
.char {
  /* text-align: center; */
  /* padding: 32px; */
}

.char img {
  width: 160px;
  /* height: 160px; */
}

.modal_container {
  text-align: center;
  padding: 32px;
}

.modal_container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .modal_container {
    padding: 0px;
  }
}

.loading {
  padding: 32px;
  text-align: center;
}

.loading img {
  width: 84px;
  height: 84px;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/* フォーム */
.ydp .ydp-form-row {
  margin-bottom: 20px;
}

.ydp-form-row input:focus,
.ydp-form-row textarea:focus,
.ydp-form-row select:focus,
.ydp-button {
  outline: none;
}

.ydp-form-row .ydp-form-title {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  padding: 0 16px 0 0;
}

.ydp-form-row .long-title {
  width: 70%;
}

.ydp-form-row input[type="text"],
.ydp-form-row input[type="url"],
.ydp-form-row select,
.ydp-form-row textarea {
  height: 50px;
  font-size: 18px;
  border-width: 2px;
  border-style: solid;
  border-color: #777777;
  border-radius: 5px;
  background-color: #ffffff;
  vertical-align: middle;
  padding: 0 8px;
}

.ydp-form-row .ydp-form-static {
  display: inline-block;
  font-size: 18px;
}

.ydp-form-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 58px;
  background-image: url(/assets/img/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50px auto;
  cursor: pointer;
}

.ydp-form-row select.disable {
  pointer-events: none;
}

/* チェックボックス */
.ydp-checkbox input[type="checkbox"] {
  display: none;
}

.ydp-checkbox {
  display: inline;
}

.ydp-checkbox label {
  display: inline-block;
  font-size: 18px;
  margin-right: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.ydp-checkbox label::before {
  content: "";
  display: inline-block;
  height: 40px;
  width: 40px;
  border-width: 2px;
  border-style: solid;
  border-color: #777777;
  border-radius: 5px;
  background-color: #ffffff;
  vertical-align: middle;
  margin: 0 8px 8px 0;
  cursor: pointer;
}

.ydp-checkbox label.disabled::before {
  background-color: #f0f0f0;
}

.ydp-checkbox input:checked+label::before {
  background-image: url(/assets/img/checkbox_check.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px auto;
}

.ydp-buttons {
  margin: 30px 0 0 0;
  text-align: center;
}

.ydp-button {
  display: inline-block;
  min-width: 160px;
  font-size: 18px;
  font-weight: bold;
  border-width: 3px;
  border-style: solid;
  border-radius: 25px;
  vertical-align: middle;
  margin: 0 8px;
  cursor: pointer;
  padding: 7px 20px;
  line-height: 24px;
}

.ydp-button:hover {
  filter: contrast(1.5);
  transform: scale(1.025);
  transition: .3s;
}


.ydp-button.ydp-button-default {
  color: #666666;
  border-color: #777777;
  background: linear-gradient(180deg, #ffffff, #ebebeb);
}

.ydp-button.ydp-button-primary {
  color: #ffffff;
  border-color: #770000;
  background: linear-gradient(180deg, #d4000d, #b3000d);
}

.ydp-button.ydp-button-secondary {
  color: #ffffff;
  border-color: #666666;
  background-color: #777777;
}

.ydp-button.ydp-button-Tertiary {
  color: #b60014;
  border-color: #b60014;
  background-color: #fff;
}

.ydp-button.ydp-button-Fourth {
  color: #ffffff;
  border-color: #b60014;
  background-color: #b60014;
}

.ydp-button.ydp-button-default.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ydp-button.ydp-button-primary.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ydp-button.ydp-button-secondary.disabled {
  /*opacity: 0.5;*/
  pointer-events: none;
}

.ydp-button.ydp-button-Tertiary.disabled {
  /*opacity: 0.5;*/
  pointer-events: none;
}

.ydp-button.ydp-button-Fourth.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ydp-button.ydp-button-secondary.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ydp-button.ydp-button-Tertiary.disabled {
  pointer-events: none;
}

.ydp-button.ydp-button-Fourth.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hidden-button {
  min-width: 160px;
  pointer-events: none;
  display: inline-block;
}

.inline-buttons {
  font-size: 0;
}

/* リンクグループ */
.ydp-link-group a {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  font-size: 18px;
  border-style: solid;
  border-color: #777777;
  background-color: #ffffff;
  padding: 8px 8px;
  border-width: 2px 0 2px 2px;
}

.ydp-link-group a:hover {
  background-color: #bbbbbb;
  transition: .3s;
}

.ydp-link-group a:nth-of-type(1) {
  border-radius: 8px 0 0 8px;
  border-width: 2px 0 2px 2px;
}

.ydp-link-group a:last-of-type {
  border-radius: 0 8px 8px 0;
  border-width: 2px 2px 2px 2px;
}

.ydp-link-group.ydp-link-group-red a {
  border-color: #B60014;
}

.ydp-link-group.ydp-link-group-yellow a {
  border-color: #FF8800;
}

.ydp-link-group.ydp-link-group-green a {
  border-color: #339933;
}

.ydp-link-group.ydp-link-group-blue a {
  border-color: #5566D1;
}

.ydp-link-group.ydp-link-group-gray a {
  border-color: #666666;
}

.ydp-link-group.ydp-link-group-black a {
  border-color: #222222;
}

.ydp-link-group a.acvive {
  color: #ffffff;
  pointer-events: none
}

.ydp-link-group.ydp-link-group-red a.acvive {
  background-color: #B60014;
}

.ydp-link-group.ydp-link-group-yellow a.acvive {
  background-color: #FF8800;
}

.ydp-link-group.ydp-link-group-green a.acvive {
  background-color: #339933;
}

.ydp-link-group.ydp-link-group-blue a.acvive {
  background-color: #5566D1;
}

.ydp-link-group.ydp-link-group-gray a.acvive {
  background-color: #666666;
}

.ydp-link-group.ydp-link-group-black a.acvive {
  background-color: #222222;
}

.ydp .content-disable {
  pointer-events: none !important;
}

.ydp .content-disable a {
  text-decoration: none !important;
}



/* フッター */
footer {
  background-color: #f0f0f0;
  height: auto;
  border-top: solid 8px #e80013;
  overflow: hidden;
}

.border-foot {
  height: 60px;
  display: flex;
  justify-content: center;
}

.border-foot .border-foot-center {
  width: 100%;
  max-width: 1280px;
  background-image: url(/assets/img/common/border_foot_center.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1280px auto;
}

.border-foot .border-foot-side {
  width: calc((100% - 1280px) / 2);
  background-image: url(/assets/img/common/border_foot_side.png);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 10px auto;
}

.top-shaddow {
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
}

.footer-title {
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 40px;
  position: relative;
  line-height: 1em;
  text-shadow: 0 2px 1px #ffffff;
}

.footer-title::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/assets/img/arrow.png) no-repeat;
  background-size: contain;
  background-position: 10px 0;
}

.footer-inner {
  max-width: 690px;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 35px;
}

/* Information */
.information-list {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}


.information-list tr {
  font-size: 16px;
  border-bottom: 1px solid #999999;
  border: 0;
  height: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.information-list th {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  padding: 19px 5px;
  width: 15%;
  box-sizing: border-box;
}

.information-list td {
  vertical-align: inherit;
  padding: 19px 0;
  width: 80%;
}

/* 外部バナー */
.outer-banners {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 28px;
  justify-content: space-between;
}

.outer-banners li {
  width: calc(100% / 2 - 6px);
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
  margin-bottom: 15px;
}

.outer-banners li img {
  width: 100%;
  border-radius: 10px;
}


/* フッターナビ */
.footer-nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-nav a {
  display: flex;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc(100% / 2 - 10px);
  margin: 5px;
  padding: 8px;
  height: 42px;
  color: #333333;
  background-color: white;
  border-radius: 21px;
  line-height: 38px;
}

.footer-nav .table-box {
  display: table;
  line-height: normal;
  padding: 5px;
}

.footer-nav .table-box p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.25;
}

.footer-nav a:hover {
  background-color: rgba(0, 0, 0, 0.15);
  transition: .3s;
}

.footer-nav .games-store {
  background-color: #000000;
  color: #ffff8d;
  transition: .3s;
  border-radius: 10px;
}

/* フッター：最下部 */
.footer__bottom__note {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.61538;
  color: #999999;
  margin-bottom: 30px;
}

.footer__bottom__note__p1 {
  display: flex;
  align-items: center;
  margin-bottom: 0.25em;
}

.footer__bottom__note__p1 img {
  width: 30px;
  height: auto;
  margin-right: 0.25em;
}

.footer__bottom__note__p2 {
  letter-spacing: -0.03em;
}

.footer__bottom__note__p2 img {
  width: auto;
  height: 12px;
}

.footer__bottom__corporate {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #333333;
  margin: 30px 0;
}

.footer__bottom__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: solid 1px #cccccc;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 30px;
}

.footer__bottom__copyright {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  color: #cccccc;
}

#page_top {
  display: none;
  position: fixed;
  right: 60px;
  bottom: 100px;
  z-index: 2;
}

#page_top img {
  width: 50px;
  height: auto;
}

.page {
  text-align: right;
  font-weight: bold;
  color: #666666;
  font-size: 18px;
  vertical-align: middle;
  margin-top: 8px;
}

.svg-icon {
  fill: #B60014;
  stroke: #B60014;
  max-width: 180px;
  margin: 0 auto;
}

.coming-soon {
  z-index: 2;
  position: absolute;
  left: 3%;
  top: -10px;
  display: block;
  width: 4em;
  height: 4em;
  background: #B60014;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  font-size: 18px;
  text-align: center;
}

.coming-soon span {
  display: block;
  width: 4em;
  height: 4em;
  color: #FFF;
  font-weight: bold;
  background: #B60014;
  -webkit-transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  font-size: 18px;
}

.coming-soon span span span {
  padding-top: 10px;
  line-height: 1.5;
  text-shadow: #FF2F2F 1px 0 6px;
}

.float-news {
  position: fixed;
  display: flex;
  align-items: center;
  border-width: 2px;
  border-style: solid;
  border-color: #bbbbbb;
  border-radius: 10px;
  background-color: #ffffff;
  bottom: 30px;
  left: 30px;
  width: auto;
  max-width: 480px;
  min-width: 240px;
  z-index: 2;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}

.float-news-link {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.float-news-link:hover {
  background-color: #d8d8d8;
  transition: .3s;
  border-radius: 8px;
}

.float-news .news-image {
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.float-news .close {
  top: -15px;
  right: -15px;
}

.news_end-btn {
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.float-news .news-col {
  padding: 0 16px;
  width: calc(100% - 64px);
}

.float-news .category-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.toc {
  background-color: #f7f7f7;
  padding-bottom: 5px;
}

.toc-item {
  margin-bottom: 5px;
  padding-left: 5px;
}

/* セクションヘッダ */
.section-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.section-header-point-none {
  justify-content: flex-start !important;
}

.section-header.pad {
  padding: 0 15px;
}

.section-header .section-header-icon {
  width: 60px;
  height: 60px;
}

.section-header h1.section-title {
  display: block;
  width: calc(100% - 60px);
  border-width: 0;
  padding: 0 8px 0 8px;
  margin: 0;
  line-height: 1.2;
}

.section-header h1.section-title-point-none {
  width: calc(100% - 60px);
}

/* marketoタグ */
#wp-top {
  width: 90%;
  margin: 0 auto;
}

/* Gamesストアモーダル */
.gamesstore-modal .container {
  background: linear-gradient(90deg, #5555EE 0%, #1111BB 100%);
  border: none;
  border-radius: 20px;
  padding: 10px 20px 20px 20px;
}

.gamesstore-modal .header {
  display: flex;
  color: #ffff00;
  margin-bottom: 15px;
}

.gamesstore-modal .header p {
  flex: 1;
  font-size: 18px;
  text-align: left;
  line-height: 1.22;
}

.gamesstore-modal .header .close {
  position: static;
  width: 28px;
  cursor: pointer;
}

.gamesstore-modal .header .close img {
  width: 100%;
}

.gamesstore-modal .games {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 650px;
}

.gamesstore-modal .games .box {
  width: 320px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(#F7F7FF, #CCCCDD);
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}

.gamesstore-modal .games img {
  width: 70px;
}

.gamesstore-modal .games p {
  font-size: 13px;
  line-height: 1.1;
  text-align: left;
  padding-left: 10px;
}

.gamesstore-modal .games .dummy {
  display: none;
}

@media only screen and (max-width: 920px) {
  .gamesstore-modal {
    max-width: 380px;
    width: 100%;
    min-width: 350px;
    padding: 0;
  }

  .gamesstore-modal .container {
    padding: 15px;
  }

  .gamesstore-modal .header .close {
    width: 25px;
    height: 25px;
  }

  .gamesstore-modal .games {
    flex-direction: column;
  }

  .gamesstore-modal .games .box {
    height: 100%;
    width: 100%;
  }

  .gamesstore-modal .games img {
    width: 50px;
  }

  .gamesstore-modal .games .dummy {
    display: block;
    font-size: 13px;
    height: calc(70px + 2.2em);
    background: #333333;
  }
}

/* gamesストアバナー */
.gamesstore-banner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 500px;
  background: #222222;
  border-radius: 10px;
  padding: 5px 0;
}

.gamesstore-banner p {
  font-size: 22px;
  color: #ffff8d;
}

.gamesstore-banner .imgs {
  margin-top: 10px;
}

.gamesstore-banner img {
  vertical-align: middle;
  width: 70px;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .gamesstore-banner img {
    width: 50px;
  }

  .gamesstore-banner p {
    font-size: 16px;
  }
}

/*-------------------------------------------------
〜 1250px
-------------------------------------------------*/
@media (max-width: 1250px) {
  .setting.new:after {
    top: -7px;
    left: 38%;
    background-size: auto 16px;
    width: 38px;
    height: 16px;
  }

}

/*-------------------------------------------------
〜 920px
-------------------------------------------------*/

@media (max-width: 920px) {
  .header-under {
    display: block;
    width: auto;
    position: absolute;
    top: 43px;
    left: 15px;
  }

  .duelist-point {
    width: 169px;
    margin-right: 0;
  }

  .header-under__title .question {
    right: inherit;
    left: 180px;
    top: 5px;
  }

  html.is-fixed,
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }

  .pt80-pc {
    display: none;
  }

  /* ヘッダ */
  .header-top .games-store {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 30px;
    margin: 6px 0;
    font-size: 13px;
    line-height: 1;
    border-radius: 5px;
    padding: 16.5px 15px;
  }

  .home-btn {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
  }

  .home-btn .home {
    display: block;
    width: 34px;
    height: 34px;
    background-image: url("/assets/img/ic_home.png");
    background-size: 34px 34px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .home-btn .cart {
    display: block;
    width: 34px;
    height: 32px;
    background-image: url("/assets/img/ic_cart.png");
    background-size: 34px 30px;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ハンバーガーメニュー */
  .menu-btn {
    display: flex;
    align-items: center;
  }

  .nav-button {
    display: block;
    cursor: pointer;
    margin: 8px;
    z-index: 20;
    position: relative;
    width: 30px;
    height: 22px;
  }

  .nav-button.alert::after {
    position: absolute;
    top: -12px;
    right: -7px;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: auto 20px;
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url(/assets/img/ic_alert.png);
  }

  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ffffff, #bbbbbb);
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .nav-button span:nth-of-type(1) {
    top: 0;
  }

  .nav-button span:nth-of-type(2) {
    top: 10px;
  }

  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }

  .nav-button.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

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

  .nav-button.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  /* グロナビ */
  nav.nav {
    display: none;
    position: fixed;
    align-content: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: wrap;
    padding: 20px;
    left: 0;
    top: 90px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: calc(100% - 50px);
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    gap: 7px;
  }

  nav.nav::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }

  nav.nav a {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4;
    width: calc((100% - 7px) / 2);
    height: 100px;
    background: linear-gradient(180deg, #f7f7f7, #ccccdd);
    border: 2px solid #aeaec1;
    border-radius: 10px;
    text-align: center;
    padding-top: 16px;
    color: #333333;
  }

  nav.nav a::before {
    position: static;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: auto 50px;
    background-position: center center;
  }

  nav.nav a:hover {
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #e6e6e6);
  }

  .pc_menu {
    display: none !important;
  }

  .sp_menu {
    display: block !important;
  }

  /* メイン */
  .main-default {
    padding: 110px 15px 0;
  }

  .main-default.nopad {
    padding: 110px 0 0 0;
  }

  .main-default.error {
    padding: 125px 15px 0;
  }


  .main-message {
    width: 400px;
  }

  .ydp h1 {
    font-size: 20px;
  }

  .ydp h2 {
    font-size: 20px;
  }

  .ydp h3 {
    font-size: 15px;
  }


  .ydp .ydp-box {
    padding: 15px;
  }

  .ydp p.mb {
    margin-bottom: 16px;
  }

  .ydp-form-row .ydp-form-title {
    font-size: 16px;
    display: block;
    text-align: left;
    padding: 0 0 8px 0;
  }

  .ydp-form-row input,
  .ydp-form-row select,
  .ydp-form-row textarea,
  .ydp-form-row .ydp-form-static {
    width: 100%;
    font-size: 16px;
  }

  .ydp-checkbox label {
    font-size: 16px;
    white-space: normal;
  }

  .ydp-button {
    font-size: 16px;
    margin: 8px 0;
    padding: 7px 15px;
  }

  .title-btn {
    font-size: 15px;
    width: 160px;
  }

  .ydp-buttons-inline {
    min-width: 80px;
    width: auto;
    margin: 8px 2px;
  }

  /* リンクグループ */
  .ydp-link-group a {
    display: block;
    font-size: 16px;
    border-width: 2px 2px 0 2px;
  }

  .ydp-link-group a:nth-of-type(1) {
    border-radius: 8px 8px 0 0;
    border-width: 2px 2px 0 2px;
  }

  .ydp-link-group a:last-of-type {
    border-radius: 0 0 8px 8px;
    border-width: 2px 2px 2px 2px;
  }


  /* フッタ */
  .border-foot {
    height: 30px;
  }

  .border-foot .border-foot-center {
    width: 100%;
    max-width: 640px;
    background-image: url(/assets/img/common/border_foot_center.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 640px auto;
  }

  .border-foot .border-foot-side {
    width: calc((100% - 640px) / 2);
    background-image: url(/assets/img/common/border_foot_side.png);
    background-repeat: repeat-x;
    background-position: left top;
    background-size: 5px auto;
  }

  .border-foot-plane {
    height: 30px;
    background-size: 5px auto;
    margin-bottom: 20px;
  }


  .footer-title {
    font-size: 30px;
  }

  .footer-inner {
    padding: 20px 20px 35px 20px;
  }

  /* Information */
  .information-list th {
    width: 100%;
    display: block;
    padding: 19px 0;
    font-weight: bold;
  }

  .information-list td {
    display: block;
    width: 100%;
    padding: 0 0 19px;
  }

  /* 外部バナー */
  .outer-banners li {
    width: 65%;
    margin: 2px auto;
  }


  /* フッターナビ */
  .footer-nav {
    margin-bottom: 20px;
  }

  .footer-nav a {
    width: 100%;
    padding: 8px 4px;
    height: 42px;
  }

  .page {
    font-size: 14px;
  }


  .coming-soon {
    width: 3.5em;
    height: 3.5em;
    top: 20px;
    left: 4%;
    font-size: 16px;
  }

  .coming-soon span {
    width: 3.5em;
    height: 3.5em;
    font-size: 16px;
  }

  .coming-soon span span span {
    padding-top: 4px;
  }

  .br-pc {
    display: none;
  }

  .float-news {
    max-width: 65%;
  }

  .copyright {
    padding: 20px 0 140px;
  }

  .menu-user_mail {
    line-height: 18px !important;
  }

  .news.alert:after {
    top: 8px;
    left: calc(50% + 30px);
    width: 20px;
    height: 20px;
    background-size: auto 20px;
  }

  .setting.new:after {
    top: 8px;
    left: 8px;
    width: 48px;
    height: 20px;
    background-size: auto 20px;
  }

  /* フッター：最下部 */
  .footer__bottom {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer__bottom__note {
    font-size: 10px;
  }

  .footer__bottom__note__p1 img {
    width: 30px;
  }

  .footer__bottom__note__p2 img {
    height: 10px;
  }

  /* ページトップボタン */
  #page_top {
    right: 15px;
    bottom: 15px;
  }
}

/*-------------------------------------------------
〜 767px
-------------------------------------------------*/
@media (max-width: 767px) {

  /* セクションヘッダ */
  .section-header.pad {
    padding: 0 10px;
  }

  .section-header .section-header-icon {
    width: 52px;
    height: 52px;
  }

  .section-header h1.section-title {
    width: calc(100% - 52px);
    font-size: 16px;
  }

  .section-header h1.section-title-point-none {
    width: calc(100% - 52px);
  }

  .sp-only {
    display: block;
  }

  .footer__bottom__logo3 {
    margin-top: 0px;
    margin-right: 13px;
  }
}

/*-------------------------------------------------
/*                                                 */
/*-------------------------------------------------*/
@media (max-width: 390px) {
  .float-news {
    padding: 5px;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 110px);
    max-width: initial;
    min-width: initial;
  }

  .float-news .category-title {
    font-size: 13px;
  }

  .float-news .news-col {
    padding: 0 8px;
  }

  .ydp-buttons-inline {
    padding: 7px 7px;
    min-width: 65px;
  }

  .hidden-button {
    display: none;
  }

  .inline-buttons {
    white-space: nowrap;
  }

  .footer-title {
    font-size: 22px;
  }

  .footer-title::after {
    background-position: 8px 0;
  }

  .outer-banners li {
    width: 100%;
    max-width: 244px;
    margin: 2px auto;
  }

  .button-box li {
    width: calc(100% / 2 - 10px);
    margin: 5px;
    white-space: nowrap;
  }

  .coming-soon {
    font-size: 14px;
    left: 5%;
  }

  .coming-soon span {
    font-size: 14px;
  }

  .coming-soon span span span {
    padding-top: 4px;
  }

  .copyright {
    padding: 20px 0 160px;
  }


  .main-message {
    width: 320px;
  }

  .large {
    width: 320px;
    padding: 8px;
  }

  .news.alert:after {
    right: 24px;

  }

  .setting.new:after {
    top: 6px;
    left: 6px;
    width: 38px;
    height: 16px;
    background-size: auto 16px;
  }
}

/* デバイスサイズごとの表示切り替え */
@media only screen and (min-width: 921px) {
  .hidePC {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .utl-hover {
    display: block;
  }

  .utl-hover:hover {
    transition: 0.3s ease-in-out;
    filter: contrast(1.25);
    transform: scale(1.025);
  }
}

/* コピーライト表記 */
main .main-copyright {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.61538;
  text-align: center;
  padding: clamp(40px, calc(40 / 375 * 100vw), 80px) 0 clamp(20px, calc(20 / 375 * 100vw), 40px);
}

main .main-copyright.is-top {
  padding-bottom: 0;
}

main .main-copyright.is-mission-list {
  background: #F0F0F0;
}

.marker-green {
  background: linear-gradient(transparent 60%, #6f6 60%);
}

.lity-hide {
  display: none !important;
}

/* ログインボーナスのモーダル */
.c-modal {
  width: clamp(300px, 80vw, 375px);
  min-height: 300px;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: #fff;
  padding: clamp(15px, 4vw, 18.75px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-modal .c-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: url(/assets/img/button_close_dark.svg) no-repeat center center/cover;
}

.c-modal.is-loader {
  border: none;
  background: none;
  position: relative;
}

.c-modal.is-loader .c-modal__close {
  display: none;
}

.c-modal.is-plain {
  width: clamp(300px, 80vw, 707px);
  color: #001122;
  border: 1px solid currentColor;
  background: #fff;
}

.c-modal.is-plain .c-modal__close {
  background: url(../img/button_close_dark.svg) no-repeat center center/cover;
}

/* くるくる loading spinner */
.c-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-top-modal-prize__pict {
  width: clamp(110px, calc(110 / 375 * 100vw), 137.5px);
  height: clamp(110px, calc(110 / 375 * 100vw), 137.5px);
  border-radius: 8px;
  padding: 5px;
  margin: 0 auto;
}

.p-top-modal-prize__pict img {
  width: 100%;
  height: auto;
}

.p-top-modal-prize__title {
  font-size: clamp(18px, calc(18 / 375 * 100vw), 21px);
  font-weight: bold;
  text-align: center;
  margin: 0.75em 0 0.75em;
}

.p-top-modal-prize__text {
  font-size: clamp(14px, calc(14 / 375 * 100vw), 16px);
  text-align: center;
  margin-top: 0.5em;
}

/* SNSバナー UseとGetの一覧ページで使用 */
.sns-banner a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 15px;
}

.sns-banner a img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .sns-banner a:hover {
    transition: 0.3s ease-in-out;
    filter: contrast(1.5);
    transform: scale(1.025);
  }
}

/* 汎用的な箇条書きスタイル */
ul.utl-list-disc {
  padding-left: 1em;
}

ul.utl-list-disc li {
  list-style: disc;
}


/* モーダル閉じるボタンを改変 */
.lity-content .ydp-box {
  position: relative;
}

.lity-content .ydp-box .close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer !important;
}

.lity-content .ydp-box .close img {
  width: 100%;
}

/* モーダルが開いているときは背景を固定 */
.modal-fixed {
  /* overflow: hidden; */
  overflow: clip;
  overscroll-behavior: none;
}

html:has(body.modal-fixed) {
  overscroll-behavior: none;
}


/* リンク色・下線 */
a.link-blue-underline {
  color: #5566D1;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  a.link-blue-underline:hover {
    transition: 0.3s ease-in-out;
    filter: contrast(3);
  }
}