@charset "UTF-8";
/* ========================================
Elements
======================================== */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Noto Sans", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 14px;
  background: url(/_materials/img/common/bg_body.jpg);
  line-height: 1.2;
}

html{color:#000;}

h2 {
  margin: 0 0 0.5em;
  padding: 4px 1em;
  font-size: 14px;
  background-color: #e7f2ff;
  border-left: 3px #6a8bb9 solid;
}

a {
  text-decoration: none;
}

/* ========================================
Layout
======================================== */
.container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 1em;
  display: grid;
  grid-template-areas: "aside banner banner" "aside main catch";
  grid-template-columns: 260px auto 240px;
  grid-template-rows: 220px auto;
  gap: 10px 12px;
  background: #fff;
}
@media screen and (max-width: 960px) and (min-width: 770px) {
  .container {
    grid-template-rows: auto;
    grid-template-areas: "aside banner" "aside main" "aside catch";
  }
}
@media screen and (max-width: 769px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "banner" "main" "aside" "catch";
  }
}
.banner_area {
  grid-area: banner;
}

.main_content {
  grid-area: main;
  container: main/inline-size;
}

.aside {
  grid-area: aside;
  container: aside/inline-size;
}

.catch_box {
  grid-area: catch;
}

/* ========================================
Common
======================================== */
@media screen and (min-width: 961px) {
  .pc-del {
    display: none;
  }
}
@media screen and (max-width: 960px) and (min-width: 770px) {
  .tub-del {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .sp-del {
    display: none;
  }
}
.contents-inner {
  width: 95%;
  margin: 0 auto;
}

.btn {
  margin: 3px auto;
  width: 98%;
}
.btn + .btn {
  margin-left: 2%;
}
.btn a {
  display: block;
  padding: 1em 0.5em;
  text-align: center;
  border-radius: 8px;
  line-height: 1.2;
  font-weight: bold;
}

.default a {
  background: #3d7ad0;
  color: #fff;
}

.beginner a {
  background: #1fb141;
  color: #fff;
}

.download a {
  background: #fdc433;
}

/* ========================================
Header Navigation
======================================== */
.header {
  background: #3d7ad0;
}
.header_inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 1em;
}
@media screen and (max-width: 769px) {
  .header_inner {
    padding: 0;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav_list-item a {
  display: inline-block;
  padding: 0.5em 1em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}

/* PC only */
@media screen and (min-width: 769px) {
  .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
  }
  .nav_list-item:not(:last-child) {
    border-right: 1px solid #84b7ff;
  }
  .nav_list-item a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    margin-top: 2px;
    background-color: #fff;
  }
  .nav_list-item a:hover::after {
    -webkit-transition: all 400ms 0s ease;
    transition: all 400ms 0s ease;
    width: 100%;
  }
}
/* SP only */
@media screen and (max-width: 769px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 15;
    background: -webkit-gradient(linear, left bottom, left top, from(#53a9df), to(#056DFF));
    background: linear-gradient(0deg, #53a9df, #056DFF);
  }
  .nav {
    position: relative;
    top: 0;
    left: 0;
    height: 0vh;
    overflow-y: scroll;
    scrollbar-width: none !important;
    -webkit-transition: all 100ms 0s ease;
    transition: all 100ms 0s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav_list {
    margin-bottom: 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav_list-item {
    text-align: center;
    font-size: 5vw;
  }
  .nav.panelactive {
    height: 100vh;
  }
  .nav::-webkit-scrollbar {
    width: 0px;
  }
  /* open button */
  .nav-openbtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 80px;
    height: 80px;
    background: #3d7ad0;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
  }
  .nav-openbtn span {
    position: absolute;
    left: 28%;
    width: 44%;
    height: 3px;
    display: inline-block;
    border-radius: 2px;
    background: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .nav-openbtn span:nth-of-type(1) {
    top: 36%;
  }
  .nav-openbtn span:nth-of-type(2) {
    bottom: 36%;
  }
  .nav-openbtn.active span:nth-of-type(1) {
    top: 40%;
    left: 27%;
    -webkit-transform: translateY(7px) rotate(-45deg);
            transform: translateY(7px) rotate(-45deg);
    width: 46%;
  }
  .nav-openbtn.active span:nth-of-type(2) {
    bottom: 40%;
    left: 27%;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 46%;
  }
}
/* SearchBox */
#searchBox {
  width: 20em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.textBox {
  border: none;
  border-radius: 3px;
  width: 78%;
  padding: 0.3em 0.5em;
  border: 1px #ccc solid;
}
.textBox:focus {
  outline: none;
  background-color: #ffffcc;
  border: 1px #3d7ad0 solid;
}

#searchBox .searchBtn {
  width: 3em;
  padding: 0.3em 0.5em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #3d7ad0;
  color: #fff;
  border: 1px #fff solid;
}

@media screen and (max-width: 1100px) {
  .nav_list {
    font-size: 1.45vw;
  }
  #searchBox {
    width: 25vw;
  }
  #searchBox .searchBtn {
    width: 20%;
  }
  .textBox {
    width: 75%;
  }
}
@media screen and (max-width: 769px) {
  #searchBox {
    width: 20em;
    font-size: 3vw;
  }
}
/* ========================================
Hero Area
======================================== */
.hero {
  display: grid;
}
.hero_inner {
  grid-area: 1/1/2/2;
  width: min(100%, 1100px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero_inner .logo_ro {
  padding: 0.5em;
}
.hero .keyvisual-wrap {
  grid-area: 1/1/2/2;
}
.hero .keyvisual-wrap img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1100px) {
  .hero .keyvisual-wrap img {
    width: 100%;
    height: 20vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .logo_ro {
    width: 30%;
  }
}
/* ========================================
Main
======================================== */
.banner_area-outer {
  position: relative;
  width: 800px;
}
@media screen and (max-width: 1100px) {
  .banner_area-outer {
    width: calc(94vw - 260px);
  }
}
@media screen and (max-width: 769px) {
  .banner_area-outer {
    width: 92vw;
  }
}
.banner_area-inner {
  position: relative;
}
.banner_area .swiper {
  width: 85%;
}
.banner_area .swiper-wrapper {
  width: 100%;
  height: auto;
}
.banner_area .swiper-slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 13/7;
}
.banner_area .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner_area .swiper-pagination-bullets {
  position: static;
  margin-top: 0.5em;
}
.banner_area .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  cursor: pointer;
}
.banner_area .swiper-button-prev,
.banner_area .swiper-button-next {
  color: #3d7ad0;
}
@media screen and (max-width: 769px) {
  .banner_area .swiper-button-prev {
    left: -0.5em;
  }
  .banner_area .swiper-button-next {
    right: -0.5em;
  }
}

