@charset "UTF-8";
/* 簡易リセットCSS */
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Kaisei Opti', serif !important;
}

.particle-network-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events:none;
  z-index: 5;
  opacity: 0.6;
}
.particle-network-animation::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  opacity: 0.2;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

li,
ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scrollbar-width: none;
}


html::-webkit-scrollbar {
  display: none;
  /* 针对Webkit浏览器 */
}

section {
  transition: 0.6s;
}

body.top_page {
  position: relative;
  width: 100%;
  color: var(--color_text);
  font-size: .9375rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: var(--color_bg);
  -webkit-text-size-adjust: 100%;
  overflow-y: hidden;
  background:url(../img/pc/bg2.jpg) no-repeat center center;
  background-size: cover;
  background-attachment:fixed;
  overflow-x: auto;
}

header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  height: 3.75rem;
}

.sp_header {
  display: none;
}

header nav {
  width: 100%;
  position: relative;
  transition: 0.3s;
  background: #f3e5cf;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: .125rem solid #544a49;
  margin-top: 0;
  border-radius: 0 0 1.5625rem 1.5625rem;
  display: flex;
}

header nav:after {
  content: "";
  width: 100%;
  height: 2.8125rem;
  background: url(../img/nav.png) no-repeat center top;
  background-size: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

#header #menu_wrap {
  display: flex;
  justify-content: center;
  height: 4.375rem;
  z-index: 10;
}

#header .menu {
  width: auto;
  position: relative;
  display: flex;
  justify-content: center;
}

#header .menu>li {
  display: flex;
  align-items: center;
  padding: 0px 1.5rem;
  height: 100%;
  margin: 0 0;
  transition: all 0.3s;
  font-size: 1.5625rem;
}

#header .menu>li a {
  color: #3a3231;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.8rem;
}

#header .menu>li a:hover {
  color: #de0613;
  font-weight: border;
}

#header .menu>li.menu_title {
  display: none;
}

#header .menu .menu_top {
  /* display: none; */
}

#header .menu>li .menu>li a:hover {
  color: #ea121f;
}

#header ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

#header ul.menu__second-level li {
  text-indent: 0;
  text-align: center;
  line-height: 2.5rem;
  height: 2.5rem;
}

#header .menu>li.menu__single {
  position: relative;
}

#header li.menu__single ul.menu__second-level {
  position: absolute;
  top: 0rem;
  left: -1rem;
  width: 11rem;
  /* padding:0 1rem; */
  background: #f3e5cf;
  transition: all 0.2s ease;
  border:1px solid #544a49;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
#header li.menu__single ul.menu__second-level li a{
  font-size: .875rem;
  color:#3a3231;
  white-space:nowrap;
}

#header li.menu__single ul.menu__second-level li a:hover {
  color: #ea121f;
  font-weight: bolder;
  font-size: 1rem;
}

#header li.menu__single:hover ul.menu__second-level {
  top: 4.375rem;
  visibility: visible;
  opacity: 1;
}

#header .menu_open {
  display: none;
}

#header .sns{
  width:auto;
  height:3.75rem;
  display:flex;
  align-items: center;
  position: absolute;
  right: 6rem;
  z-index: 10;
}
#header .sns a{
  width: 2.5rem;
  height: 2.5rem;
  border-radius:0.5rem;
  margin:0 0.5rem;
  box-sizing:border-box;
}
#header .sns a.x{
  background:#000;
  padding:0.3rem;
}
#header .sns a.youtobe{
  background:#ff0000;
}

.top_icon,
.menu,
.menu_open {
  display: none;
}

#spec footer {
  background: #ffffff;
  height: 8.125rem;
  width: 100%;
  z-index: 101;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-weight: 100;
}

footer .company_info {
  padding: 1rem;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}

footer .company_info img {
  width: 11.625rem;
  height: 4.3125rem;
}

footer .company_info div {
  margin: 0rem 0rem 0rem 2.5rem;
}

footer .company_info ul {
  margin-bottom: 0rem;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .company_info ul li {
  margin: 0 .3125rem;
  padding-left: .3125rem;
  border-left: .0625rem solid #cccccc;
}

footer .company_info ul li a {
  color: #000;
  text-decoration: none;
}

footer .company_info ul li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

footer .company_info ul li:first-child {
  border: none;
  padding-left: 0rem;
  margin: 0 .3125rem 0 0;
}

footer p {
  width: 100%;
  height: 1.8125rem;
  text-align: center;
  margin: .3125rem 0 0;
  color: #000;
  font-size: 1rem;
}

/* Google Fonts読み込み */
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #2d2c41;
}

