@charset "UTF-8";
/*
  Theme Name: Casino
*/
/* -----------------------------------------------
* common
-------------------------------------------------- */
.xl-show {
  display: none;
}

.lg-show {
  display: none;
}

.md-show {
  display: none;
}

.sm-show {
  display: none;
}

body {
  background: #1A2C38;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding-left: 282px;
}

.container {
  max-width: 912px;
  padding: 0 36px;
  margin: 0 auto;
}

/* -----------------------------------------------
* header
-------------------------------------------------- */
.header {
  height: 65px;
  background: #1A2C38;
  padding: 10px 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 2;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  height: 45px;
}

.header__logo img {
  width: auto;
  height: 100%;
}

.header__copy {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2307692308;
  margin-left: 36px;
}

.header__button {
  display: inline-block;
  background: #1675E1;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 4px;
}

/* -----------------------------------------------
* trigger
-------------------------------------------------- */
.trigger {
  display: none;
  width: 65px;
  height: 65px;
  padding: 20px 15px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

.trigger__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.trigger__wrapper span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

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

.trigger__wrapper span:nth-of-type(2) {
  top: calc(50% - 1px);
}

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

.trigger__wrapper.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

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

.trigger__wrapper.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

/* -----------------------------------------------
* sidebar
-------------------------------------------------- */
.sidebar {
  width: 282px;
  height: 100vh;
  background: #0E212E;
  padding: 20px 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.sidebar__list {
  display: grid;
  gap: 3px;
}

.sidebar__item {
  background: #203744;
}

.sidebar__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar__image {
  aspect-ratio: 47/35;
  background-position: center;
  background-size: cover;
}

.sidebar__content {
  padding: 0 9px;
}

.sidebar__title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

/* -----------------------------------------------
* main
-------------------------------------------------- */
.eyecatch {
  position: relative;
  overflow: hidden;
}

.eyecatch__content {
  width: 55%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.eyecatch__image {
  width: 100%;
  height: 400px;
  background: #6737C9;
  position: relative;
}

.eyecatch__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1280px) {
  .eyecatch__image {
    text-align: center;
  }
  .eyecatch__image img {
    position: static;
    width: auto;
  }
}
.eyecatch__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.eyecatch__button {
  display: inline-block;
  min-width: 300px;
  background: #1675E1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  padding: 12px 24px;
  border-radius: 23px;
  margin-top: 16px;
}

.post {
  padding: 75px 0;
}

.post__date {
  display: block;
  text-align: right;
  margin-top: 1em;
}

.post .container > h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6071428571;
  text-align: center;
}

.post .container > h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6071428571;
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}

.post .container > h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 2px;
  background: #E00023;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.post .container > h3 {
  background: #415560;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 16px;
}

.post .container > h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5882352941;
  padding-left: 17px;
  border-left: 5px solid #E00023;
}

.post .container > p {
  font-size: 16px;
  line-height: 1.5;
}

.post .container > p a {
  color: #f9c50b;
  text-decoration: underline;
}

.post .container > p a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: center/contain no-repeat url(../img/parts/icon-target-blank.svg);
  margin: 0 2px -3px 2px;
}