/* Shop banner */
.shop_banner-outer {
  position: relative;
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .shop_banner-outer {
    width: 60vw;
  }
}
@media screen and (max-width: 769px) {
  .shop_banner-outer {
    width: 92vw;
  }
}
.shop_banner-inner {
  position: relative;
}
.shop_banner .swiper {
  width: 85%;
}
.shop_banner .swiper-wrapper {
  width: 100%;
  height: auto;
}
.shop_banner .swiper-slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 13/7;
}
.shop_banner .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop_banner .swiper-pagination-bullets {
  position: static;
  margin-top: 0.5em;
}
.shop_banner .swiper-pagination-bullet {
  width: 0.8em;
  height: 0.8em;
  cursor: pointer;
}
.shop_banner .swiper-button-prev,
.shop_banner .swiper-button-next {
  color: #3d7ad0;
}
@media screen and (min-width: 961px) {
  .shop_banner .swiper-button-prev::after,
  .shop_banner .swiper-button-next::after {
    font-size: 1.5em;
    font-weight: bold;
  }
}
.shop_banner .swiper-button-prev {
  left: -0.5em;
}
.shop_banner .swiper-button-next {
  right: -0.5em;
}

.shop_area .store_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop_area .store_btns li {
  margin: 0 1%;
}
.shop_area .store_btns li img:hover {
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}

/* Pickup */
.pickup {
  margin-bottom: 16px;
  line-height: 1.4;
}
.pickup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.pickup_list li {
  width: 33%;
}
.pickup_list-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pickup_list-ttl {
  margin-bottom: 4px;
  padding: 2px;
  background: #e7f2ff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .pickup_list-ttl {
    font-size: 2.5vw;
  }
}
.pickup_list-img {
  min-width: 36px;
}
.pickup_list-img img {
  width: 100%;
}
.pickup_list-txt {
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #3d7ad0;
}
@media screen and (max-width: 769px) {
  .pickup_list-txt {
    display: none;
  }
}

/* News */
.article-list {
  width: 98%;
  margin: 0 auto;
}
.article-list__row a {
  display: block;
  padding: 0.6em 0;
}
.article-list__row a:hover {
  background: #eee;
}
.article-list__row:not(:last-child) {
  border-bottom: 1px dashed #d0d6dc;
}

.article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article__info dt {
  white-space: nowrap;
}
.article__info dd {
  padding: 2px 0;
  font-size: 13px;
  font-weight: bold;
  color: #3d7ad0;
}
@container main (max-width: 500px) {
  .article__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .article__info dt {
    margin-bottom: 4px;
  }
}