/* スライド */
.vertical-slider__slide {
  height: 100%;
  width: 100%;
  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;
  font-weight: bold;
  color: #fff;
  z-index: -3;
}

.vertical-slider__slide>section {
  position: relative;
  z-index: 10;
}

/* SP時の文字サイズ調整 */
@media (max-width: 599px) {
  .vertical-slider__slide {
    font-size: 16vw;
  }
}

#top {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-image: url(../img/pc/top_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}

#top .game_logo {
  position: absolute;
  width: 21rem;
  height: auto;
  left: 5rem;
  top: 8rem;
}

.top_start,.mainte {
  width: 18rem;
  height:18rem;
  display: block;
  position: absolute;
  left: 65%;
  top: 65%;
   transition: transform 0.5s ease;
}
.top_start{
  background: url(../img/pc/start.png) no-repeat center center;
  background-size:100%;
}
.mainte{
  background:url(../img/pc/maintenance.png) no-repeat center center;
  background-size:100%;
}

.top_start:hover {
  background:url(../img/pc/start_on.png) no-repeat center center;
  background-size:100%;
  transform: scale(1.05); 
}

.top_start img,.mainte img {
  width: 100%;
}

.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
}

.hide2 {
  display: none;
}

.hide3 {
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*=============================== news =============================  */

#news_area {
  width: 100%;
  /* background: url(../img/pc/bg2.jpg) no-repeat center center; */
  /* background-size: cover; */
  z-index: 0;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

#news_area h1 {
  width: 31rem;
  margin: 0px auto 2rem;
  z-index: 100;
  position: sticky;
}

#news_area h1 img {
  width: 100%;
}

#news_area #banner {
  background: transparent;
  width: 100%;
  max-width: 46.25rem;
  height: auto;
  margin: 1.25rem auto .3125rem;
  overflow: hidden;
}

#news_area #banner .swiper-slide {
  width: 46.25rem;
  height: 16.5625rem;
}

#news_area #banner a {
  width: 46.25rem;
  height: 16.5625rem;
  display: block;
}

#news_area #banner img {
  display: block;
  width: 100%;
}

#news_area #banner .banner-pagination {
  width: 100%;
  text-align: center;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: 0.5rem 0;
}

#news_area #banner .banner-pagination .swiper-pagination-clickable,
#news_area #banner .banner-pagination .swiper-pagination-bullet {
  width: 1rem !important;
  height: 1rem !important;
  background-color: #ffffff !important;
  display: inline-block;
  line-height: 0;
  /* border: .125rem solid #fff; */
  border-radius: 5rem;
  margin: 0 .3125rem;
  opacity: 1;
}

#news_area #banner .banner-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #770001, #f40001);
}

#news_area .leftbanner2{
  /* width: 100%; */
  width: 46.25rem;
  display:flex;
  margin: 1rem auto;
  justify-content: space-between;
}

#news_area .leftbanner2 li a{
  width:15.0625rem;
  height:4.8125rem;
  display: block;
}

#news_area .leftbanner2 li a img{
  width:100%;
}

#news_area #news_wrapper {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 75rem;
  background-size: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
}

#news_area #news {
  position: relative;
  border-radius: 0;
  padding: .125rem;
  width: 46.25rem;
  max-height: 21.875rem;
  margin: 0 auto;
  overflow: hidden;
}

/* #news_area #news:after {
  /* content: ""; */
  /* display: block; */
  /* position: absolute; */
  /* top: .125rem; */
  /* left: .125rem; */
  /* width: calc(100% - .25rem); */
  /* height: 100%; */
  /* max-height: 21.875rem; */
  /* border-radius: 0; */
  /* background: #ffffffd4; */
} */

#news_area #news .news_body {
  position: relative;
  z-index: 2;
  min-height: 20.625rem;
}

#news_area #news .news_body .notice_tabs_list {
  display: flex;
  align-items: center;
  height: 3.0625rem;
  border-radius: 0;
}

#news_area #news .notice_tabs_list ul {
  padding: 0rem .5rem;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
}

#news_area #news .notice_tabs_list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/tab.png) no-repeat center center;
  background-size:100%;
  color: #3a3231;
  height: 2.25rem;
  width: 6.9375rem;
  font-size: 1.25rem;
  font-weight: 900;
}

#news_area #news .notice_tabs_list ul li.active {
  background: url(../img/tab_on.png) no-repeat center center;
  background-size:100%;
  color: #db0008;
}

#news_area #news .notice_tabs_list ul li:nth-of-type(5) {
  margin-right: 0;
}