@media (hover: hover) {
  .post .container > p a:hover {
    text-decoration: none;
  }
}
.post .container mark:not(.has-inline-color) {
  background-color: transparent !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(66.6%, transparent), color-stop(33.3%, #f9c50b));
  background: linear-gradient(transparent 66.6%, #f9c50b 33.3%);
  color: #fff;
  font-weight: 700;
}

.post .container .wp-block-table {
  margin-top: 30px;
}

.post .container .wp-element-caption {
  font-size: 14px;
  line-height: 1.4285714286;
  margin-top: 6px;
}

.post .container table {
  width: 100%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.post .container table th {
  background: #415560;
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 15px 20px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.post .container table td {
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 15px 20px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.post .container > .wp-block-image {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
}

.post .container > * + h1, .post .container > * + h2 {
  margin-top: 75px;
}

.post .container > * + h3 {
  margin-top: 20px;
}

.post .container > * + h4 {
  margin-top: 20px;
}

.post .container > * + p {
  margin-top: 30px;
}

.post .container > * + ul {
  margin-top: 30px;
}

.post .container > * + ul:not(.wp-block-latest-posts__list) li {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}

.post .container > * + ul:not(.wp-block-latest-posts__list) li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.post .container > * + ol {
  counter-reset: li;
  margin-top: 30px;
}

.post .container > * + ol li {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}

.post .container > * + ol li::before {
  counter-increment: li;
  content: counter(li) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.post .container > * + .wp-block-image {
  margin-top: 30px;
}

.image-box1 {
  margin-top: 20px;
}

@media (hover: hover) {
  .image-box1 a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .image-box1 a:hover {
    opacity: 0.7;
  }
}
.image-box1__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 36px;
}

.image-box1__title {
  background: #0F212E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 22px;
}

.image-box1__image img {
  width: 100%;
}

.image-box2 {
  margin-top: 75px;
}

.image-box2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.image-box2__item {
  display: grid;
  grid-template-columns: 75px auto;
  gap: 20px;
  background: #213744;
  padding: 28px;
}

@media (hover: hover) {
  a.image-box2__item {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a.image-box2__item:hover {
    opacity: 0.7;
  }
}
.image-box2__image {
  aspect-ratio: 1/1;
  position: relative;
}

.image-box2__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-box2__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5882352941;
}

.image-box2__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5714285714;
  margin-top: 12px;
}

.image-box3__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 20px;
}

@media (hover: hover) {
  .image-box3__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .image-box3__item a:hover {
    opacity: 0.7;
  }
}
.image-box3__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.image-box3__image {
  margin-top: 15px;
}

.image-box3__image img {
  width: 100%;
}

.image-box3__caption {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5714285714;
  margin-top: 16px;
}

.image-box4 {
  margin-top: 75px;
}

.image-box4__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 36px;
}

.image-box4__title {
  background: #0F212E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 22px;
}

.image-box4__title a {
  text-decoration: underline;
}

.image-box4__image-wrapper {
  display: grid;
  grid-template-columns: 75px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background: #0F212E;
  padding: 10px;
  margin-top: 36px;
}

.image-box4__image img {
  width: 100%;
}

.image-box4__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.image-box4__text a {
  text-decoration: underline;
}

.image-box5 {
  margin-top: 75px;
}

.image-box5__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.image-box5__image img {
  width: 100%;
}

.image-box6 {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 0 20px;
  background: #2F4454;
  padding: 30px 28px;
  margin-top: 75px;
}

@media (hover: hover) {
  a.image-box6 {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a.image-box6:hover {
    opacity: 0.7;
  }
}
.image-box6__image img {
  width: 100%;
}

.image-box6__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.image-box6__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5714285714;
  margin-top: 10px;
}

.image-box7 {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 0 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2F4454;
  padding: 30px 28px;
  margin-top: 75px;
}

@media (hover: hover) {
  a.image-box7 {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a.image-box7:hover {
    opacity: 0.7;
  }
}
.image-box7__image img {
  width: 100%;
}

.image-box7__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.button-box {
  display: grid;
  grid-template-columns: auto 300px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 32px;
  padding: 32px 40px;
  /* margin-top: 30px; */
  margin-top: 20px;
}

.button-box--gray {
  background: #2F4454;
}

.button-box--pink {
  background: #ECCEC6;
  color: #000;
}

.button-box__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .button-box__text {
    font-size: 17px;
    text-align: center;
  }
}
.button-box__button {
  color: #fff;
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: center;
  padding: 12px;
  border-radius: 23px;
}

.button-box__button--has-arrow1 {
  position: relative;
}

.button-box__button--has-arrow1::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.button-box__button--has-arrow2 {
  position: relative;
}

.button-box__button--has-arrow2::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.button-box__button--blue {
  background: #1675E1;
}

.button-box__button--red {
  background: #E8113C;
}

.faq-box {
  background: #0F212E;
  padding: 50px 36px;
  margin-top: 30px;
}

.faq-box__item:not(:first-of-type) {
  margin-top: 10px;
}

.faq-box__term {
  background: #213744;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5882352941;
  padding: 15px 50px 15px 15px;
  position: relative;
  cursor: pointer;
}

.faq-box__term::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
}

.faq-box__term.active::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}

.faq-box__description {
  background: #213744;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5714285714;
  padding: 15px;
  border-top: 1px solid #2E4552;
}

.title-box {
  padding: 46px 40px 40px;
  border: 3px solid #C84331;
  margin-top: 75px;
}

.title-box__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #C84331;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5714285714;
  padding: 15px;
  margin-top: -74px;
  margin-bottom: 22px;
}

