html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #051730;
}

@media screen and (max-width:428px) {
    html, body {
    font-size: 0.9rem;
    }
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

.p7g_logo {
  position: absolute;
  top: 150px;
  right: 5vw;
}

.p7g_logo_child {
  max-width: 30vw;
  height: auto;
}

@media screen and (max-width:1024px) {
  .p7g_logo {
  position: absolute;
  top: 300px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  right: 0%;
  left: 55%;
  }
  .p7g_logo_child {
  max-width: 35vw;
  height: auto;
}
}

@media screen and (max-width:900px) {
  .p7g_logo {
  position: absolute;
  top: 300px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  right: 50%;
  left: 50%;
  }
  .p7g_logo_child {
  max-width: 60vw;
  height: auto;
}
}

@media screen and (max-width:428px) {
  .p7g_logo {
  position: absolute;
  top: 320px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  right: 50%;
  left: 50%;
  }
  .p7g_logo_child {
  max-width: 100vw;
  height: auto;
}
}

@media screen and (max-width:320px) {
  .p7g_logo {
  position: absolute;
  top: 350px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  right: 50%;
  left: 50%;
  }
  .p7g_logo_child {
  max-width: 100vw;
  height: auto;
}
}

.firstView {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv_section {
  position: relative;
  z-index: 99999;
}

section {
  width: 100%;
  /* height: 100vh; */
}

/*------------------------------------------------------------------------
ファーストビュー背景
------------------------------------------------------------------------*/

.firstView_bgimg {
    /* position: absolute; */
    background-image: url(../images/top/firstview2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: -65px;
}

@media screen and (max-width:1024px) {
  .firstView_bgimg {
    /* position: absolute; */
    background-image: url(../images/top/firstview2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: 0;
  }
}

/*------------------------------------------------------------------------
ファーストビュー背景end
------------------------------------------------------------------------*/


/*------------------------------------------------------------------------
ゲームスタートボタン
------------------------------------------------------------------------*/

.top_gs_btn_wrap {
  position: relative;
  top: 3vh;
	width: 100%;
	height: auto;
	margin: 0 auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
}

@media screen and (max-width:1024px) {
  .top_gs_btn_wrap {
    display: none;
  }
}

.top_gs_btn_wrap img {
  max-width: 30vw;
  position: absolute;
	top: 450px;
	right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: opacity 0.5s;
  cursor: pointer;
}

.top_gs_btn_wrap .top_gs_btn_after:last-of-type {
    position: absolute;
    /* top: 0px;
    left: 0px; */
    opacity: 0;
}

.top_gs_btn_wrap:hover .top_gs_btn_after:last-of-type {
    opacity: 1;
}

@media screen and (max-width:1024px) {
  .top_gs_btn_wrap {
    display: none;
  }
}

/*------------------------------------------------------------------------------------------------
ゲームスタートボタンend
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
スクロール追従スタートボタン
------------------------------------------------------------------------------------------------*/

.scroll_btn_wrap {
	display: none;/*最初は隠す*/
    width: 0%;
    height: 0px;
    position: fixed;
    /* bottom: 10px;
    right: 10px; */
    transition: 0.5s;
    z-index: 99999;
}

.scroll_btn_wrap img {
  position: fixed;
	top: 625px;
	right: 30px;
  /* bottom: 0;
  left: 0; */
  margin: auto;
  transition: opacity 0.5s;
  width: 275px;
  height: auto;
  z-index: 99999;
  cursor: pointer;
}

.scroll_btn_wrap .scroll_btn_after:last-of-type {
    position: fixed;
    z-index: 99999;
    /* top: 0px;
    left: 0px; */
    opacity: 0;
}

.scroll_btn_wrap:hover .scroll_btn_after:last-of-type {
    opacity: 1;
    position: fixed;
    z-index: 99999;
}

@media screen and (max-width:1024px) {
  .scroll_btn_wrap img{
  display: block;
  top: 550px;
  right: 15px;
  }
}

@media screen and (max-width:900px) {
  .scroll_btn_wrap img{
  display: none;
  }
}

/*------------------------------------------------------------------------------------------------
スクロール追従スタートボタンend
------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
ゲームダウンロードボタン
------------------------------------------------------------------------------------------------*/


.top_buttonArea {
  max-width: 40vw;
  position: relative;
  /* left: 10vw; */
  /* font-family: "Noto Selif JP", serif; */
  display: flex; /* flexboxを有効にする */
  gap: 20px; /* ボタンとボタンの間の隙間（不要なら削除） */
}

.top_buttonArea a {
  flex: 1; /* ★これが最重要！利用可能なスペースを均等に分け合う */
  text-decoration: none; /* リンクの下線を消す */
}

.button_lg_gd,
.button_lg_entry {
    display: block;
    width: 100%; /* 親(aタグ)の幅いっぱいに広がるようにする */
    box-sizing: border-box; /* paddingを含めて幅100%にするため */
    text-align: center; /* テキストを中央揃えに */
}

@media screen and (max-width:1024px) {
  .top_buttonArea {
    display: block;
  }
}

@media screen and (max-width:900px) {
  .top_buttonArea {
    display: none;
  }
}

.button_gamedownload {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  padding: 16px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  transition: all 0.15s ease;
  top: 12vh;
  left: 9vw;
  font-family: "Noto Selif JP", serif;
}

.button_gamedownload::before,
.button_gamedownload::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7d8082;
  transition: all 0.15s ease;
}

.button_gamedownload::before {
  top: 0;
  border-bottom-width: 0;
}

.button_gamedownload::after {
  bottom: 0;
  border-top-width: 0;
}

.button_gamedownload:active,
.button_gamedownload:focus {
  outline: none;
}

.button_gamedownload:active::before,
.button_gamedownload:active::after {
  right: 3px;
  left: 3px;
}

.button_gamedownload:active::before {
  top: 3px;
}

.button_gamedownload:active::after {
  bottom: 3px;
}

.button_lg_gd {
  position: relative;
  display: block;
  padding: 4vh 3vw;
  color: #fff;
  /* background-color: #0f1923; */
  /* background: linear-gradient(rgba(185, 185, 185, 0.6), rgba(185, 185, 185, 0.6)); */
  background-image: url(../images/top/695974.jpg);
  background-position: 450px 650px;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg_gd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  /* background-color: #0f1923; */
}

.button_lg_gd::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.button_sl_gd {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -20px;
  width: 0;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.button_text_gd {
  position: relative;
}

.button_gamedownload:hover {
  color: #0f1923;
}

.button_gamedownload:hover .button_sl_gd {
  width: calc(100% + 45px);
}

.button_gamedownload:hover .button_lg_gd::after {
  background-color: #fff;
}

@media screen and (max-width: 1250px) {
  .button_lg_gd {
  position: relative;
  display: block;
  padding: 4vh 3vw;
  color: #fff;
  /* background-color: #0f1923; */
  background-image: url(../images/top/695974.jpg);
  background-position: 450px 650px;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
  }
  .button_text_gd {
  position: relative;
  font-size: 1.25rem;
}
}

@media screen and (max-width: 1024px) {
  .button_gamedownload {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  padding: 16px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  transition: all 0.15s ease;
  top: 32vh;
  left: 5vw;
  font-family: "Noto Selif JP", serif;
  }
  .button_lg_gd {
  position: relative;
  display: block;
  padding: 4vh 2vw;
  color: #fff;
  /* background-color: #0f1923; */
  background-image: url(../images/top/695974.jpg);
  background-position: 450px 650px;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
  }
  .button_text_gd {
  position: relative;
  font-size: 1.5rem;
}
}

/*------------------------------------------------------------------------------------------------
ゲームダウンロードボタンend
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
会員登録ボタン
------------------------------------------------------------------------------------------------*/


.button_entry {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  padding: 16px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  transition: all 0.15s ease;
  top: 30vh;
  left: 9vw;
  font-family: "Noto Selif JP", serif;
}

.button_entry::before,
.button_entry::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7d8082;
  transition: all 0.15s ease;
}

.button_entry::before {
  top: 0;
  border-bottom-width: 0;
}

.button_entry::after {
  bottom: 0;
  border-top-width: 0;
}

.button_entry:active,
.button_entry:focus {
  outline: none;
}

.button_entry:active::before,
.button_entry:active::after {
  right: 3px;
  left: 3px;
}

.button_entry:active::before {
  top: 3px;
}

.button_entry:active::after {
  bottom: 3px;
}

.button_lg_entry {
  position: relative;
  display: block;
  padding: 4vh 3.6vw;
  color: #fff;
  /* background-color: #0f1923; */
  background-image: url(../images/top/695974.jpg);
  background-position: 450px 650px;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg_entry::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  /* background-color: #0f1923; */
}

.button_lg_entry::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.button_sl_entry {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -20px;
  width: 0;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.button_text_entry {
  position: relative;
}

.button_entry:hover {
  color: #0f1923;
}

.button_entry:hover .button_sl_entry {
  width: calc(100% + 45px);
}

.button_entry:hover .button_lg_entry::after {
  background-color: #fff;
}

@media screen and (max-width: 1250px) {
  .button_lg_entry {
    position: relative;
    display: block;
    padding: 4vh 3.65vw;
    color: #fff;
    /* background-color: #0f1923; */
    background-image: url(../images/top/695974.jpg);
    background-position: 450px 650px;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
    }
    .button_text_entry {
    position: relative;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .button_entry {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  padding: 16px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  transition: all 0.15s ease;
  top: 50vh;
  left: 5vw;
  font-family: "Noto Selif JP", serif;
  }
  .button_lg_entry {
  position: relative;
  display: block;
  padding: 4vh 3vw;
  color: #fff;
  /* background-color: #0f1923; */
  background-image: url(../images/top/695974.jpg);
  background-position: 450px 650px;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
  }
  .button_text_entry {
  position: relative;
  font-size: 1.5rem;
  }
}

/*------------------------------------------------------------------------------------------------
会員登録ボタンend
------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
重要なお知らせゾーン
------------------------------------------------------------------------------------------------*/

.top_newsArea {
  /* left: 8.5vw; */
  margin-left: 8.5vw;
  /* background-image: url(../images/top_news_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; */
  height: 100%;
}

.top_news_wrap {
    list-style: none;
    position: absolute;
    z-index: 100;
    padding: 0em 0rem 0em 2vw;
    /* background-image: url(../images/top_news_bg.png);
    background-repeat: no-repeat;
    background-size: contain; */
    /* width: 20vw; */
    /* height: 25vh; */
  }

.top_news_bg img {
    position: absolute;
    height: 25vh;
    width: 25vw;
    top: 15px;
    aspect-ratio: 16/9;
  }

.news_bg_wrap {
  position: relative;
  top: 55vh;
}

.top_news_frame {
  position: absolute;
  top: 11px;
  left: 17.5vw;
  z-index: 99;
}

.top_news_frame img {
  width: 8vw;
  height: auto;
}

.top_news_frame_under {
  position: absolute;
  bottom: -27.5vh;
  left: -.5vw;
  transform: rotate(180deg);
  z-index: 99;
}

.top_news_frame_under img {
  width: 8vw;
  height: auto;
}

.top_news_ttltxt {
  position: absolute;
  color: #fff;
  font-size: 1.25vw;
  top: 0.75vh;
  left: 3.25vw;
  font-family: "Noto Selif JP", serif;
  font-weight: 600;
}

.top_news_ttlframe {
  position: absolute;
  top: -5px;
  left: 30px;
  z-index: 99;
}

.top_news_ttlframe img {
  width: 15vw;
  height: auto;
}

.top_news_ttl {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    top: 5vh;
    display: flex;
  }

@media screen and (max-width:1440px) {
  .top_news_frame_under {
  position: absolute;
  bottom: -25vh;
  left: -.5vw;
  transform: rotate(180deg);
  z-index: 99;
  }
  .top_news_frame img {
    width: 8vw;
    height: auto;
  }
  .top_news_frame_under img {
    width: 8vw;
    height: auto;
  }
  .top_news_bg img {
    position: absolute;
    height: 22.5vh;
    width: 25vw;
    top: 15px;
    aspect-ratio: 16/9;
  }

  .top_news_wrap {
    list-style: none;
    position: absolute;
    z-index: 100;
    padding: 0em 0rem 0em 2vw;
    /* background-image: url(../images/top_news_bg.png);
    background-repeat: no-repeat;
    background-size: contain; */
    /* width: 20vw; */
    /* height: 25vh; */
  }

  .top_news_ttl {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    top: 4vh;
    display: flex;
  }
}

@media screen and (max-width:1024px) {
  .top_news_ttltxt {
  position: absolute;
  color: #fff;
  font-size: 1.5vw;
  top: .65vh;
  left: 3.75vw;
  font-family: "Noto Selif JP", serif;
  font-weight: 600;
  }
  .top_news_bg img {
  position: absolute;
  height: 20vh;
  width: 30vw;
  top: 15px;
  aspect-ratio: 16/9;
  }
  .top_news_frame {
  position: absolute;
  top: 11px;
  left: 22.5vw;
  z-index: 99;
  }
  .top_news_frame_under {
  position: absolute;
  bottom: -22.5vh;
  left: -.5vw;
  transform: rotate(180deg);
  z-index: 99;
  }
  .top_news_ttl {
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  top: 2.5vh;
  display: flex;
  }
  .top_news_ttlframe img {
  width: 18vw;
  height: auto;
  }
  .top_news_wrap {
  list-style: none;
  position: absolute;
  z-index: 100;
  padding: 0.5em 0rem 0em 1.5em;
  }
  .top_news_ttlframe {
  position: absolute;
  top: 0px;
  left: 30px;
  z-index: 99;
  }
}

@media screen and (max-width:1024px) {
  .top_newsArea {
    display: none;
  }
}

/*お知らせタイトル*/

.top_news_btn {
  --light: #051730;
  --active: 0;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

  background-color: transparent;

  border: none;

  text-decoration: none;
}

.top_news_btn:hover {
  --active: 1;
  /* opacity: 0.7;
  transition: 0.3s; */
}

.top_arrow_wrap {
  overflow: clip;

  display: flex;
  justify-content: center;
  align-items: center;

  width: calc(var(--active) * 1.5rem + (1 - var(--active)) * 0.5rem);
  height: calc(var(--active) * 1.5rem + (1 - var(--active)) * 0.5rem);
  background-color: hsla(0, 0%, 85%, var(--active));

  border: 1px solid var(--light);
  border-radius: 9999px;
  transition: all 0.5s ease-in-out;
}

.top_arrow {
  font-size: 0.75rem;
  color: var(--dark);
  line-height: 1rem;

  transform: translateX(calc(-1rem * (1 - var(--active))));
  transition: transform 0.5s ease-in-out;
}

.top_news_text {
  position: relative;

  display: inline-block;

  padding-block: 0.5rem;

  font-size: 0.8vw;
  font-weight: 600;
  color: var(--light);

  text-transform: capitalize;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 20vw;
  height: auto;
}
.top_news_text::before {
  content: "";

  position: absolute;
  bottom: 0;
  right: 0;

  width: calc((1 - var(--active)) * 100%);
  height: 1px;
  background-color: var(--light);

  border-radius: 9999px;
  transition: width 0.5s ease-in-out;
}

.top_news_date {
  color: #051730;
  font-size: 0.75vw;
  margin-right: 5px;
}

@media screen and (max-width:1024px) {
  .top_news_text {
  position: relative;
  display: inline-block;
  padding-block: 0.5rem;
  font-size: 1vw;
  font-weight: 600;
  color: var(--light);
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 23vw;
  height: auto;
  }
  .top_news_date {
  color: #051730;
  font-size: 0.85vw;
  margin-right: 5px;
  }
}

/*------------------------------------------------------------------------------------------------
会員登録ボタンend
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
スライダー
------------------------------------------------------------------------------------------------*/

.sliderArea {
    height: 100%;
    position: absolute;
    max-width: 30vw;
    margin: 0 auto;
    padding: 0 25px;
    top: 60vh;
    right: 5vw;
    list-style: none;
    z-index: 99;
}

.slick-slide img {
  max-width: 100%;
  height: auto;
}

.dots-news {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 15px auto;
    list-style: none;
}

.dots-news li {
    width: 40px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
}

.dots-news li:hover,
.dots-news li.slick-active {
    background: #0A274D;
}
.dots-news li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

@media screen and (max-width:1024px) {
  .sliderArea {
    height: 100%;
    position: absolute;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 25px;
    top: 75vh;
    right: 0;
    left: 0;
    list-style: none;
    z-index: 99;
  }

  /* .sliderArea.w300 {
    max-width: 300px;
  } */
  /* .slick-slide {
    margin: 0 5px;
  } */

  .slick-slide img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .slick-prev, .slick-next {
    z-index: 99;
  }

  /* .slick-prev:before, .slick-next:before {
    width: 50px;
    height: 50px;
    color: #0072ff;
  } */

  .slide-arrow {
    display: none;
  }
  .slide-arrow:hover {
    opacity: 0.5;
  }
  .slide-arrow,
.slick-next {
  display: none;
}

  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }

  .slick-active {
    opacity: 1;
  }

  .slick-current {
    opacity: 1;
  }

  .thumb {
    margin: 20px 0 0;
  }

  .thumb .slick-slide {
    cursor: pointer;
  }

  .thumb .slick-slide:hover {
    opacity: .7;
  }

  .dots-news {
      display: flex;
      justify-content: center;
      margin: 10 auto;
      list-style: none;
      padding: 0;
  }

  .dots-news li {
      width: 40px;
      height: 10px;
      margin: 0 5px;
      background: #fff;
      cursor: pointer;
      border-radius: 10px;
  }

  .dots-news li:hover,
  .dots-news li.slick-active {
      background: #0A274D;
  }
  .dots-news li button {
      display: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      outline: none;
      padding: 0;
      border: none;
      background-color: transparent;
  }
}

/*------------------------------------------------------------------------------------------------
スライダーend
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
スライダー2
------------------------------------------------------------------------------------------------*/

.gi_slide_wrap {
  position: relative;
}

.slide-arrow img {
  position: absolute;
}

.dots-gi {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
    display: flex;
    justify-content: center;
    /* margin: 10 auto; */
    list-style: none;
}

.dots-gi li {
    width: 40px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
}

.dots-gi li:hover,
.dots-gi li.slick-active {
    background: #0A274D;
}
.dots-gi li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

@media screen and (min-width:769px) {
  .gi_slide_SP_wrap {
  display: none;
  }
  .gi_slide_TAB_wrap {
  display: none;
  }
}

@media screen and (max-width:768px) {
  .gi_slide_wrap {
    display: none;
  }
  .gi_slide_TAB_wrap {
  display: block;
  }
  .gi_slide_SP_wrap {
    display: none;
  }

  .dots-gi {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0;
    bottom: 10px;
      display: flex;
      justify-content: center;
      /* margin: 10 auto; */
      list-style: none;
  }

  .dots-gi li {
      width: 20px;
      height: 5px;
      margin: 0 5px;
      background: #fff;
      cursor: pointer;
      border-radius: 10px;
  }

  .dots-gi li:hover,
  .dots-gi li.slick-active {
      background: #0A274D;
  }
  .dots-gi li button {
      display: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      outline: none;
      padding: 0;
      border: none;
      background-color: transparent;
  }
}

@media screen and (max-width:428px) {
  .gi_slide_SP_wrap {
  display: block;
  }
  .gi_slide_wrap {
    display: none;
  }
  .gi_slide_TAB_wrap {
  display: none;
  }
}


/*------------------------------------------------------------------------------------------------
武器背景グラデ
------------------------------------------------------------------------------------------------*/

.weapon_bg {
  position: relative;
	background: linear-gradient(-45deg, #CDFFF3, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*------------------------------------------------------------------------------------------------
武器背景グラデend
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
武器幻神切り替え関連
------------------------------------------------------------------------------------------------*/

/* .tab__menu {
  position: relative;
  list-style: none;
  margin: 0;
} */

.tab-wrap {
  position: relative;
  list-style: none;
  margin: 0;
}

.tab-wrap2 {
  position: relative;
  list-style: none;
  margin: 0;
}

.tab__menu-item1_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 4rem;
  background: linear-gradient(90deg, #00C6FF, #0072FF);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid white; */
  outline: none;
  overflow: hidden;
  top: 15vh;
  left: 15vw;
  z-index: 99;
  text-decoration: none;
}

.tab__menu-item1_icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.tab__menu-item1_btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.tab__menu-item1_btn:hover .tab__menu-item1_icon {
  transform: translate(4px);
}

.tab__menu-item1_btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.tab__menu-item1_btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

.tab__menu-item2_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 4rem;
  background: linear-gradient(90deg, #FF87F5, #CD87FF);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid #ffffff50; */
  outline: none;
  overflow: hidden;
  top: 25vh;
  left: 15vw;
  z-index: 99;
  text-decoration: none;
}

.tab__menu-item2_icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.tab__menu-item2_btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.tab__menu-item2_btn:hover .tab__menu-item2_icon {
  transform: translate(4px);
}

.tab__menu-item2_btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.tab__menu-item2_btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}

.tab__menu-item3_btn {
  position: absolute;
  z-index: 3;
}

@media (max-width: 768px) {
  .tab__menu-item1_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 3rem;
  background: linear-gradient(90deg, #00C6FF, #0072FF);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid white; */
  outline: none;
  overflow: hidden;
  top: 10vh;
  left: 15vw;
  z-index: 99;
  text-decoration: none;
  }
  .tab__menu-item2_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 3rem;
  background: linear-gradient(90deg, #FF87F5, #CD87FF);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid #ffffff50; */
  outline: none;
  overflow: hidden;
  top: 20vh;
  left: 15vw;
  z-index: 99;
  text-decoration: none;
  }
}

@media (max-width: 428px) {
  .tab__menu-item1_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 1rem;
  background: linear-gradient(90deg, #00C6FF, #0072FF);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid white; */
  outline: none;
  overflow: hidden;
  top: 10vh;
  left: 10vw;
  z-index: 99;
  text-decoration: none;
  }
  .tab__menu-item2_btn {
  position: absolute;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 1rem;
  padding-inline: 1rem;
  background: linear-gradient(90deg, #FF87F5, #CD87FF);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  /* border: 3px solid #ffffff50; */
  outline: none;
  overflow: hidden;
  top: 20vh;
  left: 10vw;
  z-index: 99;
  text-decoration: none;
  }
}

/*
↓↓↓↓↓↓↓↓↓↓↓↓職業別の武器のタブ切り替え↓↓↓↓↓↓↓↓↓↓↓↓
*/

.tabs-Weapon {
  position: relative;
  z-index: 99;
}

.tab-list-Weapon {
  position: absolute;
  display: flex;
  z-index: 99;
  width: 100%;
}

.tab-item-Weapon {
  /* border-radius: 5px 5px 0 0;
  background-color: #fff;
  border: solid 1px skyblue;
  padding: 0.5em 1.2em; */
  cursor: pointer;
  list-style: none;
}

/* .tab-content-Weapon {
  background-color: #f5f5f5;
} */

.tab-panel-Weapon {
  display: none;
}

/* .tab-item-Weapon.active {
  background-color: skyblue;
  color: #fff;
  font-weight: bold;
} */

.tab-panel-Weapon.active {
  display: block;
}

/*
↓↓↓↓↓↓↓↓↓↓↓↓職業別の幻神のタブ切り替え↓↓↓↓↓↓↓↓↓↓↓↓
*/

.tabs-Genshin {
  position: relative;
}

.tab-list-Genshin {
  position: absolute;
  display: flex;
  z-index: 99;
  width: 100%;
}

.tab-item-Genshin {
  /* border-radius: 5px 5px 0 0;
  background-color: #fff;
  border: solid 1px skyblue;
  padding: 0.5em 1.2em; */
  cursor: pointer;
  list-style: none;
}

/* .tab-content-Weapon {
  background-color: #f5f5f5;
} */

.tab-panel-Genshin {
  display: none;
}

/* .tab-item-Weapon.active {
  background-color: skyblue;
  color: #fff;
  font-weight: bold;
} */

.tab-panel-Genshin.active {
  display: block;
}

/*------------------------------------------------------------------------------------------------
武器幻神切り替えタブ関連end
------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
武器背景英語
------------------------------------------------------------------------------------------------*/


.top_duallaser_bg {
  /* position: absolute; */
  background-image: url(../images/top/duallaser_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_dragodoll_bg {
  /* position: absolute; */
  background-image: url(../images/top/dragodoll_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_tachi_bg {
  /* position: absolute; */
  background-image: url(../images/top/tachi_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_rod_bg {
  /* position: absolute; */
  background-image: url(../images/top/rod_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_arcanaarts_bg {
  /* position: absolute; */
  background-image: url(../images/top/arcanaarts_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_twinsword_bg {
  /* position: absolute; */
  background-image: url(../images/top/twinsword_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

@media screen and (max-width:768px) {
  .top_duallaser_bg {
  /* position: absolute; */
  background-image: url(../images/top/duallaser_TAB_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
  }

  .top_dragodoll_bg {
    /* position: absolute; */
    background-image: url(../images/top/dragodoll_TAB_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_tachi_bg {
    /* position: absolute; */
    background-image: url(../images/top/tachi_TAB_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_rod_bg {
    /* position: absolute; */
    background-image: url(../images/top/rod_TAB_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_arcanaarts_bg {
    /* position: absolute; */
    background-image: url(../images/top/arcanaarts_TAB_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_twinsword_bg {
    /* position: absolute; */
    background-image: url(../images/top/twinsword_TAB_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }
}

@media screen and (max-width:428px) {
  .top_duallaser_bg {
  /* position: absolute; */
  background-image: url(../images/top/duallaser_SP_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
  }

  .top_dragodoll_bg {
    /* position: absolute; */
    background-image: url(../images/top/dragodoll_SP_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_tachi_bg {
    /* position: absolute; */
    background-image: url(../images/top/tachi_SP_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_rod_bg {
    /* position: absolute; */
    background-image: url(../images/top/rod_SP_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_arcanaarts_bg {
    /* position: absolute; */
    background-image: url(../images/top/arcanaarts_SP_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_twinsword_bg {
    /* position: absolute; */
    background-image: url(../images/top/twinsword_SP_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }
}

/*------------------------------------------------------------------------------------------------
武器背景英語end
------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
幻神背景英語
------------------------------------------------------------------------------------------------*/


.top_gaia_bg {
  /* position: absolute; */
  background-image: url(../images/top/gaia_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_isana_bg {
  /* position: absolute; */
  background-image: url(../images/top/isana_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_artemis_bg {
  /* position: absolute; */
  background-image: url(../images/top/artemis_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_tyr_bg {
  /* position: absolute; */
  background-image: url(../images/top/tyr_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

.top_bahamut_bg {
  /* position: absolute; */
  background-image: url(../images/top/bahamut_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
}

@media screen and (max-width:768px) {
  .top_gaia_bg {
    /* position: absolute; */
    background-image: url(../images/top/gaia_bg_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_isana_bg {
    /* position: absolute; */
    background-image: url(../images/top/isana_bg_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_artemis_bg {
    /* position: absolute; */
    background-image: url(../images/top/artemis_bg_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_tyr_bg {
    /* position: absolute; */
    background-image: url(../images/top/tyr_bg_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }

  .top_bahamut_bg {
    /* position: absolute; */
    background-image: url(../images/top/bahamut_bg_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0.1;
  }
}

/*------------------------------------------------------------------------------------------------
幻神背景英語end
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
武器紹介内容
------------------------------------------------------------------------------------------------*/

/*デュアルレーザー*/

.duallaser_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_duallaser_chara {
  position: absolute;
  background-image: url(../images/top/duallaser_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.duallaser_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.duallaser_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*
ドラゴドール
*/

.dragodoll_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_dragodoll_chara {
  position: absolute;
  background-image: url(../images/top/dragodoll_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.dragodoll_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.dragodoll_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*
太刀
*/

.tachi_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_tachi_chara {
  position: absolute;
  background-image: url(../images/top/tachi_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.tachi_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.tachi_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*
ロッド
*/

.rod_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_rod_chara {
  position: absolute;
  background-image: url(../images/top/rod_chara_1.png);
  background-repeat: no-repeat;
  background-size: 120vh;
  background-position: center -20px;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.rod_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.rod_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*
星天球
*/

.arcanaarts_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_arcanaarts_chara {
  position: absolute;
  background-image: url(../images/top/arcanaarts_chara_1.png);
  background-repeat: no-repeat;
  background-size: 90vh;
  background-position: center -10px;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.arcanaarts_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.arcanaarts_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*
ツインソード
*/

.twinsword_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_twinsword_chara {
  position: absolute;
  background-image: url(../images/top/twinsword_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.twinsword_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  top: 61vh;
  left: 15vw;
  z-index: 3;
}

.twinsword_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}


@media screen and (max-width:1024px) {
/*デュアルレーザー*/

  .duallaser_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
  }

  .top_duallaser_chara {
    position: absolute;
    background-image: url(../images/top/duallaser_chara.png);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .duallaser_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .duallaser_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ドラゴドール
  */

  .dragodoll_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_dragodoll_chara {
    position: absolute;
    background-image: url(../images/top/dragodoll_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .dragodoll_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .dragodoll_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  太刀
  */

  .tachi_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_tachi_chara {
    position: absolute;
    background-image: url(../images/top/tachi_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .tachi_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tachi_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ロッド
  */

  .rod_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_rod_chara {
    position: absolute;
    background-image: url(../images/top/rod_chara.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .rod_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .rod_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  星天球
  */

  .arcanaarts_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_arcanaarts_chara {
    position: absolute;
    background-image: url(../images/top/arcanaarts_chara.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .arcanaarts_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .arcanaarts_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ツインソード
  */

  .twinsword_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_twinsword_chara {
    position: absolute;
    background-image: url(../images/top/twinsword_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .twinsword_name {
    max-width: 35%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 30vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .twinsword_comment {
    width: 35%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

@media screen and (max-width:768px) {
/*デュアルレーザー*/

  .duallaser_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
  }

  .top_duallaser_chara {
    position: absolute;
    background-image: url(../images/top/duallaser_chara.png);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .duallaser_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .duallaser_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ドラゴドール
  */

  .dragodoll_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_dragodoll_chara {
    position: absolute;
    background-image: url(../images/top/dragodoll_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .dragodoll_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .dragodoll_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  太刀
  */

  .tachi_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_tachi_chara {
    position: absolute;
    background-image: url(../images/top/tachi_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .tachi_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tachi_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ロッド
  */

  .rod_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_rod_chara {
    position: absolute;
    background-image: url(../images/top/rod_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .rod_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .rod_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  星天球
  */

  .arcanaarts_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_arcanaarts_chara {
    position: absolute;
    background-image: url(../images/top/arcanaarts_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .arcanaarts_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .arcanaarts_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ツインソード
  */

  .twinsword_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_twinsword_chara {
    position: absolute;
    background-image: url(../images/top/twinsword_chara.png);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .twinsword_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .twinsword_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

@media screen and (max-width:428px) {
/*デュアルレーザー*/

  .duallaser_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
  }

  .top_duallaser_chara {
    position: absolute;
    background-image: url(../images/top/duallaser_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 52vh;
    background-position: 0px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .duallaser_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .duallaser_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ドラゴドール
  */

  .dragodoll_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_dragodoll_chara {
    position: absolute;
    background-image: url(../images/top/dragodoll_chara_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .dragodoll_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .dragodoll_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  太刀
  */

  .tachi_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_tachi_chara {
    position: absolute;
    background-image: url(../images/top/tachi_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 60vh;
    background-position: -50px 50px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .tachi_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tachi_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ロッド
  */

  .rod_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_rod_chara {
    position: absolute;
    background-image: url(../images/top/rod_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 53vh;
    background-position: -12px 80px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .rod_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .rod_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  星天球
  */

  .arcanaarts_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_arcanaarts_chara {
    position: absolute;
    background-image: url(../images/top/arcanaarts_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 75vh;
    background-position: -100px 120px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .arcanaarts_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .arcanaarts_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ツインソード
  */

  .twinsword_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_twinsword_chara {
    position: absolute;
    background-image: url(../images/top/twinsword_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 53vh;
    background-position: 30px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .twinsword_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .twinsword_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

@media screen and (max-width:320px) {
/*デュアルレーザー*/

  .duallaser_wrap {
  position: relative;
	background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
  }

  .top_duallaser_chara {
    position: absolute;
    background-image: url(../images/top/duallaser_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 52vh;
    background-position: -60px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .duallaser_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .duallaser_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ドラゴドール
  */

  .dragodoll_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_dragodoll_chara {
    position: absolute;
    background-image: url(../images/top/dragodoll_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 50vh;
    background-position: 0px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .dragodoll_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .dragodoll_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  太刀
  */

  .tachi_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_tachi_chara {
    position: absolute;
    background-image: url(../images/top/tachi_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 60vh;
    background-position: -110px 50px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .tachi_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tachi_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ロッド
  */

  .rod_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_rod_chara {
    position: absolute;
    background-image: url(../images/top/rod_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 53vh;
    background-position: -70px 80px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .rod_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .rod_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  星天球
  */

  .arcanaarts_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_arcanaarts_chara {
    position: absolute;
    background-image: url(../images/top/arcanaarts_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 75vh;
    background-position: -150px 120px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .arcanaarts_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .arcanaarts_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  /*
  ツインソード
  */

  .twinsword_wrap {
    position: relative;
    background: linear-gradient(-45deg, #a3ffea, #DDFFF7, #F3FFFC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
  }

  .top_twinsword_chara {
    position: absolute;
    background-image: url(../images/top/twinsword_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 53vh;
    background-position: -50px 70px;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }

  .twinsword_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .twinsword_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

/*------------------------------------------------------------------------------------------------
武器紹介内容end
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
幻神紹介内容
------------------------------------------------------------------------------------------------*/

/*ガイア*/

.gaia_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_gaia_chara {
  position: absolute;
  background-image: url(../images/top/gaia_chara_1.png);
  background-repeat: no-repeat;
  background-size: 200vh;
  background-position: 100px -90px;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.gaia_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  bottom: 17.5vh;
  left: 15vw;
  z-index: 3;
}

.gaia_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*イサナ*/

.isana_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_isana_chara {
  position: absolute;
  background-image: url(../images/top/isana_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.isana_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  bottom: 17.5vh;
  left: 15vw;
  z-index: 3;
}

.isana_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*アルテミス*/

.artemis_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_artemis_chara {
  position: absolute;
  background-image: url(../images/top/artemis_chara_1.png);
  background-repeat: no-repeat;
  background-size: 90vh;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.artemis_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  bottom: 17.5vh;
  left: 15vw;
  z-index: 3;
}

.artemis_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*テュール*/

.tyr_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_tyr_chara {
  position: absolute;
  background-image: url(../images/top/tyr_chara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.tyr_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  bottom: 17.5vh;
  left: 15vw;
  z-index: 3;
}

.tyr_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

/*バハムート*/

.bahamut_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
}

.top_bahamut_chara {
  position: absolute;
  background-image: url(../images/top/bahamut_chara_1.png);
  background-repeat: no-repeat;
  background-size: 200vh;
  background-position: center;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.bahamut_name {
  max-width: 25vw;
  height: auto;
  position: absolute;
  bottom: 17.5vh;
  left: 15vw;
  z-index: 3;
}

.bahamut_comment {
  width: 25%;
  height: auto;
  position: absolute;
  bottom: 40vh;
  left: 15vw;
  z-index: 3;
}

@media screen and (max-width:1024px) {
  .gaia_wrap {
  position: relative;
	background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
  /* display: none; */
  }
  .gaia_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .gaia_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .isana_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .isana_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .artemis_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .artemis_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tyr_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tyr_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .bahamut_name {
    max-width: 40%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .bahamut_comment {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

@media screen and (max-width:428px) {
    .gaia_wrap {
    position: relative;
    background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
    }
  .top_gaia_chara {
    position: absolute;
    background-image: url(../images/top/gaia_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 100vh;
    background-position: -75px 60px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .gaia_name {
    max-width: 70%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .gaia_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_isana_chara {
    position: absolute;
    background-image: url(../images/top/isana_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 75vh;
    background-position: -40px 145px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .isana_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }
  .isana_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_artemis_chara {
    position: absolute;
    background-image: url(../images/top/artemis_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 55vh;
    background-position: 20px 115px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .artemis_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .artemis_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_tyr_chara {
    position: absolute;
    background-image: url(../images/top/tyr_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 100vh;
    background-position: -350px 140px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .tyr_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tyr_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

.top_bahamut_chara {
    position: absolute;
    background-image: url(../images/top/bahamut_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 155vh;
    background-position: -460px 45px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .bahamut_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .bahamut_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

@media screen and (max-width:320px) {
    .gaia_wrap {
    position: relative;
    background: linear-gradient(-45deg, #ffc4fb, #FFE2FD, #FFEEFE);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    /* display: none; */
    }
  .top_gaia_chara {
    position: absolute;
    background-image: url(../images/top/gaia_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 100vh;
    background-position: -160px 60px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .gaia_name {
    max-width: 70%;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .gaia_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_isana_chara {
    position: absolute;
    background-image: url(../images/top/isana_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 75vh;
    background-position: -70px 165px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .isana_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }
  .isana_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_artemis_chara {
    position: absolute;
    background-image: url(../images/top/artemis_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 55vh;
    background-position: 20px 115px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .artemis_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .artemis_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .top_tyr_chara {
    position: absolute;
    background-image: url(../images/top/tyr_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 100vh;
    background-position: -480px 140px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .tyr_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .tyr_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }

.top_bahamut_chara {
    position: absolute;
    background-image: url(../images/top/bahamut_chara_SP.png);
    background-repeat: no-repeat;
    background-size: 155vh;
    background-position: -540px 42px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    }
  .bahamut_name {
    max-width: 70vw;
    height: auto;
    position: absolute;
    /* bottom: 17.5vh; */
    top: 28vh;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 3;
  }

  .bahamut_comment {
    width: 70vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 45vh;
    left: 0;
    margin: auto;
    z-index: 3;
  }
}

/*------------------------------------------------------------------------------------------------
幻神紹介内容end
------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------
武器紹介タブ切り替えボタン
------------------------------------------------------------------------------------------------*/

/*
デュアルレーザー
*/

.duallaser_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 140px;
  right: 20.5vw;
  z-index: 99;
}

.duallaser_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.duallaser_btn_wrap .duallaser_btn_after:last-of-type {
    opacity: 0;
}

.duallaser_btn_wrap:hover .duallaser_btn_after:last-of-type {
    opacity: 1;
}

/*
ドラゴドール
*/

.dragodoll_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 400px;
  right: 20.5vw;
  z-index: 99;
}

.dragodoll_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.dragodoll_btn_wrap .dragodoll_btn_after:last-of-type {
    opacity: 0;
}

.dragodoll_btn_wrap:hover .dragodoll_btn_after:last-of-type {
    opacity: 1;
}

/*
太刀
*/

.tachi_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 220px;
  right: 15vw;
  z-index: 99;
}

.tachi_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.tachi_btn_wrap .tachi_btn_after:last-of-type {
    opacity: 0;
}

.tachi_btn_wrap:hover .tachi_btn_after:last-of-type {
    opacity: 1;
}

/*
ロッド
*/

.rod_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 330px;
  right: 15vw;
  z-index: 99;
}

.rod_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.rod_btn_wrap .rod_btn_after:last-of-type {
    opacity: 0;
}

.rod_btn_wrap:hover .rod_btn_after:last-of-type {
    opacity: 1;
}

/*
星天球
*/

.arcanaarts_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 330px;
  right: 26vw;
  z-index: 99;
}

.arcanaarts_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.arcanaarts_btn_wrap .arcanaarts_btn_after:last-of-type {
    opacity: 0;
}

.arcanaarts_btn_wrap:hover .arcanaarts_btn_after:last-of-type {
    opacity: 1;
}

/*
ツインソード
*/

.twinsword_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 220px;
  right: 26vw;
  z-index: 99;
}

.twinsword_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.twinsword_btn_wrap .twinsword_btn_after:last-of-type {
    opacity: 0;
}

.twinsword_btn_wrap:hover .twinsword_btn_after:last-of-type {
    opacity: 1;
}

@media screen and (max-width:1024px) {
  .dragodoll_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 49vw;
  top: 75vh;
  z-index: 99;
  }
  .dragodoll_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .duallaser_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 59vw;
  top: 75vh;
  z-index: 99;
  }
  .duallaser_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .tachi_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 69vw;
  top: 75vh;
  z-index: 99;
  }
  .tachi_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .rod_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 39vw;
  top: 75vh;
  z-index: 99;
  }
  .rod_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .arcanaarts_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 79vw;
  top: 75vh;
  z-index: 99;
  }
  .arcanaarts_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .twinsword_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 29vw;
  top: 75vh;
  z-index: 99;
  }
  .twinsword_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }
}

@media screen and (max-width:428px) {
  .dragodoll_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 34vw;
  top: 75vh;
  z-index: 99;
  }
  .dragodoll_btn_wrap img {
  position: absolute;
  max-width: 55px;
  margin: auto;
  transition: opacity 0.5s;
  }

  .duallaser_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 55.5vw;
  top: 75vh;
  z-index: 99;
  }
  .duallaser_btn_wrap img {
  position: absolute;
  max-width: 55px;
  margin: auto;
  transition: opacity 0.5s;
  }

  .tachi_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 55.5vw;
  top: 85vh;
  z-index: 99;
  }
  .tachi_btn_wrap img {
  position: absolute;
  max-width: 55.5px;
  margin: auto;
  transition: opacity 0.5s;
  }

  .rod_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 78vw;
  left: 0;
  top: 75vh;
  z-index: 99;
  }
  .rod_btn_wrap img {
  position: absolute;
  max-width: 55px;
  margin: auto;
  transition: opacity 0.5s;
  }

  .arcanaarts_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 78vw;
  top: 85vh;
  z-index: 99;
  }
  .arcanaarts_btn_wrap img {
  position: absolute;
  max-width: 55px;
  margin: auto;
  transition: opacity 0.5s;
  }

  .twinsword_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 34vw;
  top: 85vh;
  z-index: 99;
  }
  .twinsword_btn_wrap img {
  position: absolute;
  max-width: 55px;
  margin: auto;
  transition: opacity 0.5s;
  }
}

/*------------------------------------------------------------------------------------------------
武器紹介タブ切り替えボタンend
------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
幻神紹介タブ切り替えボタン
------------------------------------------------------------------------------------------------*/

/*
ガイア
*/

.gaia_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 250px;
  right: 21vw;
  z-index: 99;
}

.gaia_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.gaia_btn_wrap .gaia_btn_after:last-of-type {
    opacity: 0;
}

.gaia_btn_wrap:hover .gaia_btn_after:last-of-type {
    opacity: 1;
}

/*
イサナ
*/

.isana_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 180px;
  right: 15vw;
  /* right: 32vw; */
  z-index: 99;
}

.isana_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.isana_btn_wrap .isana_btn_after:last-of-type {
    opacity: 0;
}

.isana_btn_wrap:hover .isana_btn_after:last-of-type {
    opacity: 1;
}

/*
アルテミス
*/

.artemis_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 180px;
  /* right: 18vw; */
  right: 27vw;
  z-index: 99;
}

.artemis_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.artemis_btn_wrap .artemis_btn_after:last-of-type {
    opacity: 0;
}

.artemis_btn_wrap:hover .artemis_btn_after:last-of-type {
    opacity: 1;
}

/*
テュール
*/

.tyr_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 330px;
  /* right: 18vw; */
  right: 27vw;
  z-index: 99;
}

.tyr_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.tyr_btn_wrap .tyr_btn_after:last-of-type {
    opacity: 0;
}

.tyr_btn_wrap:hover .tyr_btn_after:last-of-type {
    opacity: 1;
}

/*
バハムート
*/

.bahamut_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  text-align: right;
  top: 330px;
  right: 15vw;
  /* right: 31vw; */
  z-index: 99;
}

.bahamut_btn_wrap img {
  position: absolute;
  max-width: 6.5vw;
  margin: auto;
  transition: opacity 0.5s;
}

.bahamut_btn_wrap .bahamut_btn_after:last-of-type {
    opacity: 0;
}

.bahamut_btn_wrap:hover .bahamut_btn_after:last-of-type {
    opacity: 1;
}

@media screen and (max-width:1024px) {
  .gaia_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 54vw;
  top: 77vh;
  z-index: 99;
  }
  .gaia_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .isana_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 64vw;
  top: 77vh;
  z-index: 99;
  }
  .isana_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .artemis_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 74vw;
  top: 77vh;
  z-index: 99;
  }
  .artemis_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .tyr_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 44vw;
  top: 77vh;
  z-index: 99;
  }
  .tyr_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .bahamut_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 34vw;
  top: 77vh;
  z-index: 99;
  }
  .bahamut_btn_wrap img {
  position: absolute;
  max-width: 8vw;
  margin: auto;
  transition: opacity 0.5s;
  }
}

@media screen and (max-width:428px) {
  .gaia_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 57.5vw;
  top: 76vh;
  z-index: 99;
  }
  .gaia_btn_wrap img {
  position: absolute;
  max-width: 15vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .isana_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 38vw;
  top: 76vh;
  z-index: 99;
  }
  .isana_btn_wrap img {
  position: absolute;
  max-width: 15vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .artemis_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 77.5vw;
  top: 76vh;
  z-index: 99;
  }
  .artemis_btn_wrap img {
  position: absolute;
  max-width: 15vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .tyr_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 68.5vw;
  top: 86vh;
  z-index: 99;
  }
  .tyr_btn_wrap img {
  position: absolute;
  max-width: 15vw;
  margin: auto;
  transition: opacity 0.5s;
  }

  .bahamut_btn_wrap {
  position: absolute;
	/* width: 80%; */
	height: auto;
	cursor: pointer;
  /* overflow: hidden; */
  display: block;
  /* text-align: right; */
  right: 48vw;
  top: 86vh;
  z-index: 99;
  }
  .bahamut_btn_wrap img {
  position: absolute;
  max-width: 15vw;
  margin: auto;
  transition: opacity 0.5s;
  }
}

/* ==========================
  タブ
========================== */


/* タブ */
.tab-list2 {
  display: flex;
  justify-content: space-between;
}
.tab-item2 {
  width: 19%;
  /* padding: 10px 0; */
  border-radius: 6px 6px 0 0;
  text-align: center;
  cursor: pointer;
  transition: .4s ease-in-out;
}

/* パネル */
.panel-list2 {
  background-color: #fff;
}
.panel-item2 {
  display: none;
  width: 100%;
  /* padding: 40px 30px; */
  background-color: #fff;
}
.panel-item2.is-active2 {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* タブ切り替えで使用するCSS */
.tab__layout {
  display: flex;
  flex-wrap: wrap;
}


.tab__button {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  order: -1;
  flex: 1 1;
}

  .tab__button:hover {
    opacity: 0.7;
  }

  input[type="radio"] {
    display: none;
  }

.tab__button:has(:checked) {
  cursor: default;
}

  .tab__button:hover {
    opacity: 1;
  }


.tab__content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden; /* 追加：描画フローから除外する */
  content-visibility: hidden;
}

.tab__button:has(:checked) + .tab__content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  border-top: none;
  visibility: visible; /* 追加：選択されたら見えるようにする */
  content-visibility: visible;
}

/* ==========================
  タブend
========================== */