#news_area #news .notice_tabs_list ul li:hover {}

#news_area #news .tabs {
  flex: 1;
  width: 100%;
  padding: 1rem 1rem;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

#news_area #news .tabs>ul>li {
  position: relative;
  display: none;
  overflow: hidden;
  width: 100%;
  padding: 0 0;
}

#news_area #news .tabs>ul>li ul {
  margin-bottom: .3125rem;
  height: 13.75rem;
  overflow: hidden;
}

#news_area #news .tabs>ul>li ul li {
  display: flex;
  flex-direction: row;
  border-bottom: .0625rem solid #182b42;
  align-items: center;
  padding: .1875rem 0;
  color: #333;
}

.icon {
  display: inline-block;
  background-size: cover;
  width: 6.25rem;
  height: 1.5rem;
  margin: 0 .5rem 0 0;
  aspect-ratio: 4/1;
  transform-origin: 0 50%;
}

.ic_type22 {
  background: #fff url(../img/label_event.png) no-repeat center center/cover;
}

.ic_type21 {
  background: #fff url(../img/label_notice.png) no-repeat center center/cover;
}

.ic_type23 {
  background: #fff url(../img/label_update.png) no-repeat center center/cover;
}

.ic_type24 {
  background: #fff url(../img/label_maintenance.png) no-repeat center center/cover;
}

.ic_type26,.ic_type218 {
  background: #fff url(../img/label_tips.png) no-repeat center center/cover;
}

#news_area #news .tabs>ul>li ul li:nth-child(n+7) {
  display: none;
}

#news_area #news .tabs>ul>li ul li .t1 {
  width: 74%;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.125rem;
}

#news_area #news .tabs>ul>li ul li .t3 {
  color: #333;
  font-size: .75rem;
  white-space: nowrap;
  font-weight: normal;
}

#news_area #news .tabs>ul>li ul li a {
  color: #333;
  text-decoration: none;
  width: 16.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#news_area #news .tabs>ul>li ul li a:hover {
  color: #125c9d;
  font-weight: bold;
}

#news_area #news .morebtn {
  width: 100%;
  height: 1.25rem;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#news_area #news .morebtn a {
  display: inline-block;
  padding: .3rem .375rem;
  background-color: #7f0101;
  color: #fff;
  border-radius: 0;
  font-size: .75rem;
  text-decoration: none;
  line-height: 1;
}

#news_area #news .morebtn a:hover {
  background-color: #e22c2c;
  color: #ffffff;
}



/*=============================== world=============================  */

#world {
  width: 100%;
  background: url(../img/pc/world/world_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 5rem 0;
  /* margin-top: 10rem; */
  overflow: hidden;
}

#world:after{
  content:"";
  width:100%;
  max-width: 60rem;
  height:100%;
  background: url(../img/pc/world/character.png) no-repeat center top;
  background-size: 100%;
  position:absolute;
  left: 50%;
  transform: translateX(0rem);
  top: 4rem;
  animation: gentle-float 3s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

#world h1 {
  width: 31rem;
  height: auto;
  margin: 0rem auto 3.125rem;
  z-index: 100;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
}

#world h1 img {
  width: 100%;
}

#world .world_text {
  width: 55.6875rem;
  display: block;
  margin: 0 auto;
  transform: translate(-8rem,0%);
  z-index: 1;
  position: sticky;
}

#world .world_text img {
  width: 100%;
}

/*=============================== charactar=============================  */

/* chara */
#chara {
  width: 100%;
  z-index: 0;
  position: relative;
  padding: 6.25rem 0;
  scroll-margin-top: 2rem;
  background: url(../img/pc/chara/chara_bg.jpg) no-repeat center center;
  background-size: cover;
}

#chara h1 {
  width: 34rem;
  height: auto;
  margin: 0px auto 1.125rem;
  z-index: 100;
  position: sticky;
}

#chara h1 img {
  width: 100%;
}

#chara .chara_img {
  max-width: 60rem;
  height: 100%;
  margin: 2rem auto 0;
  width: 90%;
}

#chara .chara_img img {
  width: 100%;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}

#chara .chara_pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem auto 0;
  z-index: 10;
  /* position: sticky; */
  /* left: 50%; */
  /* transform: translate(-50%, 1rem); */
  align-items: center;
}

#chara .chara_pagination .swiper-pagination-bullet-active {
  filter: grayscale(0%);
  width: 6rem;
  height: 6rem;
}

#chara .chara_pagination span {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0px 0.25rem 0 !important;
  opacity: 1;
  font-size: 0;
  background-size: 100% !important;
  filter: grayscale(100%);
}