.title-box__item {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5714285714;
  padding-left: 1em;
  position: relative;
}

.title-box__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.title-box__item:not(:first-of-type) {
  margin-top: 15px;
}

.wp-block-liquid-speech-balloon {
  margin-top: 60px;
}

.liquid-speech-balloon-wrap {
  margin-bottom: 0;
}

/* -----------------------------------------------
* floating-footer
-------------------------------------------------- */
.floating-footer {
  height: 100px;
  background: #081C2A;
  padding: 10px;
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 1;
}

.floating-footer__button-wrapper {
  display: block;
  max-width: 840px;
  margin: 0 auto;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.floating-footer__button-wrapper::after {
  -webkit-transform: skewX(-25deg);
  -webkit-animation: shine 1s infinite;
  position: absolute;
  top: 0;
  left: -75%;
  width: 30%;
  height: 100%;
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  animation: shine 1s infinite;
  content: "";
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.floating-footer__button {
  display: block;
  max-width: 840px;
  background: #E8113C;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 108px 10px;
  margin: 0 auto;
  border-radius: 40px;
  position: relative;
}

.floating-footer__button::before {
  content: "";
  display: inline-block;
  width: 76px;
  height: 42px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/common/logo-stake-casino.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
}

.floating-footer__button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.floating-footer__button .small-text {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  margin-top: 2px;
}

/* -----------------------------------------------
* footer
-------------------------------------------------- */
.footer-menu {
  background: #0E212E;
  padding: 20px 10px;
}

.footer-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.footer-menu__item {
  background: #203744;
}

.footer-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-menu__image {
  aspect-ratio: 47/35;
  background-position: center;
  background-size: cover;
}

.footer-menu__content {
  padding: 0 9px;
}

.footer-menu__title {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.footer-partner {
  background: #081C2A;
}

.footer-partner__logos1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 35px;
  padding: 36px 0;
  border-bottom: 1px solid #213744;
}

.footer-partner__logo1 {
  height: 60px;
}

.footer-partner__logo1 img {
  width: auto;
  height: 100%;
}

.footer-partner__logos2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 36px;
  padding: 36px 0;
  border-bottom: 1px solid #213744;
}

.footer-partner__logo2 {
  height: 60px;
  text-align: center;
}

.footer-partner__logo2 img {
  width: auto;
  height: 100%;
}

.footer-copy {
  background: #081C2A;
  padding: 36px 0;
}

.footer-copy__logo {
  height: 60px;
  text-align: center;
}

.footer-copy__logo img {
  width: auto;
  height: 100%;
}

.footer-copy__logo:not(:first-of-type) {
  margin-top: 1em;
}

.footer-copy__text {
  display: block;
  color: #B1BAD3;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin-top: 2em;
}

.footer-copy__list {
  display: block;
  text-align: center;
  margin-top: 2em;
}

.footer-copy__item {
  display: inline;
  color: #B1BAD3;
}

.footer-copy__item:not(:last-of-type) {
  position: relative;
}

.footer-copy__item:not(:last-of-type)::after {
  content: " ｜ ";
}

.footer-copy__item .colored-text {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-left: 0.25em;
}

.footer-link {
  background: #081C2A;
  padding: 20px 0 40px;
}

.footer-link__text {
  display: none;
}

.footer-link__wrapper {
  margin-top: 20px;
}

.footer-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5882352941;
}

.footer-link__list:not(:first-of-type) {
  margin-top: 1em;
}

.footer-link__list--partnership::before {
  content: "Partnership：";
}

.footer-link__item:not(:last-of-type) {
  padding-right: 1em;
  margin-right: 1em;
  position: relative;
}

.footer-link__item:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 1em;
  background: #fff;
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