.article__date {
  display: inline-block;
  width: 8em;
  margin-right: 0.5em;
  padding: 2px 0;
  font-size: 12px;
  color: #333;
}

.article__category {
  display: inline-block;
  min-width: 7em;
  margin-right: 0.5em;
  padding: 2px 0;
  border-radius: 5px;
  text-align: center;
  color: #222;
  font-size: 11px;
}
.article__category.event {
  background: #fcdce9;
}
.article__category.playinfo {
  background: #ffbaba;
}
.article__category.campaign {
  background: #fde1c7;
}
.article__category.maintenance {
  background: #c8e9f9;
}
.article__category.shop {
  background: #cee7cc;
}
.article__category.notice {
  background: #ddcce7;
}

.btn_more a {
  display: block;
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: 1em auto 0;
  padding: 0.5em 2em;
  color: #fff;
  background: #3d7ad0;
  border-radius: 2em;
}

/* ========================================
aside
======================================== */
/* Login */
iframe#login {
  width: 270px;
  height: 380px;
}

/* Tool */
ul.tools_list {
  width: 94%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px 14px;
}
ul.tools_list li {
  margin: 0;
  padding: 0;
  aspect-ratio: 1/1;
}
ul.tools_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.3em;
  background: #3d7ad0;
  border-radius: 8px;
  color: #fff;
}
ul.tools_list li a:hover {
  background: #00AAEC;
}
ul.tools_list li span {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  /* ul.tools__list {
    grid-template-columns: repeat(4, 1fr);
  } */
}
/* RAGホーダイ */
.ragholist {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
  font-size: 12px;
}

.ragholist span {
  display: inline-block;
  min-width: 3.5em;
  margin: 0 0.5em;
  padding: 2px;
  text-align: center;
  font-size: 0.8em;
  background: #aadafc;
}

.list_deco li {
  padding: 0.5em 0.4em;
  border-bottom: 1px dashed #d0d6dc;
}
.list_deco li a {
  display: inline-block;
  color: #3d7ad0;
}

/* ========================================
Catch
======================================== */
.catch_list li {
  margin-bottom: 0.5em;
}
.catch_list.bnr_list {
  width: min(98%, 300px);
  margin: 0 auto;
}

.sns_list li {
  padding: 0.5em 0.4em;
  border-bottom: 1px dashed #d0d6dc;
}
.sns_list li a {
  display: inline-block;
  color: #3d7ad0;
}
.sns_list .icon {
  display: inline-block;
  width: 2em;
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  .sns_list .icon {
    width: min(15vw, 80px);
  }
}
.sns_list .icon img {
  width: 100%;
}
@media screen and (max-width: 769px) {
  .sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sns_list li {
    border-bottom: none;
  }
  .sns_list .sns_txt {
    display: none;
  }
}

.article_list li {
  margin-bottom: 8px;
}

/* ========================================
定期メンテナンス日程
======================================== */
.info_mainte {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: 1em auto;
  padding: 0.5em;
  font-size: 12px;
  background: lightgrey;
}
.info_mainte dt {
  padding: 0.5em;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  border-bottom: 1px #999 solid;
}
.info_mainte dd {
  padding: 0.5em;
}
.info_mainte .mainte_date {
  font-size: 11px;
}
@media screen and (min-width: 961px) {
  .info_mainte dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .info_mainte dt {
    border-bottom: none;
    border-right: 1px #999 solid;
  }
}

/* ========================================
Footer
======================================== */
.footer {
  padding: 10px;
  background: #000;
}

.footer_inner {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: auto;
  font-size: 0.8em;
  color: #fff;
}

.footer_inner .policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1em auto;
}
.footer_inner .policy li {
  padding: 0 1em;
}
.footer_inner .policy li:not(:last-child) {
  border-right: 1px #fff solid;
}

.copyright {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: auto;
}

a.ex_link {
  line-height: 1;
}
a.ex_link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 2px;
}
a.ex_link.white::after {
  background: url(/_materials/img/common/icon-external-white.png) no-repeat center bottom;
}
a.ex_link.color::after {
  background: url(/_materials/img/common/icon-external-color.png) no-repeat center bottom;
}

/* ========================================
Modifier
======================================== */
.mod-mb70 {
  margin-bottom: 70px;
}

.mod-mt40 {
  margin-top: 40px;
}

.mod-mb1em {
  margin-bottom: 1em;
}

.mod-mb2em {
  margin-bottom: 2em;
}

.mod-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}