#chara .chara_pagination span:nth-child(1) {
  background: url(../img/pc/chara/c1.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(2) {
  background: url(../img/pc/chara/c2.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(3) {
  background: url(../img/pc/chara/c3.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(4) {
  background: url(../img/pc/chara/c4.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(5) {
  background: url(../img/pc/chara/c5.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(6) {
  background: url(../img/pc/chara/c6.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(7) {
  background: url(../img/pc/chara/c7.png) no-repeat center;
}

#chara .chara_pagination span:nth-child(8) {
  background: url(../img/pc/chara/c8.png) no-repeat center;
}



#chara .prev,
#chara .next {
  position: absolute;
  width: 0.84rem !important;
  height: 0.77rem !important;
  top: 50%;
}

#chara .prev {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: 100% !important;
  left: 50% !important;
  transform: translateX(-6.8rem);
}

#chara .next {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  left: auto;
  right: 50%;
  transform: translateX(6.8rem);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '';
}

#feature {
  width: 100%;
  z-index: 0;
  position: relative;
  padding: 6.25rem 0;
  scroll-margin-top: 2rem;
  /* background: url(../img/pc/feature/feature_bg.jpg) no-repeat center center; */
  background-size: cover;
}

#feature h1 {
  width: 34rem;
  height: auto;
  margin: 0px auto 1.125rem;
  z-index: 100;
  position: sticky;
}

#feature h1 img {
  width: 100%;
}

#feature .feature-slider {
  position: relative;
  z-index: 2;
  min-width: 62.5rem;
  width: 90%;
  max-width: 87.5rem;
  margin: 3.125rem auto 0 auto;
  padding: 0 0 3.125rem 0 !important;
  filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.3));
}

#feature .feature-slider .swiper-slide {
  width: 60.4375rem;
  margin: 0 auto;
  /* opacity: 0.4; */
  overflow: hidden;
  transition: 0.7s;
  transform: scale(0.8);
}

#feature .feature-slider .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000000b0;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#feature .feature-slider .swiper-slide img {
  width: 100%;
}

#feature .feature-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

#feature .feature-slider .swiper-slide-active:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000000;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#feature .feature_pagination {
  width: 100%;
  text-align: center;
  line-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#feature .feature_pagination .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  display: inline-block;
  border-radius: 100%;
  opacity: 1;
  background: #ffffff;
}

#feature .feature_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff2e2f;
  width: 1.875rem;
  height: .9375rem;
  border-radius: .625rem;
}

#feature .feature_pagination span {
  margin: 0 .5rem;
}

#feature .feature_pagination span:focus {
  outline: -webkit-focus-ring-color auto 0rem;
}

#feature .prev svg {
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, 0);
  display: flex;
  z-index: 100;
  fill: #182b42;
  cursor: pointer;
  display: none;
}

#feature .next svg {
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translate(-50%, 0);
  display: flex;
  z-index: 100;
  fill: #182b42;
  cursor: pointer;
  display: none;
}

#feature .next svg:hover,
#feature .prev svg:hover {
  fill: #2d4f78;
}

/*=============================== spec =============================  */

#spec {
  width: 100%;
  background: linear-gradient(90deg, #302a2a,#544a49,#302a2a);
  background-size: 100%;
  padding: 3.125rem 0;
  scroll-margin-top: 0rem;
  z-index: 6;
  position: sticky;
}

#spec h1 {
  width: 22rem;
  /* height: 1rem; */
  margin: 3rem auto 2rem;
  z-index: 100;
  position: sticky;
}

#spec h1 img {
  width: 100%;
}

#spec .spec_info{
  display:flex;
  flex-direction: column;
  align-items: center;
}

#spec .spec_inner {
  width: 68.75rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

#spec .spec_inner img {
  display: block;
  width: 18rem;
  border-radius: 2rem;
}

#spec .spec_inner .spec_table {
  width: 72%;
  font-size: 1.2rem;
  border-collapse: separate;
  border-spacing: .3rem;
  text-shadow: 0 1px 3px rgb(0 0 0);
  height: 18.75rem;
  color: #fff;
}

#spec .spec_inner .spec_table th {
  border: 0rem solid #fff;
  padding: .1875rem;
  width: 8.75rem;
  text-align: center;
  margin-right: .1875rem;
  vertical-align: middle;
  background-color: rgb(0 0 0 / 45%);
}

#spec .spec_inner .spec_table td {
  vertical-align: middle;
  padding-left: 1em;
  background-color: rgb(0 0 0 / 45%);
  font-weight: bold;
  font-size: 1.1rem;
}