/* -----------------------------------------------
* responsive
-------------------------------------------------- */
@media (max-width: 1199px) {
  .xl-show {
    display: block;
  }
  .xl-hide {
    display: none;
  }
  .image-box1__list {
    gap: 20px 15px;
  }
  .image-box2__list {
    gap: 15px;
  }
  .image-box3__list {
    gap: 15px;
  }
  .image-box4__list {
    gap: 15px;
  }
  .image-box5__list {
    gap: 15px;
  }
  .image-box6 {
    gap: 0 15px;
  }
  .image-box7 {
    gap: 0 15px;
  }
  .button-box {
    gap: 15px;
  }
  .footer-menu__list {
    grid-template-columns: repeat(2, 1fr);
  }  
  .footer-partner__logos1 {
    gap: 35px 15px;
  }
  .footer-partner__logos2 {
    gap: 35px 15px;
  }
}
@media (max-width: 991px) {
  .lg-show {
    display: block;
  }
  .lg-hide {
    display: none;
  }
  body {
    padding-left: 0;
  }
  .container {
    padding: 0 15px;
  }
  .header__wrapper {
    padding-right: 70px;
  }
  .trigger {
    display: block;
  }
  .sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    right: -100%;
    left: auto;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
  }
  .sidebar.active {
    right: 0;
  }
  .sidebar__list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .image-box4__image-wrapper {
    margin-top: 15px;
  }
  .footer-copy__item {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .md-show {
    display: block;
  }
  .md-hide {
    display: none;
  }
  .header__copy {
    display: none;
  }
  .sidebar__list {
    grid-template-columns: none;
  }
  .eyecatch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
  }
  .eyecatch__content {
    width: 100%;
    background: #6637C8;
    padding: 30px 0;
    position: static;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .eyecatch__image {
    height: auto;
    aspect-ratio: 375/187;
  }
  .post {
    padding: 50px 0;
  }
  .post .container > h1 {
    /* font-size: 24px; */
    font-size: 20px;
    line-height: 1.5833333333;
  }
  .post .container > h2 {
    font-size: 22px;
    line-height: 1.5909090909;
    padding-bottom: 15px;
  }
  .post .container table th {
    padding: 15px;
  }
  .post .container table td {
    padding: 15px;
  }
  .post .container > * + h1, .post .container > * + h2 {
    margin-top: 50px;
  }
  .post .container > * + h3 {
    margin-top: 30px;
  }
  .post .container > * + h4 {
    margin-top: 30px;
  }
  .image-box1 {
    margin-top: 30px;
  }
  .image-box1__list {
    grid-template-columns: none;
  }
  .image-box2 {
    margin-top: 50px;
  }
  .image-box2__list {
    grid-template-columns: none;
    gap: 5.3333333333vw 4vw;
  }
  .image-box2__item {
    grid-template-columns: 20vw auto;
    gap: 5.3333333333vw;
    padding: 7.4666666667vw 4vw;
  }
  .image-box2__image {
    width: 20vw;
    margin: 0 auto;
  }
  .image-box2__title {
    font-size: 4.5333333333vw;
  }
  .image-box2__text {
    font-size: 3.7333333333vw;
    margin-top: 3.2vw;
  }
  .image-box3__list {
    grid-template-columns: none;
    margin-top: 30px;
  }
  .image-box4 {
    margin-top: 50px;
  }
  .image-box4__list {
    grid-template-columns: none;
  }
  .image-box4__item {
    display: contents;
  }
  .image-box4__title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .image-box4__image-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
  }
  .image-box5 {
    margin-top: 50px;
  }
  .image-box5__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .image-box6 {
    grid-template-columns: none;
    padding: 0;
    margin-top: 50px;
  }
  .image-box6__content {
    padding: 20px 15px 30px;
  }
  .image-box7 {
    grid-template-columns: none;
    padding: 0;
    margin-top: 50px;
  }
  .image-box7__content {
    padding: 20px 15px 30px;
  }
  .button-box {
    grid-template-columns: none;
    padding: 20px 15px;
  }
  .faq-box {
    padding: 30px 15px 40px;
    margin: 30px -15px 0;
  }
  .title-box {
    padding: 30px 15px;
  }
  .title-box__title {
    width: 100%;
    margin-top: -55px;
  }
  .floating-footer {
    height: auto;
  }
  .floating-footer__button {
    font-size: 14px;
    line-height: 1.3571428571;
    padding: 5px 25px 5px 65px;
  }
  .floating-footer__button::before {
    content: "";
    display: inline-block;
    width: 51px;
    height: 28px;
    left: 15px;
  }
  .floating-footer__button::after {
    width: 11px;
    height: 11px;
    border-width: 3px;
    right: 15px;
  }
  .floating-footer__button .small-text {
    display: block;
    font-size: 14px;
    line-height: 1.3571428571;
    margin-top: 0;
  }
  .footer-menu__list {
    grid-template-columns: none;
  }
  .footer-partner__logos1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-partner__logo1 {
    height: 40px;
    text-align: center;
  }
  .footer-partner__logos2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    padding: 25px 0;
  }
  .footer-copy {
    padding: 15px 0;
  }
  .footer-copy__logo {
    height: 40px;
  }
  .footer-copy__text {
    font-size: 14px;
    margin-top: 1em;
  }
  .footer-copy__list {
    margin-top: 1em;
  }
  .footer-copy__item .colored-text {
    display: inline;
  }
  .footer-link {
    padding: 20px 0;
  }
  .footer-link__text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 2.25;
  }
  .footer-link__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-link__list {
    font-size: 12px;
  }
  .footer-link__list--partnership::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .sm-show {
    display: block;
  }
  .sm-hide {
    display: none;
  }
}
@media (hover: hover) {
  .header__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .header__button:hover {
    opacity: 0.7;
  }
  .sidebar__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .sidebar__item a:hover {
    opacity: 0.7;
  }
  .eyecatch__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .eyecatch__button:hover {
    opacity: 0.7;
  }
  .image-box4__title a:hover {
    text-decoration: none;
  }
  .image-box4__text a:hover {
    text-decoration: none;
  }
  .button-box__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button-box__button:hover {
    opacity: 0.7;
  }
  .floating-footer__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .floating-footer__button:hover {
    opacity: 0.7;
  }
  .footer-menu__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .footer-menu__item a:hover {
    opacity: 0.7;
  } 
  .footer-copy__logo a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }   
  .footer-copy__logo a:hover {
    opacity: 0.7;
  }
  .footer-link__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .footer-link__item a:hover {
    opacity: 0.7;
  }
}
/* -----------------------------------------------
* article
-------------------------------------------------- */
.article {
  margin-top: 20px;
}

