@charset "utf-8";
/*+++++++++++++++++++++++++++++++++++++++++
  　root
*+++++++++++++++++++++++++++++++++++++++++*/
:root {
  --main-color: #CD0000;
  --color-orange: #FF8533;
  --color-black: #515457;
  --color-rightgray: #EBEBED;
  --color-white: #fff;
  --color-gapolimall: #5124CB;
  --color-gapolimall_bg: #F0ECFF;
  --color-pachi: #E21B22;
  --color-medal: #007AE9;
  --color-casino: #00A500;
  --color-videoslot: #302E72;
  --color-variety: #FF0CAE;
  --color-mahjong: #872dd4;

  --font-mPlus: 'M PLUS 1p', "Hiragino Kaku Gothic ProN", "Hiragino Sans W3",  "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

  --txtShadow : 0px 2px 0px rgba(0,0,0,0.16);
  --secShadow : linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
  --secShadow-top : linear-gradient(180deg, rgba(255,255,255,1) 0%);
  --secShadow-under :  linear-gradient(180deg, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);

  --situation-button: linear-gradient(147.36deg, #fe6705 39.04%, #f1bb32 100%);
}


/*+++++++++++++++++++++++++++++++++++++++++
  　共通
*+++++++++++++++++++++++++++++++++++++++++*/
body {
  font-size: 16px;
  line-height: 1.5;
  font-family:  'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans W3",  "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color-black);
  display: none;
}

main {
  overflow: hidden;
}

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content:space-between;
  justify-content:space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*----- header -----*/
.header__logo a picture img {
	width: 253px;
  max-width: initial;
}
.header {
  display: flex;
  justify-content: space-between;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 9;
}
.header__navArea {
  transition: all 0.4s;
}
.header-top .header__logo {
  opacity: 0;
  transition: all .5s;
}
.header__logo-sp {
  text-align: center;
}
.header__nav {
	display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.header__nav a {
  font-family: var(--font-mPlus);
  font-size: 22px;
  color: var(--color-black);
  text-shadow: 0px 2px 0px rgba(0,0,0,0.16);
}
.header__nav a:hover {
  color: var(--color-orange);
}
.header_playgame {
  margin-top: 40px;
  text-align: center;
}

#hamburger {
  display: none;
}
.hamburger {
  position: relative;
}
.hamburger-bar,
.hamburger-bar span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.hamburger-bar {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 28px;
  cursor: pointer;
  z-index: 9999;
}
.hamburger-bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--situation-button);
}
.hamburger-bar span:nth-of-type(1) {
  top: 0;
}
.hamburger-bar span:nth-of-type(2) {
  top: 12px;
}
.hamburger-bar span:nth-of-type(3) {
  bottom: 0;
}
.header-on .hamburger-bar span:nth-of-type(1) {
  transform: translateY(12px) rotate(-315deg);
}
.header-on .hamburger-bar span:nth-of-type(2) {
  opacity: 0;
}
.header-on .hamburger-bar span:nth-of-type(3) {
  transform: translateY(-12px) rotate(315deg);
}
.header.transform {
  background: rgba(255,255,255,.8);
  transition: all .2s;
}
.header-top.transform .header__logo {
  opacity: 1;
}

.header__nav li a picture img{
  height: 40px;
}

@media screen and (max-width: 767px) {
  .header__navArea {
    padding-top: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-rightgray);
    padding: 60px 40px 20px 40px;
  }
  .header__nav {
    margin-top: 20px;
  }
  .header__nav li a picture img{
    height: 60px;
    width: 100%;
    max-width: 156px;
  }
	#hamburger:checked ~ #nav {
		display: block;
		right: 0;
	}
	.header-on {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
}
@media screen and (min-width: 768px) {
  :is(.header__logo-sp, .header_playgame, #hamburger, .hamburger) {
    display: none;
  }
  .header {
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: rgba(0,0,0,0);
    transition: all .5s;
  }
  .header__navArea {
    width: calc(100% - 293px);
  }
  .header__nav {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
  }
  .header__nav a {
    font-size: 18px;
  }
}
/*----- footer -----*/
.footer {
  padding: 40px 20px;
  background: var(--color-black);
  text-align: center;
  color: var(--color-white);
}
.footer_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_list:nth-of-type(n+2) {
  margin-top: 20px;
}
.footer_list li a {
  padding-left: 5px;
}
.footer_list li a:hover {
  color: var(--color-orange);
}
.copyright {
  margin-top: 40px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer_list {
    align-items: center;
    text-align: left;
  }
  .footer_list li {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }
  .footer_list {
    justify-content: center;
    gap: 40px;
  }
  .copyright {
    font-size: 14px;
  }
}

/*----- loding -----*/
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .loader__logo {
    padding: 40px 0;
  }
  .loader__logo img {
    max-width: 335px;
  }
}

/*----- copyright icons -----*/
.music__copyright {
  padding: 20px 30px 20px;
}
.music__copyright__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.music__copyright__list img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  .music__copyright {
    padding: 40px 30px 40px;
  }
  .music__copyright__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .music__copyright__list img {
    width: 70px;
  }
}

/*----- sns -----*/
.sns {
  padding: 60px 20px 100px;
}
.sns__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
.sns__list img {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .sns {
    padding: 80px 20px 120px;
  }
  .sns__list {
    gap: 40px;
  }
  .sns__list img {
    width: 90px;
  }
}

/*----- ぱんくず -----*/
.breadcrumb {
  padding: 5px 0;
  background: var(--color-rightgray);
}
.breadcrumb__list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.breadcrumb__list li {
  position: relative;
}
.breadcrumb__list li:nth-of-type(n+2)::before {
  content: url(../images/icon/icon-arrow-right.svg);
  position: absolute;
  top: 0;
  left: -12px;
}
.breadcrumb__list span {
  color: var(--color-orange);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb__list {
    gap: 26px;
  }
  .breadcrumb__list li:nth-of-type(n+2)::before {
    left: -15px;
  }
}

/*----- コンテンツ -----*/
.inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1040px;
}
.inner_wide {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}
.over {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
img {
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .pc { display: none; }
}
@media screen and (min-width: 768px) {
  .sp { display: none; }
}

/*----- テキスト -----*/
.mPlus {
  font-family: var(--font-mPlus);
  font-weight: 700;
}

/*----- タイトル -----*/
.title {
  font-size: 32px;
  font-family: var(--font-mPlus);
  text-shadow: var(--txtShadow);
  letter-spacing: -2px;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 48px;
  }
}