#spec .spec_inner .spec_table td span {
  font-size: 70%;
}

#spec .assist{
  display:block;
  margin:2rem 0;
  width: 68rem;
}

#spec .assist img{
  width:100%;
}

.hide4 {
  display: none;
}

#foot_link,#foot_link_mainte {
  position: fixed;
  bottom: 12.375rem;
  right: 0;
  z-index: 2;
  transition: 0.3s;
  width: 12.5rem;
  height: 12.5rem;
}

#foot_link img,#foot_link_mainte img {
  width: 100%;
}

#foot_link img:hover {
  content: url(../img/start2_on.png);
  scale: 1.01;
}

@media only screen and (min-width:2000px) {
  html{
    font-size: 18px;
  }
}

@media only screen and (min-width:1600px) and (max-width:1919px) {
  html{
    font-size: 15px;
  }

} 

@media only screen and (min-width:1440px) and (max-width:1599px) {
  html{
    font-size: 13px;
  }
} 


@media only screen and (min-width:1334px) and (max-width:1439px) {
  html{
    font-size: 14px;
  }
} 

@media only screen and (min-width:1280px) and (max-width:1333px) {
  html{
    font-size: 13px;
  }
} 

@media only screen and (min-width:1100px) and (max-width:1279px) {
  html{
    font-size: 13px;
  }  
} 
@media only screen and (min-width:700px) and (max-width:1099px) {
  html{
    font-size: 13px;
  }
} 
@media only screen and (max-width:1000px) and (max-height:500px) {
  html{
    font-size: 10px;
  }
  .top_start,.mainte {
  width: 16rem;
  height:16rem;
  display: block;
  position: absolute;
  left: 65%;
  top: 60%;
   transition: transform 0.5s ease;
}
} 

/* mobage */

.mbga_wrapper {
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 0%;
  filter: drop-shadow(-0.3125rem 0rem .625rem rgba(0, 0, 0, 0.33));
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  font-size: 1.75rem;
  /* border-top: .0625rem solid #fff; */
}

#mbga_game_start {
  display: flex;
  justify-content: space-around;
  padding: 2% 0;
  font-size: .75rem;
  color: #fff;
  text-shadow: 0rem 0rem .1875rem #441300;
  border-bottom: 1px solid #fff;
}

#mbga_game_start a {
  color: #ff0023;
}

#mbga_game_start>div {
  /*margin: 0 2.5%;*/
}

#mbga_game_start .new_start,
#mbga_game_start .id_start {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto .625rem;
}

#mbga_game_start .new_start img,
#mbga_game_start .id_start img {
  width: min(31.875rem, 100%);
}

#mbga_login_start {
  margin: 0 auto;
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
}

#mbga_game_start p {
  margin: .3125rem !important;
  padding: 0;
  font-size: 1.5rem;
}

#gamestart_link_mbgasp {
  display: block;
  text-align: center;
  padding: 3% 0;
  border-bottom: 1px solid #fff;
}

#float {
  background: #000000;
  z-index: 10000;
}

#float ul {
  display: flex;
  justify-content: space-around;
}

#float ul li {
  padding: 1% 0;
  font-size: 1.5rem;
}

#float ul li a {
  color: #ffffffb8;
  text-decoration: underline;
}



/*----------------------------------------------------------------------
          2nd page
----------------------------------------------------------------------*/
input:focus {
  outline: none;
}

#individual {
  background-image: url(../img/pc/bg3.jpg);
  background-attachment: fixed;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: calc(var(--vh, 1vh) * 80);
}

.footer_hide {
  position: unset;
  background: #fff;
}

#individual::-webkit-scrollbar {
  width: 0rem;
}

#individuall::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: .3125rem;
}

#individual::-webkit-scrollbar-thumb {
  background-color: #625c53;
  border-radius: .3125rem;
}

#individual::-webkit-scrollbar-thumb:hover {
  background-color: #65472d;
}

#individual header {
  background-image: none;
  height: 3.75rem;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 0;
  margin: 0 0 -15.625rem 0;
}

#individual header #header {
  position: fixed;
  z-index: 10;
  width: 100%;
}

#individual main {
  padding: 4.375rem 0 4.6875rem 0;
}

#individual main .logo {
  width: 12%;
  margin: 0 auto;
  position: fixed;
  top: .625rem;
  z-index: 11;
  left: 9%;
  line-height: 0;
}

#individual main .logo img {
  width: 100%;
}

#individual main #news_list {
  width: 55rem;
  /* max-width: 53rem; */
  margin: 0 auto;
}