.article__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 991px) {
  .article__list {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .article__list {
    grid-template-columns: none;
  }
}
.article__item a {
  display: block;
}

@media (hover: hover) {
  .article__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .article__item a:hover {
    opacity: 0.7;
  }
}
.article__image {
  aspect-ratio: 256/128;
  position: relative;
}

.article__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article__category {
  display: inline-block;
  background: #6737C9;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.article__content {
  padding-top: 12px;
}

.article__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.article__date {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin-top: 12px;
  margin-left: auto;
}

/* -----------------------------------------------
* WP-PageNavi
-------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 75px;
}

.wp-pagenavi span, .wp-pagenavi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.wp-pagenavi .current {
  background: #fff;
  color: #000;
}

.wp-pagenavi a {
  border: 1px solid #fff;
}

@media (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
}
.wp-pagenavi .first {
  position: relative;
}

.wp-pagenavi .first::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  left: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wp-pagenavi .first::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  left: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wp-pagenavi .last {
  position: relative;
}

.wp-pagenavi .last::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  right: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.wp-pagenavi .last::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  right: 17px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.wp-pagenavi .previouspostslink {
  position: relative;
}

.wp-pagenavi .previouspostslink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  left: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wp-pagenavi .nextpostslink {
  position: relative;
}

.wp-pagenavi .nextpostslink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  right: 13px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* -----------------------------------------------
* カスタムブロック（追加分）
-------------------------------------------------- */
.icon-box {
  margin-top: 30px;
}

.icon-box a {
  display: grid;
  grid-template-columns: 200px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 4px solid #f9c50b;
}

@media (max-width: 767px) {
  .icon-box a {
    grid-template-columns: 26.075619296vw auto;
    border-width: 0.5215123859vw;
  }
}
@media (hover: hover) {
  .icon-box a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .icon-box a:hover {
    opacity: 0.7;
  }
}
.icon-box__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background: #f9c50b;
  text-align: center;
  padding: 12px;
}

@media (max-width: 767px) {
  .icon-box__image {
    padding: 1.5645371578vw;
  }
}
.icon-box__image img {
  width: 100%;
}

.icon-box__content {
  padding: 12px;
}

@media (max-width: 767px) {
  .icon-box__content {
    padding: 1.5645371578vw;
  }
}
.icon-box__title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  border-radius: 18px;
  background: rgb(248, 213, 49);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 213, 49)), to(rgb(247, 162, 47)));
  background: linear-gradient(180deg, rgb(248, 213, 49) 0%, rgb(247, 162, 47) 100%);
  text-align: center;
  padding: 0 20px;
  position: relative;
}