/*----- ボタン -----*/
.btn {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  text-align: center;
  padding: 12px 0 14px;
  background: linear-gradient(147.36deg, #fe6705 39.04%, #f1bb32 100%);
  border: 2px solid #f85900;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: .04em;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  color: #fff;
}
.btn__de {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}
.btn__de:before {
  position: absolute;
  width: 61px;
  height: 197px;
  top: -130px;
  left: -76px;
  content: "";
  display: inline-block;
  background: linear-gradient(180.12deg, rgba(209, 151, 255, .2) .07%, rgba(219, 202, 255, .8) 29.27%, rgba(223, 135, 245, .5) 53.46%);
  mix-blend-mode: overlay;
  -webkit-transform: rotate(75deg);
  transform: rotate(75deg);
  -webkit-clip-path: polygon(100% 0%,0% 90%,100% 50%);
  clip-path: polygon(100% 0%,0% 90%,100% 50%);
}
.btn__de:after {
  position: absolute;
  width: 37px;
  height: 144px;
  top: -54px;
  left: 60px;
  content: "";
  display: inline-block;
  background: linear-gradient(182.12deg, #28e6fd 50.64%, rgba(179, 102, 240, .24) 96.31%);
  mix-blend-mode: overlay;
  -webkit-transform: rotate(102deg);
  transform: rotate(102deg);
  -webkit-clip-path: polygon(50% 0%,50% 90%,100% 100%);
  clip-path: polygon(50% 0%,50% 90%,100% 100%);
}
.btn:hover:not(:disabled) {
  filter: brightness(.95);
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 16px;
  }
}

.btn.btn-red {
  background: linear-gradient(147.36deg, #ef3b38 39.04%, #ff6565 100%);
  border-color: #e82420;
}
.btn.btn-green {
  background: linear-gradient(147.36deg, #39cd4d 39.04%, #88e568 100%);
  border-color: rgba(61, 188, 78);
}
.btn.btn-blue {
  background: linear-gradient(147.36deg, #3f8cf4 39.04%, #28e6fd 100%);
  border-color: rgba(57, 126, 219);
}
.btn.btn-darkblue {
  background: linear-gradient(147.36deg, #041079 39.04%, #6872cc 100%);
  border-color: #061387;
}
.btn.btn-rightblue {
  background: linear-gradient(147.36deg, #6DDBE0 39.04%, #97ffff 100%);
  border-color: #6DDBE0;
}
.btn.btn-pink {
  background: linear-gradient(147.36deg, #da21a6 39.04%, #ff4ec3 100%);
  border-color: rgba(200, 0, 156);
}
.btn.btn-purple {
  background: linear-gradient(147.36deg, #8019F7 39.04%, #C422F2 100%);
  border-color: #8019F7;
}
.btn.btn-pinkpurple {
  background: linear-gradient(147.36deg, #D029C5 39.04%, #CA4FFA 100%);
  border-color: #D029C5;
}
.btn.btn-brown {
  background: linear-gradient(147.36deg, #9A541E 39.04%, #B88F71 100%);
  border-color: #9A541E;
}

/*----- セクション間ぼかし -----*/
.secShadow {
  position: relative;
}
.secShadow::before {
  content: "";
  background: var(--secShadow);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.secShadow-top::before {
  background: var(--secShadow-top);
}
.secShadow-under::before {
  background: var(--secShadow-under);
}

/*----- ボックス -----*/
.box__title {
  padding: 10px 0;
  background: var(--main-color);
  border-radius: 10px 10px 0 0;
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
}
.box__content {
  padding: 30px 20px;
  border: 3px solid var(--main-color);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.box__catch {
  text-align: center;
  font-weight: 600;
}
.box__subtitle {
  margin: 0 auto 20px;
  padding: 5px 10px;
  width: 170px;
  text-align: center;
  font-weight: 600;
  background: var(--color-rightgray);
}
.box__mt {
  margin-top: 20px;
}
.box__mt-l {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .box__title {
    font-size: 24px;
    border-radius: 16px 16px 0 0;
  }
  .box__content {
    padding: 40px;
    border-radius: 0 0 16px 16px;
  }
  .box__catch {
    font-size: 28px;
  }
  .box__img {
    margin: 0 auto;
    display: flex;
    max-width: 400px;
  }
  .box__mt {
    margin-top: 40px;
  }
}

/*----- ブロック -----*/
.bg-w {
  background: rgba(255,255,255,.5);
  border-radius: 16px;
}
.bg-check {
  position: relative;
  background: url(../images/common/check-bg.webp);
}
.bg-check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: red;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*----- iframe -----*/
.iframe {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.iframe iframe  {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/*----- 共通下層ページ -----*/
.page-title {
  margin-top: 70px;
  padding: 10px;
  background: var(--situation-button);
  text-align: center;
  font-size: 20px;
  font-family: var(--font-mPlus);
  color: var(--color-white);
  text-shadow: var(--txtShadow);
}
.page-area {
  padding: 40px 20px;
  background: var(--color-rightgray);
}

.pageNav {
  padding: 28px 0 40px;
  position: relative;
  background: var(--secShadow-under), url("../images/common/KV.webp") no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  overflow: hidden;
}
.pageNav:before{
  content: '';
  background: inherit;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  position: absolute;
  top: -1px;
  left: -2px;
  right: -2px;
  bottom: -2px;
}
.pageNav__catch {
  padding: 40px 5px;
  background: rgba(255,255,255,.8);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.pageNav__list {
  margin: 0 auto;
  max-width: 530px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.pageNav__list-mt {
  margin-top: 20px;
}
.pageNav__list li {
  width: calc(50% - 8px);
}
.pageNav__btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(147.36deg, #fe6705 39.04%, #f1bb32 100%);
  border: 2px solid #f85900;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-mPlus);
  font-size: 14px;
  line-height: 140%;
  letter-spacing: .04em;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  color: var(--color-white);
}
.pageNav__btn::after {
  content: url(../images/icon/icon-arrow-bottom.svg);
  position: absolute;
  right: 10px;
}
.pageNav__btn:hover:not(:disabled) {
  filter: brightness(.95);
}
@media screen and (min-width: 768px) {
  .page-title {
    padding: 24px 10px;
    font-size: 32px;
  }
  .page-area {
    padding: 80px 40px;
  }

  .pageNav {
    padding: 80px 10px 96px;
  }
  .pageNav__catch {
    padding: 40px 20px;
    font-size: 32px;
  }
  .pageNav__list {
    width: fit-content;
    max-width: 820px;
    gap: 32px;
  }
  .pageNav__list-mt {
    margin-top: 40px;
  }
  .pageNav__list li {
    width: 250px;
  }
  .pageNav__btn {
    padding: 15px 20px;
    font-size: 16px;
    border-width: 3px;
  }
}

.page-box {
  padding: 20px 0;
  background: var(--color-white);
  border-radius: 10px;
}
.page-box_b {
  font-weight: 600;
}
.page-box_tr {
  text-align: right;
}
.page-box_tc {
  text-align: center;
}
.page-box_r {
  margin-left: auto;
  width: fit-content;
}
.page-box_mts {
  margin-top: 10px;
}
.page-box_mtm {
  margin-top: 16px;
}
.page-box_mt {
  margin-top: 20px;
}
.page-box_mtl {
  margin-top: 40px;
}
.page-box_indent {
  padding-left: 1em;
}
.page-box_indent_annotation {
  padding-left: 2em;
  padding-top: 0.5em;
}
.page-box_hanging {
  text-indent : -1em;
}
.page-box a {
  color: var(--color-orange);
  text-decoration: underline;
}
.page-box__list > li:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-box__list > li:nth-child(n+2) {
    margin-top: 80px;
  }
}

/*----- title -----*/
.page-box__title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.page-box__title02 {
  padding: 5px 0 5px 15px;
  border-left: 5px solid var(--color-orange);
  font-size: 18px;
  font-weight: 600;
}
.page-box__title03 {
  padding: 10px;
  background: var(--color-rightgray);
  font-weight: 600;
}
.page-box__title03 span {
  font-size: 14px;
}
.page-box__title04 {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page-box__title {
    font-size: 28px;
  }
  .page-box__title02 {
    font-size: 24px;
  }
  .page-box__title03 {
    font-size: 18px;
  }
  .page-box__title03 span {
    font-size: 14px;
  }
}

/*----- table -----*/
.page-box__table tr th {
  border-top: 1px solid var(--color-white);
}
.page-box__table tr td {
  border-top: 1px solid var(--color-rightgray);
}
.page-box__table :is(th,td) {
  padding: 10px;
  width: 100%;
}
.page-box__table th {
  background: var(--color-rightgray);
}
.page-box__table td h3 {
  font-weight: 600;
}

/*----- inner -----*/
.page-box__inner {
  padding: 10px;
}
.page-box__inner-list {
  margin-top: 10px;
}
.page-box__inner-list li {
  padding-left: 20px;
  position: relative;
}
.page-box__inner-list li:nth-of-type(n+2) {
  margin-top: 5px;
}
.page-box__inner-list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-orange);
  position: absolute;
  top: 5px;
  left: 0;
}

/*----- list -----*/
.page-box__list-number {
  padding-left: 1.0rem;
}
.page-box__list-number > li {
  list-style: decimal;
}
.page-box__list-number > li:nth-of-type(n+2) {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .page-box__table tr {
    display: flex;
    flex-direction: column;
  }
  .page-box__table tr td {
    margin-bottom: 20px;
    word-break: break-all;
  }
}
@media screen and (min-width: 768px) {
  .page-box_mt {
    margin-top: 40px;
  }
  .page-box_mtl {
    margin-top: 80px;
  }
  .page-box {
    padding: 40px 0;
    border-radius: 16px;
  }
  .page-box__table th {
    width: 30%;
  }
  .page-box__table td {
    width: 70%;
    border-right: 1px solid var(--color-rightgray);
  }
  .page-box__table tr:last-of-type th {
    border-bottom: 1px solid var(--color-white);
  }
  .page-box__table tr:last-of-type td {
    border-bottom: 1px solid var(--color-rightgray);
  }
}

/*----------------------------
　アニメーション
----------------------------*/
.scroll_up {
  transform: translateY(80px);
  opacity: 0;
}
.scroll_up.on {
  transition: 1s ease-in-out;
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up.scroll_up-s {
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.scroll_up-s.on {
  transition: .5s ease-in-out;
  transform: translateY(0);
  opacity: 1.0;
}

.zoomIn {
  transform: translateY(0);
  opacity: 0;
}
.zoomIn.on {
  transform: translateY(0);
  animation: zoom-out-anim 2s;
  opacity: 1;
}
@keyframes zoom-out-anim {
	0% {
    transform: scale(2.0);
    opacity: 0;
	}
	100% {
    transform: scale(1);
    opacity: 1;
	}
}
@media screen and (min-width: 768px) {
  .zoomIn.on {
    animation: zoom-out-anim 1s;
  }
  @keyframes zoom-out-anim {
    0% {
      transform: scale(1.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　トップページ
  　　index.html
*+++++++++++++++++++++++++++++++++++++++++*/
/* -- header -- */
@media screen and (min-width: 768px) {
  .header-top {
    transform: translateY(-100%);
    opacity: 0;
  }
  .header-top.on {
    transition: 1s ease-in-out;
    transform: translateY(0);
    opacity: 1.0;
    z-index: 99;
  }
  @keyframes zoom-outmv {
    0% {
      transform: scale(2.0);
    }
    100% {
      transform: scale(1);
    }
  }
}
/*----------------------------
　kv
----------------------------*/
.kv {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 15%, rgba(255,255,255,0.5) 90%,rgba(255,255,255,1) 100%), url(../images/common/kv_sp.webp) center / cover;
  box-shadow: whitesmoke;
  position: relative;
}
.kv__box {
  margin-top: 10%;
  padding: 20px;
  text-align: center;
}
.kv__box-img img {
  width: 100%;
  max-width: 335px;
  margin-top: 5%;
}
.kv__box-catchSub {
  margin: 16px auto 0;
  width: fit-content;
  background: var(--situation-button);
  padding: 2px 20px;
  font-family: var(--font-mPlus);
  color: var(--color-white);
  text-shadow: var(--txtShadow);
}

.kv__background {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.kv__background::after {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .5;
}

.kv__background img{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.kv__playgame-sp picture img {
  max-width: 300px;
}
@keyframes anime1 {
  from {
    transform: scale(0.95,0.95);
  }
  to {
    transform: scale(1.1,1.1);
  }
}

.kv__banner {
  width: 100%;
  padding: 20px 0;
}
.kv__banner-list {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 20px;
  position: relative;
}
.slick-slide {
  padding: 0 .1%;
}
.kv__banner .slick-arrow {
  position: absolute;
  width: 50px;
  top: calc(50% - 25px);
  left: -10px;
}
.kv__banner .slick-next {
  right: -10px;
  left: auto;
  transform: rotate(180deg);
}

.kv__scroll {
  position: absolute;
  bottom: 60px;
  width: 24px;
  height: 24px;
}
.kv__scroll-chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.kv__scroll-chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.kv__scroll-chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.kv__scroll-chevron:before,
.kv__scroll-chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--situation-button);
}
.kv__scroll-chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.kv__scroll-chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .kv {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 15%, rgba(255,255,255,0.5) 90%,rgba(255,255,255,1) 100%), url(../images/common/kv_pc.webp) center / cover;
    position: relative;
    /* padding: 7%; */
  }

  .kv__box {
    width: 100%;
    display: flex;
    flex-flow: column;
    margin-top: auto;
  }
  .kv__playgame-pc {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }

  .kv__scroll {
    bottom: 10px;
  }
  .kv__scroll,
  .kv__scroll-chevron {
    width: 40px;
  }

  .transparent_animation:hover{
    opacity: 0.8;
  }
}

/* -- アニメーション -- */
.mv-zoomIn {
  transform: translateY(0);
  opacity: 0;
}
.mv-zoomIn.on {
  transform: translateY(0);
  animation: zoom-outmv 1.3s;
  opacity: 1;
}
@keyframes zoom-outmv {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.kv__banner, .kv__scroll {
  transform: translateY(100%);
  opacity: 0;
}
.kv__banner.on, .kv__scroll.on {
  transition: 1s ease-in-out;
  transform: translateY(0);
  opacity: 1.0;
}

.trial_button{
  margin: 60px 0px 20px;
}

.registed_button{
  margin: 10% 0 5% 0
}

.campaign_banner_box{
  margin: 0 5%;
  text-align: center;
}

/*----------------------------
　whatsGapoli - GAPOLIとは？
----------------------------*/
.whatsGapoli {
  overflow: hidden;
  padding: 60px 20px;
  background: var(--secShadow), url(../images/common/KV.webp) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.whatsGapoli .bg-w {
  position: relative;
  background: rgba(255,255,255,.8);
  padding: 20px 14px 40px 14px;
}
.whatsGapoli .title {
  color: #888899;
}
.whatsGapoli__text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
}
.whatsGapoli__text p {
  margin-bottom: 1rem;
}

.whatsGapoli__subCatch {
  width: clamp(9.688rem, 3.063rem + 35.332vw, 20rem);
}
.whatsGapoli__video {
  padding: 5px;
  margin-top: 20px;
  background: var(--situation-button);
}

.whatsGapoli__btn {
  margin-top: 40px;
}

.whatsGapoli__coin {
  position: absolute;
  width: 100px;
  z-index: 2;
}
.whatsGapoli__coin {
  animation: 2.5s fuwafuwa infinite;
}
.whatsGapoli__coin-l {
  top: 200px;
  left: -30px;
  animation-delay: 1.5s;
}
.whatsGapoli__coin-r {
  top: 20px;
  right: -30px;
  animation-delay: .8s;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media screen and (max-width: 767px) {
  .whatsGapoli__catch {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
    max-width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .whatsGapoli {
    padding: 80px 20px;
  }
  .whatsGapoli .bg-w {
    padding: 40px;
  }
  .whatsGapoli__text {
    font-size: 28px;
  }
  .whatsGapoli__subCatch {
    margin-top: 40px;
  }
  .whatsGapoli__catch {
    max-width: 700px;
  }
  .whatsGapoli__video {
    margin: 40px auto 0;
    padding: 10px;
    max-width: 600px;
  }
  .whatsGapoli__coin {
    width: 150px;
  }
  .whatsGapoli__coin-l {
    left: -60px;
  }
  .whatsGapoli__coin-r {
    right: -60px;
  }
  @keyframes fuwafuwa {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
}

/*----------------------------
　manyGame -
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop {
  display: flex;
  overflow: hidden;
}
.loop__list {
  display: flex;
  list-style: none;
}
.loop__list-left{
  animation :infinity-scroll-left 30s infinite linear 0.5s both;
}
.loop__list li {
  width: calc(100vw / 4);
}
.loop__list li > picture img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .loop__list li {
    width: calc(100vw / 9);
  }
}

.manyGame__bg {
  padding: 60px 20px;
  background: var(--secShadow-under), url(../images/index/manyGame-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.manyGame__text {
  font-size: 18px;
  font-weight: 900;
  line-height: 2.0;
  text-align: center;
}
.manyGame__text img {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .manyGame__text img {
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  .manyGame__bg {
    padding: 80px 40px;
  }
  .manyGame__text {
    font-size: 28px;
  }
}

/* ピックアップゲーム */
.manyGame__pickUp {
  margin-top: 30px;
}
.manyGame__pickUp .box__title {
  background: #e82420;
}
.manyGame__pickUp .box__content {
  border-color: #e82420;
}
.manyGame__pickUp-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.manyGame__pickUp-list li {
  width: calc(33% - 10px);
}
.manyGame__btn {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .manyGame__pickUp-title {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .manyGame__pickUp {
    margin-top: 60px;
  }
  .manyGame__pickUp-list li {
    padding: 20px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0px 0px 2px rgba(0,0,0,.16);
  }
  .manyGame__pickUp-icon {
    width: 40%;
  }
  .manyGame__pickUp-title {
    width: calc(60% - 10px);
    font-size: 14px;
    font-weight: 600;
  }
  .manyGame__btn {
    margin-top: 40px;
  }
}

/*----------------------------
　gapolimall - GAPOLIモール
----------------------------*/
.gapolimall {
  padding: 60px 20px;
  text-align: center;
}
.gapolimall.bg-check::before {
  content: "";
  background: var(--secShadow);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gapolimall.bg-check::after {
  background: var(--color-gapolimall_bg);
}
.gapolimall .title {
  color: var(--color-gapolimall);
}
.gapolimall__text {
  font-weight: 600;
}
.gapolimall__gift {
  padding: 20px;
  margin-top: 20px;
}
.gapolimall_btn {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .gapolimall {
    padding: 80px 20px;
  }
  .gapolimall__text {
    font-size: 24px;
  }
  .gapolimall__gift {
    margin-top: 40px;
    padding: 40px;
    max-width: 800px;
  }
  .gapolimall_btn {
    margin-top: 40px;
  }
}

/*----------------------------
　news - お知らせ
----------------------------*/
.news {
  padding: 60px 20px;
  background: var(--secShadow), var(--color-rightgray);;
  position: relative;
}
.news .title {
  text-align: center;
  color: var(--color-orange);
}
.news__box {
  margin-top: 20px;
  padding: 20px;
  border: 3px solid var(--color-orange);
  background: var(--color-white);
  border-radius: 10px;
}
.news__date {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 12px;
}
.news__scroller{
  overflow:auto;
  height: 20em;
}
.news__list {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.news__list li:nth-of-type(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-rightgray);
}
@media screen and (min-width: 768px) {
  .news__box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 16px;
  }
  .news__list li {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .news__list li:nth-of-type(n+2) {
    margin-top: 15px;
    padding-top: 15px;
  }
  .news__date {
    font-size: 14px;
    width: 120px;
  }
  .news__title {
    font-size: 20px;
    width: calc(100% - 120px);
  }
}

/*----------------------------
　news - キャンペーン告知
----------------------------*/
.campaign__box {
  margin-top: 20px;
  padding: 20px;
  border: 6px solid var(--color-orange);
  background: var(--color-white);
  border-radius: 10px;
}

.campaign__title {
  font-size: 24px;
  text-align: center;
  justify-content: center;
  color: var(--color-orange);
  font-weight: bold;
  text-shadow:
  var(--color-rightgray) 1px 1px 2px, var(--color-rightgray) -1px 1px 2px,
  var(--color-rightgray) 1px -1px 2px, var(--color-rightgray) -1px -1px 2px;
  margin-bottom: 20px;
}

.campaign__sub__title {
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
}

.campaign__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 20px;
}

.campaign__list__item {
  font-size: 16px;
  text-align: left;
  margin: 0 15%;
}

@media screen and (min-width: 768px) {
  .campaign__box {
    margin-top: 40px;
    padding: 40px;
    border: 12px solid var(--color-orange);
    border-radius: 18px;
  }

  .campaign__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .campaign__sub__title {
    font-size: 24px;
  }

  .campaign__list {
    margin-top: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
  }

  .campaign__list__item {
    font-size: 24px;
    margin: 0 10%;
  }

  .campaign__list li {
    width: calc(50% - 20px);
  }
}



/*+++++++++++++++++++++++++++++++++++++++++
  　GAPOLIとは？
  　　/about/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
/*----------------------------
　GAPOLIとは？
----------------------------*/
.whatsGapoli-page {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .whatsGapoli-page .whatsGapoli__text {
    margin-top: 10px;
    line-height: 2.0;
  }
  .whatsGapoli-page .whatsGapoli__subCatch {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .whatsGapoli-page {
    padding-top: 120px;
  }
}

/*----------------------------
　特徴
----------------------------*/
.title__feature {
  margin: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title__feature {
    margin: 40px 0;
  }
}

/*----- 共通 -----*/
.feature_area {
  padding: 60px 0;
  background: var(--secShadow), url(../images/common/check-bg.webp);
}
.feature_area:first-of-type {
  padding-top: 0;
}
.feature__title {
  margin-bottom: 28px;
  padding: 0 20px;
  text-align: center;
}
.feature__title img {
  width: 100%;
  max-width: 469px;
}
.feature__catch {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .feature_area {
    padding: 160px 0;
  }
  .feature__title {
    margin-bottom: 60px;
  }
  .feature__catch {
    font-size: 24px;
    line-height: 2.0;
  }
}

/*----- GAME -----*/
.featureGame::after {
  background: #F8ECFF;
}
.feature__catch-featureGame span {
  color: #D029C5;
}
.loop-featureGame li {
  width: calc(100vw / 3);
}
.featureGame_btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .loop-featureGame {
    margin-top: 28px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .featureGame_btn {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .featureGame__box {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
  .featureGame__content {
    width: calc(70% - 40px);
  }
  .loop-featureGame {
    width: 30%;
    margin-right: calc(50% - 50vw);
  }
  .loop-featureGame li {
    width: max-content;
    height: 440px;
  }
}

/*----- LIVE配信 -----*/
.featureLive::after {
  background: #DCEAEB;
}
.feature__catch-featureLive span {
  color: #1DB9E5;
}
.featureLive__image {
  margin: 28px auto 0;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.featureLive__image-hukidasi {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}
@keyframes yurayura {
  0% , 100%{
    transform: rotate(5deg);
  }
  50%{
    transform: rotate(-5deg);
  }
}
@media screen and (min-width: 768px) {
  .featureLive__box {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .featureLive__content {
    width: calc(45% - 40px);
  }
  .featureLive__image {
    width: 55%;
  }
}

/*----- GAPOLIモール -----*/
.featureGapolimall::after {
  background: #F0ECFF;
}
.feature__catch-Gapolimall span {
  color: #651FE5;
}

.featureGapolimall__box {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.featureGapolimall__coin {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: 400px;
}
.featureGapolimall__coin-coin {
  width: 40%;
  max-width: 200px;
}
.featureGapolimall__coin-gameplay {
  width: calc(60% - 10px);
}
.featureGapolimall__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.featureGapolimall__arrow img {
  width: 100px;
}
.featureGapolimall__change {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.featureGapolimall__change-text {
  max-width: 400px;
  width: 100%;
}
.featureGapolimall__btnArea-other {
  margin: 40px auto 28px;
  text-align: center;
}
.featureGapolimall__otherLink {
  font-size: 12px;
  color: var(--color-black);
}
.featureGapolimall__btnArea {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .featureGapolimall__arrow img {
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 768px) {
  .feature__catch-Gapolimall {
    text-align: center;
  }
  .featureGapolimall__box {
    margin-top: 80px;
    flex-direction: row;
    gap: 40px;
  }
  .featureGapolimall__coin {
    flex-direction: column;
    justify-content: center;
  }
  .featureGapolimall__coin-coin, .featureGapolimall__coin-gameplay {
    width: 100%;
  }
}

/*----- PORTABILITY -----*/
.featurePortability::after {
  background: #E3DDD3;
}
.feature__catch-portability span {
  color: #9A541E;
}
.featurePortability__btnArea {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__catch-portability {
    text-align: center;
  }
}

/*----- COURSE -----*/
.featureCourse::after {
  background: #EFDFE2;
}
.feature__catch-Course span {
  color: #C7203A;
}
.featureCourse__btnArea {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__catch-Course {
    text-align: center;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　プレイガイド
  　　/playguide/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.pageNav__btn.pageNav__btn-start {
  background: linear-gradient(147.36deg, #162287 39.04%, #6470CE 100%);
  border-color: #162287;
}
.pageNav__btn.pageNav__btn-rule {
  background: linear-gradient(147.36deg, #9562F6 39.04%, #E93BF6 100%);
  border-color: #E93BF6;
}
.pageNav__btn.pageNav__btn-shop {
  background: linear-gradient(147.36deg, #9B4FD5 39.04%, #4782EA 100%);
  border-color: #4782EA;
}
.pageNav__btn.pageNav__btn-live {
  background: linear-gradient(147.36deg, #6EE1F6 39.04%, #6DCBA7 100%);
  border-color: #6DCBA7;
}

.playguide_area {
  margin-top: 40px;
}
.playguide_area .btnArea {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .playguide_area {
    margin-top: 80px;
  }
  .playguide_area .btnArea {
    margin: 40px auto 0;
    text-align: center;
  }
}

/*----- ゲームの始め方 -----*/
.playguide-start .box__title {
  background: #253195;
}
.playguide-start .box__content {
  border-color: #253195;
}
.playguide-start__startBtn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.playguide-start__startBtn img {
  width: 90%;
}
.playguide-start__startBtn picture img {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.playguide-start__img {
  text-align: center;
}
.playguide-start__img img {
  box-shadow: 0 0 6px rgb(0 0 0 / 16%);
  border-radius: 16px;
}
.playguide-start__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.playguide_border{
  padding: 20px;
  margin-bottom: 10px;
  margin-top: 5%;
  border: 1px solid #a9a9a9;
  border-radius: 10px;
}

.playguide_registed{
  padding: 5% 0 5% 0;
}

.playguide_store_icon_list{
  display: flex;
  justify-content: center;
  width: 100%;
}

.playguide_store_icon_google{
  padding-left: 5%;
  max-width: 45%;
}

.playguide_store_icon_google>a>picture>img{
  max-width: 98%;
}

.playguide_store_icon_apple{
  padding-right: 5%;
  width: 40%;
}

.playguide_store_icon_apple>a>picture>img{
  max-width: 100%;
  /* height: 100%; */
}

@media screen and (min-width: 768px) {
  .playguide-start__box {
    flex-direction: row;
    gap: 40px;
  }
  .playguide-start__img, .playguide-start__content {
    width: calc(50% - 20px);
  }
  .playguide-start__startBtn img {
    max-width: 250px;
  }
  .playguide_store_icon_list{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .playguide_store_icon_google{
    display: flex;
    justify-content: center;
    width: 40%
  }
  .playguide_store_icon_google>a>picture>img{
    max-width: 98%;
  }
  .playguide_store_icon_apple{
    display: flex;
    justify-content: center;
    width: 41%
  }
  .playguide_store_icon_apple>a>picture>img{
    max-width: 100%;
    height: 100%;
  }
}

/*----- ゲームの遊び方 -----*/
.playguide-rule .box__title {
  background: #CD48F6;
}
.playguide-rule .box__content {
  border-color: #CD48F6;
}
.playguide-rule__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .playguide-rule__box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
  }
  .playguide-rule__box-txt01 {
    order: 1;
    width: 100%;
  }
  .playguide-rule__box-txt02 {
    order: 2;
    width: 100%;
  }
  .playguide-rule__box-img01 {
    order: 3;
    width: 50%;
    height: auto;
    height: fit-content;
  }
  .playguide-rule__box-img02 {
    order: 4;
    max-width: 300px;
  }
}

/*----- SHOP -----*/
.playguide-shop .box__title {
  background: #5F73E4;
}
.playguide-shop .box__content {
  border-color: #5F73E4;
}
.playguide-shop__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .playguide-shop__list dt {
    margin-bottom: 10px;
  }
  .playguide-shop__list dt:nth-of-type(n+2) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .playguide-shop__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  .playguide-shop__list dt {
    margin: 0;
    height: fit-content;
  }
  .playguide-shop__list dd {
    width: calc(100% - 210px);
  }
}

/*----- LIVE配信 -----*/
.playguide-live .box__title {
  background: #6DDBE0;
}
.playguide-live .box__content {
  border-color: #6DDBE0;
}

/*----- GAPOLIモール -----*/
.playguide-mall .box__title {
  background: var(--color-orange);
}
.playguide-mall .box__content {
  border-color: var(--color-orange);
}
.playguide-mall__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .playguide-mall__box {
    flex-direction: row;
    gap: 40px;
  }
  .playguide-mall__img, .playguide-mall__content {
    width: calc(50% - 20px);
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　ゲーム紹介
  　　/game/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
/*----------------------------
　ナビ
----------------------------*/
.pageNav__list-game a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.pageNav__list-game a img {
  width: 30px;
}
.pageNav__btn.pageNav__btn-pachi {
  padding: 13px 5px;
  background: linear-gradient(147.36deg, var(--color-pachi), #f18c8f 100%);
  border-color: var(--color-pachi);
  line-height: 1.0;
}
.pageNav__btn.pageNav__btn-medal {
  background: linear-gradient(147.36deg, var(--color-medal), #6ab7ff 100%);
  border-color: var(--color-medal);
}
.pageNav__btn.pageNav__btn-casino {
  background: linear-gradient(147.36deg, var(--color-casino), #00f200 100%);
  border-color: var(--color-casino);
}
.pageNav__btn.pageNav__btn-videoslot {
  background: linear-gradient(147.36deg, var(--color-videoslot), #6461bf 100%);
  border-color: var(--color-videoslot);
}
.pageNav__btn.pageNav__btn-variety {
  background: linear-gradient(147.36deg, var(--color-variety), #ff8cd9 100%);
  border-color: var(--color-variety);
}
.pageNav__btn.pageNav__btn-mahjong {
  background: linear-gradient(147.36deg, var(--color-mahjong), #bd77f9 100%);
  border-color: var(--color-mahjong);
}

@media screen and (max-width: 767px) {
  .pageNav__btn.pageNav__btn-videoslot {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .pageNav__list-game a {
    gap: 10px;
  }
  .pageNav__list-game a img {
    width: 60px;
  }
  .pageNav__btn.pageNav__btn-pachi {
    padding: 13px 20px;
  }
}

/*----------------------------
　ピックアップゲーム
----------------------------*/
.pickUp {
  padding: 80px 0;
  background: url("../images/game/pickUp-bg.webp");
}

.pickUp .title {
  text-align: center;
  color: var(--color-orange);
}

.pickUp__movie {
  background: var(--situation-button);
  padding: 5px;
}

.pickUp__movie-box {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
}
.pickUp__movie-box:hover {
  filter: brightness(.95);
}

.pickUp__movie-box img {
	width:100%;
	height:auto;
}
.pickUp__movie-box img:hover {
	cursor: pointer;
	width:100%;
	height:auto;
	box-sizing: border-box;
}

.pickUp__movie-box::before {
  content: url("../images/game/pickUp-play.svg");
	position: absolute;
	top: calc(50% + 9px);
	left: 50%;
	transform : translate(-50%,-50%);
	transition:.5s;
  cursor: pointer;
}

.pickUp__name {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .pickUp-slide {
    max-width: 600px;
    margin: 20px auto 0;
  }
  .pickUp .slick-arrow {
    position: absolute;
    width: 15px;
    top: calc(50% - 30px);
    left: -20px;
  }
  .pickUp .slick-next {
    right: -17px;
    left: auto;
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 768px) {
  .pickUp {
    padding: 100px 0;
  }
  .pickUp-slide {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
  }
  .pickUp__name {
    font-size: 20px;
  }
}


/*----------------------------
　一覧
----------------------------*/
/*----- モーダル -----*/
.modaal-inner-wrapper {
  padding: 20px;
}
.modaal-container {
  height: 90svh;
  border-radius: 16px;
  border: 3px solid #000
}
.modaal-content-container {
  padding: 0;
}
.modaal-close {
  top: 35px;
}
.modaal-close:focus, .modaal-close:hover {
  background: none;
}

.game__modal {
  display: none;
}
.game__modal img {
  max-width: 700px;
}
.game__modal-category {
  background: #000;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-family: var(--font-mPlus);
  font-size: 20px;
  text-shadow: var(--txtShadow);
  color: var(--color-white);
}
.game__modal-inner {
  margin-top: 20px;
  padding: 0 20px 20px 20px;
  overflow-y: scroll;
  height: 72svh;
}
.game__modal-name {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.game__modal-catch {
  text-align: center;
  font-weight: 600;
}
.game__modal-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__modal-icon {
  text-align: center;
}
.game__modal-subtitle {
  margin-top: 40px;
}

.game__modal-housing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.game__modal-housing li {
  width: calc(50% - 5px);
  text-align: center;
}

.game__modal-rule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game__modal-rule li {
  text-align: center;
}

.game__modal-scroll {
  text-align: center;
  font-weight: 600;
}
.game__modal-scroll-arrow {
  margin-top: -10px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.2em solid #000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

@media screen and (min-width: 768px) {
  .modaal-container {
    max-width: 100%;
    height: 90svh;
  }
  .modaal-close {
    top: 48px;
    right: 25px;
  }

  .game__modal-info {
    margin: 40px auto;
    max-width: 1000px;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .game__modal-icon {
    width: 200px;
  }
  .game__modal-description {
    width: calc(100% - 240px);
  }
}


.game__area {
  margin-top: 20px;
}
.game__captureList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}
.game__captureList>li{
  display:flex; 
  align-items: center; 
  justify-content:center;
}
.game__captureImg {
  width: calc(50% - 10px);
}
.game__captureImg:not(.game__captureImg-text) {
  box-shadow: 0 0 6px rgb(0 0 0 / 16%);
}
.game__captureImg-text {
  width: 100%;
}
.game__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.game__list-more {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}
.game__list-more span {
  margin-left: 10px;
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 0.2em solid #000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media screen and (min-width: 768px) {
  .game__area {
    margin-top: 40px;
  }
  .game__captureList {
    position: relative;
    padding-bottom: 50px;
  }
  .game__captureList>li{
    display:flex; 
    align-items: center; 
    justify-content:center;
  }
  .game__captureImg {
    width: calc(25% - 15px);
  }
  .game__captureImg-text {
    width: calc(50% - 10px);
    position: absolute;
    bottom: 0;
  }
  .game__captureImg-kagi {
    right: 10px;
  }
  .game__list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
  }
}

/*----- 料金プラン紹介 -----*/
.title{
  margin-bottom: 10px;
}
.plan_box .box__title{
  font-size: 4.5vw;
  color: #ffff00;
  background: -moz-linear-gradient(bottom, #0b61ff 0%, #1404b1 90%, #0030ff 100%);
  background: -webkit-linear-gradient(bottom, #0b61ff 0%, #1404b1 90%, #0030ff 100%);
  background: linear-gradient(to top, #0b61ff 0%, #1404b1 90%, #0030ff 100%);
  border-radius: 0;
}
.plan_box .box__content{
  border: solid 3px #005aff;
  border-top: none;
  position: relative;
  padding-top: 10px;
  margin-bottom: 10px;
}
.plan_box .attention, .autoplay_box .attention{
  margin-top: 1vw;
  font-size: 2.5vw;
  line-height: 4.2vw;
}
.plan_subbox{
  margin-top: 5vw;
}
.plan_subbox .subtitle{
  margin-bottom: 3vw;
  font-size: 5vw;
  line-height: 5vw;
  text-align: center;
  font-weight: 700;
}
.plan_subbox .catch{
  margin-bottom: 2vw;
  text-align: center;
  font-size: 3.2vw;
  line-height: 5.2vw;
}
.plan_subbox .imagelist{
  margin-top: 4vw;
}
.plan_subbox .imagelist .image{
  width: 75%;
  margin: 0 auto 15vw auto;
  position: relative;
}
.plan_subbox .imagelist .image:last-child{
  margin-bottom: 0;
}
.plan_subbox .imagelist .image:first-child::after{
  content: "";
  width: 12vw;
  height: 12vw;
  background: url(../images/plan/plan_allow.png) no-repeat center center / 100%;
  transform: rotate(90deg);
  position: absolute;
  bottom: -13.5vw;
  right: calc(50% - 6vw);
}
.plan_box .scroll_box .image1{
  width: 600px;
}
.plan_box .scroll_box .image1 img{
  width: 100%;
}
.plan_box .box__content.padding_small{
  padding-bottom: 5px;
}
.plan_box .box__content .box__catch{
  color: #000;
  font-size: 4.5vw;
}
.plan_box .box__content .badge{
  position: absolute;
  width: 15vw;
  top: -7vw;
  right: -20px;
}
.plan_box .box__content .box__sub{
  background: #1201ae;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 3.3vw;
  font-weight: 600;
  width: 100%;
  margin: 2vw auto 4vw auto;
  padding: 2vw 0;
}
.plan_box .box__content .mission__list{
  -webkit-justify-content: center;
  justify-content: center;  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 4vw;
  row-gap: 4vw;
}
.plan_box .box__content .mission__list li{
  width: calc(46% - 2vw);
}
.plan_box .box__content .attention{
  font-size: 8px;
  font-weight: 500;
  margin-top: 10px;
  text-align: right;
}
.autoplay_box .image1{
  margin-bottom: 4vw;
}
.autoplay_box .scroll_box .image1, .autoplay_box .scroll_box .image2{
  width: 600px;
}
.autoplay_box .scroll_box .image1 img, .autoplay_box .scroll_box .image2 img{
  width: 100%;
}
@media screen and (min-width: 768px) {
  .title{
    margin-bottom: 20px;
  }
  .plan_box .box__title{
    font-size: 28px;
  }
  .plan_box .box__title .sp{
    display: none;
  }
  .plan_box .box__content{
    border: solid 4px #005aff;
    border-top: none;
    margin-bottom: 50px;
    padding-top: 20px;
  }

  .plan_box .attention, .autoplay_box .attention{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .plan_subbox{
    margin-top: 50px;
  }
  .plan_subbox .subtitle{
    margin-bottom: 20px;
    text-align: center;
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
  }
  .plan_subbox .catch{
    margin-bottom: 20px;
    text-align: center;
    font-size: 26px;
    line-height: 42px;
  }
  .plan_subbox .imagelist{
    margin-top: 30px;
  }
  .plan_subbox .imagelist .image{
    width: calc(50% - 50px);
    margin: 0;
  }
  .plan_subbox .imagelist .image:first-child::after{
    width: 76px;
    height: 76px;
    bottom: auto;
    top: calc(50% - 38px);
    right: -88px;
    transform: rotate(0deg);
  }
  .plan_box .scroll_box .image1{
    width: 100%;
  }
  .plan_box .box__content.padding_small{
    padding-bottom: 10px;
  }
  .plan_box .box__content .box__catch{
    font-size: 28px;
  }
  .plan_box .box__content .badge{
    width: 15.5%;
    max-width: 150px;
    top: -40px;
    right: 2px;
  }
  .plan_box.plan_mission .box__content .badge{
    right: -30px;
  }
  .plan_box.plan_gacha .box__content .badge{
    top: 10px;
    right: -30px;
  }
  .plan_box.plan_mall .box__content .badge{
    top: 28px;
    right: -75px;
  }
  .plan_box .box__content .box__sub{
    font-size: 23px;
    width: 640px;
    margin: 15px auto 30px auto;
    padding: 7px 0;
  }
  .plan_box .box__content .mission__list{
    column-gap: 37px;
  }
  .plan_box .box__content .mission__list li{
    width: 200px;
  }
  .plan_box .box__content .attention{
    font-size: 14px;
    margin-top: 20px;
  }
  .autoplay_box .image1{
    margin-bottom: 40px;
  }
  .autoplay_box .scroll_box .image1, .autoplay_box .scroll_box .image2{
    width: 100%;
  }
}

/*----- ぱちんこ・パチスロ -----*/
.game-pachi .box__title,
.modal-pachi .game__modal-category  {
  background: var(--color-pachi);
}
.game-pachi .box__content,
.game-pachi .game__list-more span,
.modal-pachi :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-pachi);
}


/*----- メダル -----*/
.game-medal .box__title,
.modal-medal .game__modal-category  {
  background: var(--color-medal);
}
.game-medal .box__content,
.modal-medal :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-medal);
}
@media screen and (min-width: 768px) {
  :where(.game-medal) .game__captureList {
    justify-content: center;
    padding-bottom: 100px;
  }
}

/*----- カジノ -----*/
.game-casino .box__title,
.modal-casino .game__modal-category  {
  background: var(--color-casino);
}
.game-casino .box__content,
.modal-casino :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-casino);
}
@media screen and (min-width: 768px) {
  :where(.game-casino) .game__captureList {
    justify-content: center;
  }
}

/*----- ビデオスロット -----*/
.game-videoslot .box__title,
.modal-videoslot .game__modal-category  {
  background: var(--color-videoslot);
}
.game-videoslot .box__content,
.modal-videoslot :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-videoslot);
}
@media screen and (min-width: 768px) {
  :where(.game-videoslot) .game__captureList {
    justify-content: center;
  }
}

/*----- バラエティー -----*/
.game-variety .box__title,
.modal-variety .game__modal-category  {
  background: var(--color-variety);
}
.game-variety .box__content,
.modal-variety :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-variety);
}
@media screen and (min-width: 768px) {
  :where(.game-variety) .game__captureList {
    justify-content: center;
    padding-bottom: 80px;
  }
}

/*----- 麻雀 -----*/
.game-mahjong .box__title,
.modal-mahjong .game__modal-category  {
  background: var(--color-mahjong);
}
.game-mahjong .box__content,
.modal-mahjong :is(.modaal-container, .game__modal-scroll-arrow) {
  border-color: var(--color-mahjong);
}
@media screen and (min-width: 768px) {
  :where(.game-mahjong) .game__captureList {
    justify-content: center;
    padding-bottom: 80px;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　LIVE配信
  　　/live/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.pageNav__btn-stream {
  background: linear-gradient(147.36deg, #6DDBE0 39.04%, #97ffff 100%);
  border-color: #6DDBE0;
}
.pageNav__btn-watch {
  background: linear-gradient(147.36deg, #3f8cf4 39.04%, #28e6fd 100%);
  border-color: rgba(57, 126, 219);
}
/*----- 配信をしたい！ -----*/
.live-stream .box__title {
  background: #6DDBE0;
}
.live-stream .box__content {
  border-color: #6DDBE0;
}
.live-stream__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .live-stream__box {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .live-stream__image {
    width: 30%;
  }
  .live-stream__text {
    width: calc(70% - 40px);
    text-align: left;
  }
}

/*----- 配信を見たい！ -----*/
.live-watch .box__title {
  background: #5F73E4;
}
.live-watch .box__content {
  border-color: #5F73E4;
}

/*+++++++++++++++++++++++++++++++++++++++++
  　GAPOLIモール
  　　/mall/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.pageNav__catch-mall {
  position: relative;
}
.mall__coin {
  position: absolute;
  width: 100px;
  z-index: -1;
}
.mall__coin-r {
  top: -20px;
  right: -40px;
}
.mall__coin-l {
  bottom: -20px;
  left: -30px;
}
.mall__coin.on {
  animation: 2.5s fuwafuwa infinite;
}
.mall__coin-r.on {
  animation-delay: .8s;
}
.mall__coin-l.on {
  animation-delay: 1.1s;
}

.mall {
  margin: 40px auto;
}
.mall .title {
  text-align: center;
  color: var(--color-orange);
}
.mall__text {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
.mall__change {
  margin-top: 40px;
  padding: 20px 15px 28px;
  text-align: center;
}
.mall__change::after {
  background: var(--color-gapolimall_bg);
}
.mall__get {
  margin-bottom: 20px;
  width: 80%;
  max-width: 330px;
}
.mall__bgbox {
  padding: 20px 15px;
}
.mall__logo {
  width: 60%;
  max-width: 300px;
}
.mall__btn {
  margin-top: 40px;
}
.mall__box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .mall {
    margin-bottom: 80px;
  }
  .mall__text {
    font-size: 24px;
  }
  .mall__change {
    margin: 80px auto 0;
    padding: 40px 80px;
    max-width: 800px;
  }
  .mall__get {
    margin-bottom: 40px;
  }
  .mall__bgbox {
    padding: 40px;
  }
  .mall__box {
    margin-top: 40px;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .mall__box-image {
    width: 50%;
  }
  .mall__box-text {
    width: calc(50% - 40px);
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　料金プラン紹介
  　　/plan/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.course__list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course__list img {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 769px) {
  .course__list {
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }
  .course__list li {
    width: calc(50% - 5px);
  }
  .course__list img {
    max-width: fit-content;
  }
  .course__list li:last-child img {
    width: calc(100% + 30px);
    max-width: initial;
    margin: -16px 0 0 -16px;
  }
  .attention2 {
    margin-top: -36px;
    }
}
@media screen and (max-width: 768px) {
  .course__list li:last-child img {
    width: calc(100% + 24px);
    max-width: initial;
    margin: -8px 0 0 -12px;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　個人情報保護方針
  　　/privacypolicy/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.privacypolicy__date {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.privacypolicy__date dt {
  width: 100px;
}
.privacypolicy__date dd {
  width: calc(100% - 110px);
}

/*+++++++++++++++++++++++++++++++++++++++++
  　会社概要
  　　/company/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.company__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.company__list dt {
  width: 120px;
}
.company__list dd {
  width: calc(100% - 130px);
}

/*+++++++++++++++++++++++++++++++++++++++++
  　公認ユーザー紹介
  　　/live/index.html
*+++++++++++++++++++++++++++++++++++++++++*/
.official__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.official__list img {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .official__list {
    margin-top: 80px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
  }
  .official__list li {
    width: calc(50% - 20px);
  }
  .official__list img {
    max-width: fit-content;
  }
}

/* ハーフアニバ―イベント用バナー */
.event_news {
  margin-top: 40px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .event_news{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: calc(70% - 20px);
  }
}

/* ストアアイコン配置用 */
.download_text{
  text-align: center;
  margin: 5% auto;
  width: 90%;
}

.store_icon_list{
  display: flex;
  justify-content: center;
  width: 100%;
}

.store_icon_google{
  width: 40%
}

.store_icon_google>a>picture>img{
  max-width: 98%;
}

.store_icon_apple{
  width: 41%
}

.store_icon_apple>a>picture>img{
  max-width: 100%;
  height: 100%;
}

.store_group {
  background-image: url(../images/lp/box.png);
  background-size:100% 100%;
  background-repeat: no-repeat;
  margin: 5%;
}