#individual main #news_list .back_btn a {
  margin: .9375rem auto 0;
  text-align: center;
  display: block;
  width: 6.875rem;
  color: #fff;
  padding: .3125rem .625rem;
  background: linear-gradient(0deg, #770001, #f40001);
  text-decoration: none;
  font-size: 1rem;
  border-radius: .3125rem;
}

#individual main #news_list .back_btn a:hover {
  background: linear-gradient(to top, #f40001, #770001);
}

#individual main #news_list #genre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1.25rem auto;
}

#individual main #news_list #genre li {
  /* background: linear-gradient(#ecd7ac, #f9ead3); */
  -webkit-filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.5));
  filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.5));
  font-weight: bold;
  text-align: center;
  /* width: 7.5rem; */
  border-radius: .3125rem;
  /* padding: .625rem .3125rem; */
  margin: .625rem;
  font-size: 1.125rem;
}

#individual main #news_list #genre li a {
  background: linear-gradient(#f3e5cf, #fdfaf5);
  border-radius: .3125rem;
  padding: .625rem .3125rem;
  width: 7.5rem;
  display: block;
  color: #3a3231;
  text-decoration: none;
}

#individual main #news_list #genre li a:hover {
  color: #fff;
  background: linear-gradient(#770001, #f40001);
}

#individual main #news_list>#news_body {
  margin-top: 1.875rem;
}

#individual main #news_list>#news_body>li:before,
#individual main #news_list>#news_body>li:after {
  content: " ";
  display: block;
  position: absolute;
}

#individual main #news_list>#news_body li {
  font-size: 1.125rem;
  /* border: .1875rem solid #ffffff; */
  /* border-radius: .625rem; */
  width: 100%;
  /* border-style: double; */
  background: #ffffff;
  -webkit-filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.3));
  filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.3));
  padding: .9375rem;
  margin-bottom: 1.25rem;
}

#individual main #news_list>#news_body li a {
  display: -webkit-box;
  display: -ms-flexbox;
  text-decoration: none;
  color: #000000;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#individual main #news_list>#news_body li a .min_banner img {
  width: 15.625rem;
  margin-right: 1.25rem;
}

#individual main #news_list>#news_body li a .icon {
  -ms-flex-preferred-size: 9.375rem;
  flex-basis: 9.375rem;
  width: 9.375rem;
  height: 5.5625rem;
  background-size: contain;
  text-indent: -1000%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#individual main #news_list>#news_body li a .icon .ic_type21 {
  background: url(../img/info.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type22 {
  background: url(../img/event.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type23 {
  background: url(../img/update.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type24 {
  background: url(../img/mainte.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type26,#individual main #news_list>#news_body li a .icon .ic_type218 {
  background: url(../img/tips.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type219 {
  background: url(../img/general.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type220 {
  background: url(../img/guide.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .date {
  padding: .3125rem .3125rem .3125rem .9375rem;
  line-height: 1.5rem;
  font-weight: bold;
}

#individual main #news_list>#news_body li a .date:hover {
  color: #ed3320;

}

#individual main #news_list>#news_body li a .date span {
  vertical-align: middle;
  font-size: 1.25rem;
}

#individual main #news_list .sppagination {
  margin: .5rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#individual main #news_list .sppagination a,
#individual main #news_list .sppagination b {
  margin: 0 .625rem;
  -webkit-filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.5));
  filter: drop-shadow(.1875rem .1875rem .1875rem rgba(0, 0, 0, 0.5));
  border-radius: .3125rem;
  background-color: #ffffff;
  color: #1c0d0a;
  display: block;
  text-align: center;
  line-height: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: .0625rem solid #182b42;
}

#individual main #news_list .sppagination a {
  text-decoration: none;
  color: #1c0d0a;
}

#individual main #news_list .sppagination a:hover,
#individual main #news_list .sppagination b:hover {
  background-color: #ed3320;
  color: #fff;
}

#individual main .pagecontent {
  margin: 0 0 0 0;
  box-shadow: 0 0 0 0 #fff;
}

#individual main .pagecontent .subtitle {
  margin-bottom: 0rem;
  filter: drop-shadow(1px 0px 1px #fff) drop-shadow(-1px 0px 1px #fff) drop-shadow(0px 1px 1px #fff) drop-shadow(0px -1px 1px #fff);
  padding: 1.25rem 0 .625rem .3125rem;
  font-size: 1rem;
}

#individual main .pagecontent .subtitle .sp_page_right_top {
  color: #000;
}

#individual main .pagecontent .subtitle .sp_page_right_top .subpagenav a {
  color: #de0613;
  text-decoration: none;
}

#individual main .pagecontent .subtitle .sp_page_right_top .subpagenav a:hover {
  color: #ff7f00;
  text-decoration: none;
}

#individual main .pagecontent .spcontain {
  position: relative;
  font-size: .875rem;
  width: 100%;
  /* max-width: 70rem; */
  /* min-width: 50rem; */
  background: rgb(255 255 255 / 90%);
  /* border:.375rem solid #01347f; */
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  padding: 0 2.5rem;
  margin: .9375rem auto 2rem auto;
}