@media (max-width: 767px) {
  .icon-box__title {
    font-size: 3.1290743155vw;
    border-radius: 2.3468057366vw;
    padding: 0 2.6075619296vw;
  }
}
.icon-box__title::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgb(247, 162, 47) transparent transparent transparent;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .icon-box__title::after {
    border-width: 1.0430247718vw 1.0430247718vw 0 1.0430247718vw;
    bottom: -1.0430247718vw;
  }
}
.icon-box__text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .icon-box__text {
    font-size: 4.1720990874vw;
    margin-top: 2.0860495437vw;
  }
}
.speech-balloon {
  margin-top: 75px;
}

@media (max-width: 767px) {
  .speech-balloon {
    margin-top: 50px;
  }
}
.speech-balloon__text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
  border-radius: 30px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .speech-balloon__text {
    font-size: 24px;
  }
}
.speech-balloon__text::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.speech-balloon__text--yellow {
  background: rgb(248, 213, 49);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 213, 49)), to(rgb(247, 162, 47)));
  background: linear-gradient(180deg, rgb(248, 213, 49) 0%, rgb(247, 162, 47) 100%);
  color: #000;
}

.speech-balloon__text--yellow::after {
  border-color: rgb(247, 162, 47) transparent transparent transparent;
}

.speech-balloon__text--yellow .colored-text {
  color: #e80d13;
}

.speech-balloon__text--red {
  /* background: rgb(255, 129, 152);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 129, 152)), to(rgb(246, 30, 70)));
  background: linear-gradient(180deg, rgb(255, 129, 152) 0%, rgb(246, 30, 70) 100%); */
  background: #e80d13;
  color: #fff;
}

.speech-balloon__text--red::after {
  border-color: #e80d13 transparent transparent transparent;
}

.speech-balloon__text--red .colored-text {
  color: #FFFF00;
}

.code-box {
  display: grid;
  grid-template-columns: 66.6% 33.3%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .code-box {
    border-radius: 1.3037809648vw;
  }
}
.code-box__code-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  color: #000;
  padding: 20px;
}

@media (max-width: 767px) {
  .code-box__code-wrapper {
    padding: 2.6075619296vw;
  }
}
.code-box__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .code-box__text {
    font-size: 3.1290743155vw;
  }
}
.code-box__code {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-all;
}

@media (max-width: 767px) {
  .code-box__code {
    font-size: 6.258148631vw;
  }
}
.code-box__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f9c50b;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

@media (max-width: 767px) {
  .code-box__copy {
    font-size: 2.6075619296vw;
    padding: 1.3037809648vw;
  }
}
.code-box__copy::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  background: center/contain no-repeat url(../img/parts/icon-tap.svg);
  margin-top: -10px;
}

@media (max-width: 767px) {
  .code-box__copy::after {
    width: 7.3011734029vw;
    height: 7.3011734029vw;
    margin-top: -1.3037809648vw;
  }
}
.button-parts {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #c2c2c2;
  color: #000;
  /* font-size: 32px; */
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 48px;
  margin: 30px auto 0;
  position: relative;
}

.button-parts::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .button-parts {
    /* font-size: 20px; */
    font-size: 16px;
    padding: 12px 24px;
  }
  .button-parts::after {
    width: 12px;
    height: 12px;
    right: 16px;
    border-width: 3px;
  }
}
@media (hover: hover) {
  .button-parts {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button-parts:hover {
    opacity: 0.7;
  }
}
.boxes-parts {
  margin-top: 75px;
}

.boxes-parts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media (max-width: 767px) {
  .boxes-parts__list {
    gap: 15px;
  }
}
.boxes-parts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 210px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 213, 49)), to(rgb(247, 162, 47)));
  background: linear-gradient(180deg, rgb(248, 213, 49) 0%, rgb(247, 162, 47) 100%);
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3888888889;
  text-align: center;
  padding: 20px;
  position: relative;
}

.boxes-parts__item::before {
  content: "";
  display: inline-block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .boxes-parts {
    margin-top: 50px;
  }
  .boxes-parts__item {
    min-height: auto;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px;
  }
  .boxes-parts__item::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-width: 1px;
  }
}
.slider-parts {
  margin-top: 75px;
}

@media (max-width: 767px) {
  .slider-parts {
    margin-top: 50px;
  }
}
.slider-parts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-parts__item {
  max-width: 148px;
  border-radius: 8px;
  overflow: hidden;
}

.slider-parts__item img {
  width: 100%;
}

@media (hover: hover) {
  .slider-parts__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .slider-parts__item a:hover {
    opacity: 0.7;
  }
}
.deposits-and-withdrawals {
  margin-top: 75px;
}

.deposits-and-withdrawals__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 35px;
}

.deposits-and-withdrawals__item {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 40px auto;
  gap: 15px;
  background: #2F4454;
  padding: 10px 15px;
}

.deposits-and-withdrawals__image {
  aspect-ratio: 1/1;
  position: relative;
}

.deposits-and-withdrawals__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.deposits-and-withdrawals__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5882352941;
}

@media (max-width: 1199px) {
  .deposits-and-withdrawals__list {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .deposits-and-withdrawals {
    margin-top: 50px;
  }
  .deposits-and-withdrawals__list {
    grid-template-columns: none;
  }
}
.white-boxes-parts {
  margin-top: 30px;
}

.white-boxes-parts__item {
  display: block;
  background: #fff;
  color: #E8113C;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  padding: 16px 12px;
  border-radius: 8px;
}

.white-boxes-parts__item:not(:first-of-type) {
  margin-top: 15px;
  position: relative;
}

.white-boxes-parts__item:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: center/contain no-repeat url(../img/parts/icon-plus.svg);
  position: absolute;
  top: -31px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .white-boxes-parts__item {
    font-size: 18px;
  }
  .white-boxes-parts__item:not(:first-of-type) {
    margin-top: 9px;
  }
  .white-boxes-parts__item:not(:first-of-type)::before {
    width: 24px;
    height: 24px;
    top: -15px;
  }
}
.cta-button-parts-wrapper {
  display: block;
  max-width: 840px;
  margin: 20px 0 auto;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.cta-button-parts-wrapper::after {
  -webkit-transform: skewX(-25deg);
  -webkit-animation: shine 1s infinite;
  position: absolute;
  top: 0;
  left: -75%;
  width: 30%;
  height: 100%;
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  animation: shine 1s infinite;
  content: "";
}

.cta-button-parts {
  display: block;
  /* width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;   */
  background: #E8113C;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 13px 108px 10px;
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
}

.cta-button-parts::before {
  content: "";
  display: inline-block;
  width: 76px;
  height: 42px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/common/logo-stake-casino.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
}

.cta-button-parts::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.cta-button-parts .small-text {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .cta-button-parts {
    font-size: 14px;
    line-height: 1.3571428571;
    padding: 5px 25px 5px 65px;
  }
  .cta-button-parts::before {
    content: "";
    display: inline-block;
    width: 51px;
    height: 28px;
    left: 15px;
  }
  .cta-button-parts::after {
    width: 11px;
    height: 11px;
    border-width: 3px;
    right: 15px;
  }
  .cta-button-parts .small-text {
    display: block;
    font-size: 14px;
    line-height: 1.3571428571;
    margin-top: 0;
  }
}
@media (hover: hover) {
  .cta-button-parts {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .cta-button-parts:hover {
    opacity: 0.7;
  }
}
#toc_container {
  width: 100% !important;
  background: #415560;
  padding: 20px 20px 80px;
  margin-top: 30px;
  position: relative;
}

#toc_container.contracted::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
}

#toc_container.contracted .toc_list {
  display: block !important;
  max-height: 100px;
  overflow-y: hidden;
}

.toc_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.toc_title::before {
  content: "";
  width: 20px;
  height: 20px;
  background: center/contain no-repeat url(../img/parts/icon-toc.png);
}

.toc_list li {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}

.toc_list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.toc_list li ul li {
  padding-left: 1em;
  position: relative;
}

.toc_list li ul li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

.toc_brackets {
  display: none;
}

.toc_toggle a {
  width: 40px;
  height: 40px;
  background: #6737C9;
  text-indent: -9999px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.toc_toggle a::before {
  content: "";
  display: inline-block;
  width: 50%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#toc_container.contracted .toc_toggle a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .post .has-large-font-size {
    font-size: 22px !important;
  }
}
.modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.modal::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal__wrapper {
  max-width: 840px;
  /* max-height: calc(100vh - 30px); */
  background: #fff;
  color: #000;
  padding: 40px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* overflow-y: scroll; */
}