#individual main .pagecontent .spcontain .spcontainer {
  padding: 2.5rem 0;
  z-index: 2;
  position: relative;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit {
  margin-bottom: .125rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit h3 {
  color: #3a3231;
  padding: 0.25rem .625rem;
  border-width: 0 0 .0625rem 0;
  border-color: #3a3231;
  border-style: solid;
  margin: 0 auto 1.5625rem auto;
  margin-bottom: 0rem;
  font-weight: 600;
  font-size: 1.5rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit .pages_date {
  display: block;
  color: #333;
  text-align: right;
  font-size: .875rem;
  margin-top: .625rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital {
  color: #333;
  margin: 1.5rem 0;
  font-size: 1rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body {
  width: 100%;
  font-size: .9375rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body li {
  width: 100%;
  padding: .8125rem 0rem;
  border-bottom: .0625rem solid #ffffff;
  margin: .4375rem 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body a {
  text-decoration: none;
  color: #f37c57;
  width: 100%;
  display: block;
  line-height: 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body .title {
  float: left;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body .days {
  float: right;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar {
  width: .3125rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: .3125rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-thumb {
  background-color: #01347f;
  border-radius: .3125rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-thumb:hover {
  background-color: #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital p {
  margin-bottom: 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital strong {
  font-weight: 900;
  color: #ff5200;
  font-size: 1.125rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb tr table tr td strong {
  /* color: #000000; */
  font-weight: 900;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital h2 {
  font-size: 1.25rem !important;
  margin: .625rem 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital h3{
  color: #ffffff;
  padding: 0.5rem .625rem;
  margin: 0 auto 1.5625rem auto;
  margin: 1rem 0;
  font-weight: 600;
  font-size: 1.25rem;
  background: linear-gradient(90deg, #770001, #ff6b6c);
  border-radius: 0.5rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital img {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1.25rem;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table {
  width: 100%;
  border: 1px solid #01347f;
  font-size: 0.9em;
  border-spacing: 0;
  color: #333;
  margin: 0 0 1.5rem 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr:nth-child(1) td,
#individual main .pagecontent .spcontain .spcontainer .page_dital table th {
  color: #fff;
  padding: .5rem .9375rem;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
  background: #01347f;
  text-shadow: 1px 1px 4px #000000;
  -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr:nth-child(1) td:last-child,
#individual main .pagecontent .spcontain .spcontainer .page_dital table th:last-child {
  border-right: 1px solid #01347f;
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr td {
  text-align: center;
  padding: .5rem .9375rem;
  border-bottom: .0625rem solid #01347f;
  border-left: .0625rem solid #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr table tr td {
  background: #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb tr table tr td {
  background: #ffffff;
  padding: .5rem 0 .5rem .9375rem;
  text-shadow: none;
  color: #000;
  font-weight: normal;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr table tr:nth-child(1) td:last-child {
  background: #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb tr table tr:nth-child(1) td:last-child {
  background: #ffffff;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr table tr td:nth-child(2n) {
  background: #ffffff;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr td:last-child {
  border-right: 1px solid #01347f;
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .faq_block {
  border-radius: .375rem;
  background: linear-gradient(0deg, #f3e5cf, #e8080a, #770001);
  margin: 0 0 .625rem 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .q {
  display: inline-block;
  width: 100%;
  padding: .625rem;
  color: #fff;
  border-bottom: 1px solid #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .a {
  color: #3a3231;
  padding: .625rem;
  border-radius: 0rem 0rem .375rem .375rem;
  display: flex;
  background-color: #f3e5cf;
  border-top: .0625rem solid #7f0101;
}

#individual main .pagecontent .spcontain .spcontainer .back_btn a {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 8.75rem;
  background-color: #e4dbba;
  color: #000;
  padding: .625rem;
  text-decoration: none;
  border-radius: .125rem;
}

#individual main .pagecontent .spcontain .spcontainer .back_btn a:hover {
  color: #01347f;
}

#individual .page_nav {
  display: flex;
  justify-content: center;
  margin: 1.5625rem auto;
}

#individual .page_nav li {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.1));
  margin: 0 .3125rem;
}

#individual .page_nav li a {
  background: #e4dbba;
  color: #000;
  border-radius: .25rem;
  text-decoration: none;
  padding: .3125rem .625rem;
  height: 100%;
  width: 100%;
  display: inline-block;
}

#individual .page_nav li a:hover {
  color: #01347f;
}

#individual footer {
  background: #ffffff;
  height: 7.5rem;
  bottom: 0;
  width: 100%;
  z-index: 101;
  transition: 0.3s;
  color: #fff;
}

#individual footer .company_info {
  padding: .625rem 0 0 0rem;
  position: relative;
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

#individual footer .company_info img {
  width: 11.625rem;
  height: 4.3125rem;
}

#individual footer .company_info div {
  margin: 0px 0px 0px 2.5rem;
}

#individual footer .company_info ul {
  margin-bottom: 0rem;
  font-size: .75rem;
  display: flex;
  justify-content: center;
}

#individual footer .company_info ul li {
  margin: 0 .3125rem;
  padding-left: .3125rem;
  border-left: 1px solid #000;
}

#individual footer .company_info ul li:first-child {
  border: none;
  padding-left: 0rem;
  margin: 0 .3125rem 0 0;
}

#individual footer .company_info ul li a {
  color: #000;
  text-decoration: none;

}

#individual footer p {
  width: 100%;
  text-align: center;
  margin: .0625rem 0 0 0;
  color: #747474;
}

.contact main #news_list {
  padding-top: 3.125rem;
}

.contact main #news_list #genre {
  display: none !important;
}

.cateBox_bx .cateBox_tb tr {
  background: #fff;
}

.cateBox_bx .cateBox_tb tr:nth-child(2n+1) {
  background-color: #fff;
}

.cateBox_bx .cateBox_tb tr td {
  text-align: left !important;
}

.cateBox_bx .cateBox_tb tr td table {
  margin: 0 !important;
}

.cateBox_bx .cateBox_tb tr td table strong {
  /* color: #01347f !important; */
}

.cateBox_bx .cateBox_tb tr td:last-child {
  border-right: none !important;
  box-shadow: none !important;
}

.cateBox_bx .submit_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 6.25rem;
  background: linear-gradient(to top, #4789eb 0%, #01347f 100%);
  color: #fff;
  border: none;
  border: 1px solid #ffffff;
  padding: .625rem;
  text-decoration: none;
  margin-top: 1.25rem auto;
  border-radius: .3125rem;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.33));
}

.cateBox_bx .submit_button:focus {
  border: 0;
  border-bottom: 2px solid #fff;
  outline: none;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0));
}

.formbt {
  display: flex;
  justify-content: center;
  width: 15.625rem;
  margin: 1.25rem auto 0 auto;
}

.back_button,
.return_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 6.25rem;
  background: linear-gradient(to top, #a0a0a0 0%, #1a1a1a 100%);
  color: #fff;
  border: none;
  border: 1px solid #dddddd;
  padding: 10px;
  text-decoration: none;
  border-radius: 0rem;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.33));
}

.send_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 6.25rem;
  background: linear-gradient(to top, #4789eb 0%, #01347f 100%);
  color: #fff;
  border: none;
  border: 1px solid #ffffff;
  padding: .625rem;
  text-decoration: none;
  border-radius: .3125rem;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.33));
}

.guide_title {
  padding: .5rem;
  margin: 0 auto 1.5rem auto;
}

.guide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: left;
}

.guide_list li {
  text-align: center;
  width: 30%;
  border: 1px solid #000000;
  border-radius: .25rem;
  margin: 1%;
  overflow: hidden;
  /* background: #ffffff; */
}

.guide_list li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 3%;
  transition: 0.5s ease;
  color: #3a3231;
  font-size: 1rem;
}

.guide_list li a:hover {
  background: #b22f30;
  color: #fff;
}

.guide_list::after {
  content: "";
  display: block;
  width: 32%;
}

.guide_list::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

.pv{
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  margin: -65px 0 0 -65px;
}

.pv a{
  position: relative;
  display: block;
  width: 130px;
  height: 130px;
  z-index: 5;
}

.pv img{
  vertical-align: top;
}

.pv_bg{
  margin: -130px 0 0 0;
  animation: rotateAnimation2 10s linear infinite;
}

@keyframes rotateAnimation1 {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(-360deg);
  }
}


@keyframes rotateAnimation2 {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}