@media (max-width: 991px) {
  .modal__wrapper {
    max-width: none;
    width: calc(100% - 30px);
  }
}
@media (max-width: 767px) {
  .modal__wrapper {
    padding: 30px 15px;
  }
}
.modal__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6071428571;
  text-align: center;
}

@media (max-width: 767px) {
  .modal__title {
    font-size: 22px;
    line-height: 1.5909090909;
  }
}
.modal__title_secondary {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1em;
}

.modal__text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1em;
}

.modal__text a {
  text-decoration: underline;
}

.modal__text--has-close {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding-left: 20px;
  margin: 2em auto 0;
  position: relative;
}

.modal__text--has-close::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: center/contain no-repeat url(../img/parts/icon-close-black.svg);
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (hover: hover) {
  .modal__text a:hover {
    text-decoration: none;
  }
}
.modal__close {
  position: absolute;
  top: -52px;
  right: 0;
}

.post .container .wp-block-latest-posts__list {
  border-bottom: 1px solid #fff;
}

.post .container .wp-block-latest-posts__list li {
  display: grid;
  grid-template-columns: 150px auto;
  padding: 20px 0;
  border-top: 1px solid #fff;
}

@media (max-width: 767px) {
  .post .container .wp-block-latest-posts__list li {
    grid-template-columns: none;
  }
}
.post .container .wp-block-latest-posts__post-title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .post .container .wp-block-latest-posts__post-title {
    margin-top: 6px;
  }
}
.post .container .wp-block-latest-posts__post-date {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (hover: hover) {
  .wp-block-latest-posts__post-title {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .wp-block-latest-posts__post-title:hover {
    opacity: 0.7;
  }
}
.mainvisual-parts {
  max-width: 670px;
  margin: 30px auto 0;
  aspect-ratio: 670/286;
  position: relative;
}

.mainvisual-parts img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .mainvisual-parts {
    max-width: none;
  }
}
.mainvisual-parts__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-align: center;
  position: absolute;
  top: 40px;
  right: 7px;
}

@media (max-width: 767px) {
  .mainvisual-parts__title {
    font-size: 5.2151238592vw;
    top: 5.2151238592vw;
    right: 0.9126466754vw;
  }
}
.mainvisual-parts__title .large-text {
  font-size: 66px;
  line-height: 1.2121212121;
}

@media (max-width: 767px) {
  .mainvisual-parts__title .large-text {
    font-size: 8.6049543677vw;
  }
}
.mainvisual-parts__title::after {
  content: "";
  display: inline-block;
  width: 624px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 7px;
  bottom: -20px;
}

@media (max-width: 767px) {
  .mainvisual-parts__title::after {
    width: 81.3559322034vw;
    height: 0.260756193vw;
    right: 0.9126466754vw;
    bottom: -2.6075619296vw;
  }
}
.mainvisual-parts__list {
  position: absolute;
  bottom: 4px;
  left: 45px;
}

@media (max-width: 767px) {
  .mainvisual-parts__list {
    bottom: 0.5215123859vw;
    left: 5.8670143416vw;
  }
}
.mainvisual-parts__item {
  font-size: 27px;
  letter-spacing: -0.02em;
  line-height: 1.3333333333;
  position: relative;
}

@media (max-width: 767px) {
  .mainvisual-parts__item {
    font-size: 3.520208605vw;
  }
}
.mainvisual-parts__item::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 10px;
  left: -22px;
}

@media (max-width: 767px) {
  .mainvisual-parts__item::before {
    width: 1.9556714472vw;
    height: 1.9556714472vw;
    top: 1.3037809648vw;
    left: -2.8683181226vw;
  }
}
.mainvisual-parts__text {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.4074074074;
  letter-spacing: 0.04em;
  text-align: center;
  position: absolute;
  right: 24px;
  bottom: 5px;
}

@media (max-width: 767px) {
  .mainvisual-parts__text {
    font-size: 3.520208605vw;
    right: 3.1290743155vw;
    bottom: 0.6518904824vw;
  }
}
.breadcrumb {
  margin-top: 1em;
}

.breadcrumb__item {
  display: inline;
  font-size: 14px;
  line-height: 1.4285714286;
}

.breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  margin: 0 5px;
}

.breadcrumb__item:last-of-type {
  font-weight: 700;
}

@media (hover: hover) {
  .breadcrumb__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .breadcrumb__item a:hover {
    opacity: 0.7;
  }
}