/*▼ループスライダー▼*/

.be-loop-hero {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000;
  overflow: hidden;
}

.be-loop-hero,
.be-loop-hero * {
  box-sizing: border-box;
}

.be-loop-hero__track {
  display: flex;
  width: max-content;
}

.be-loop-hero__group {
  display: flex;
  flex-shrink: 0;
  animation: be-loop-scroll-left 40s linear infinite;
}

.be-loop-hero__item {
  position: relative;
  flex: 0 0 500px;
  width: 500px;
  aspect-ratio: 10 / 7;
  margin: 0;
  overflow: hidden;
}

.be-loop-hero__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes be-loop-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 959px) {
  .be-loop-hero__item {
    flex-basis: 200px;
    width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .be-loop-hero__group {
    animation: none;
  }
}

/*▼ネオンボックス枠線▼*/

.neon-inner-crisp{
  position: relative;
  background: #000; 
  padding: 5px;
  box-shadow:
    inset 0 0 0 5px #9d7dc5,
    inset 0 0 16px rgba(159,61,255,.9),
    inset 0 0 32px rgba(159,61,255,.6);
}

/*▼ABOUTセクション▼*/

.be-about {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("../img/backgrounds/bg1-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-sizing: border-box;
  overflow: hidden;
}

/* ABOUT専用：上下左右のネオン線を明確化 */
.be-about.neon-inner-crisp {
  border-top: 5px solid #9d7dc5;
  border-bottom: 5px solid #9d7dc5;
  box-shadow:
    inset 0 0 0 1px rgba(157, 125, 197, .95),
    inset 0 0 16px rgba(159, 61, 255, .9),
    inset 0 0 32px rgba(159, 61, 255, .6);
}

/*
 * 既存の .neon-inner-crisp は padding:5px を持つため、
 * 内側レイアウトはその5px込みで全幅に広げる
 */
.be-about,
.be-about * {
  box-sizing: border-box;
}

.be-about__inner {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 43vw);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  min-height: clamp(560px, 54vw, 760px);
  padding-left: clamp(24px, 12vw, 240px);
  padding-right: 0;
}

.be-about__body {
  min-width: 0;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.be-about__heading {
  display: grid;
  grid-template-columns: clamp(70px, 7vw, 110px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom:20px;
}

.be-about__icon {
  width: clamp(70px, 7vw, 110px);
}

.be-about__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.be-about__title {
  min-width: 0;
  position: relative;
}

.be-about__subtitle {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.be-about .title_wrap {
  margin-bottom: 0 !important;
}

.be-about .title_back {
  z-index: 0;
}

.be-about .title_front {
  z-index: 1;
}

.be-about .lead-anim {
  margin-top: clamp(20px, 3vw, 20px);
}

.be-about__text {
  margin-top: clamp(24px, 3vw, 40px);
  line-height: 2;
  font-weight: 700;
}

.be-about__visual {
  width: 100%;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.be-about__visual img {
  width: 100%;
  height: min(50vw, 600px);
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: right center;
  clip-path: inset(0 0 0 0 round 80px 0 0 80px);
}

/* SP調整 */
@media screen and (max-width: 959px) {
  .be-about {
    background-attachment: scroll;
  }

  .be-about__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    gap: 32px;
  }

   .be-about__body {
    max-width: none;
    padding: 2em 16px 0;
  }

  .be-about__heading {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .be-about__icon {
    width: 64px;
  }

  .be-about .title_back {
    font-size: clamp(64px, 20vw, 100px);
  }

  .be-about .title_front {
    font-size: clamp(44px, 14vw, 64px);
  }

  .be-about__text {
    line-height: 1.9;
  }

  .be-about__visual {
    display: block;
  }

  .be-about__visual img {
    height: clamp(260px, 70vw, 420px);
    min-height: 0;
    clip-path: inset(0 0 0 0 round 40px);
  }
}

/*▼導入カードセクション▼*/

.be-intro-links {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: #000;
  background-image: url("../img/backgrounds/bg2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: clamp(40px, 5vw, 72px) 16px;
}

.be-intro-links,
.be-intro-links * {
  box-sizing: border-box;
}

.be-intro-links__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.be-intro-card {
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background-color: rgba(0, 0, 0, 0.48);
  padding: clamp(20px, 3vw, 40px);
}

.be-intro-card + .be-intro-card {
  margin-top: clamp(24px, 4vw, 48px);
}

.be-intro-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
}

.be-intro-card--reverse .be-intro-card__media {
  grid-column: 2;
}

.be-intro-card--reverse .be-intro-card__content {
  grid-column: 1;
  grid-row: 1;
}

.be-intro-card__media {
  min-width: 0;
}

.be-intro-card__heading {
  display: grid;
  grid-template-columns: clamp(54px, 7vw, 88px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.be-intro-card__num {
  display: block;
  width: 100%;
  height: auto;
}

.be-intro-card__en {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1;
  font-weight: 800;
}

.be-intro-card__jp {
  margin: 6px 0 0;
  color: var(--color_main, #0071bc);
  font-weight: 700;
}

.be-intro-card__image {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 12px 12px 2px 1px rgba(17, 37, 89, 1);
}

.be-intro-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.be-intro-card__content {
  min-width: 0;
}

.be-intro-card__content p {
  line-height: 2;
  margin-top: clamp(20px, 3vw, 32px);
}

.be-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  margin-top: clamp(18px, 2.5vw, 28px);
  padding: 0.85em 1.6em;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, #1f4ebd, #9d7dc5);
  transition: transform .25s ease, filter .25s ease;
border-radius:5px;
}

.be-more-btn:hover {
  color: #fff;
  filter: brightness(1.12);
  transform: translateY(-2px);
}

@media screen and (max-width: 959px) {
  .be-intro-links {
    background-attachment: scroll;
    padding: 40px 16px;
  }

  .be-intro-card,
  .be-intro-card--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .be-intro-card--reverse .be-intro-card__media,
  .be-intro-card--reverse .be-intro-card__content {
    grid-column: auto;
    grid-row: auto;
  }

  .be-intro-card__heading {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .be-intro-card__en {
    font-size: clamp(1.6rem, 9vw, 2.4rem);
  }

  .be-more-btn {
    width: 100%;
  }
}

/*▼共通セクション見出し▼*/

.be-section-head {
  position: relative;
  width: 100%;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.be-section-head--center {
  text-align: center;
}

.be-section-head__subtitle {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
}

.be-section-head--center .title_wrap2,
.be-section-head--center .title_wrap2_2,
.be-section-head--center .title_wrap2_3 {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*▼FEATUREセクション▼*/

.be-feature {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: #000;
  background-image: url("../img/backgrounds/bg3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: clamp(56px, 6vw, 96px) 0;
}

.be-feature,
.be-feature * {
  box-sizing: border-box;
}

.be-feature__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.be-feature__slider {
  width: 100%;
  overflow: hidden;
padding-bottom: 48px;
}

.be-feature__slider .swiper {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .be-feature {
    background-attachment: scroll;
    padding: 48px 0;
  }

  .be-feature .title_back2_3 {
    font-size: clamp(72px, 19vw, 100px);
  }

  .be-feature .title_front2_3 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .be-feature__slider {
    padding-inline: 0;
  }
}

/*▼MISSIONセクション▼*/

.be-mission {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: #000;
  background-image: url("../img/backgrounds/bg4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: clamp(56px, 6vw, 96px) 0;
}

.be-mission,
.be-mission * {
  box-sizing: border-box;
}

.be-mission__inner {
  display: grid;
  grid-template-columns: minmax(380px, 48vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.be-mission__visual {
  width: 100%;
  min-width: 0;
}

.be-mission__visual img {
  width: 100%;
  height: clamp(300px, 50vw, 600px);
  display: block;
  object-fit: cover;
  object-position: left center;
  clip-path: inset(0 0 0 0 round 0 80px 80px 0);
}

.be-mission__body {
  min-width: 0;
  max-width: 820px;
  padding-right: clamp(24px, 8vw, 120px);
}

.be-mission__heading {
  display: grid;
  grid-template-columns: clamp(70px, 7vw, 110px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(28px, 3vw, 44px);
}

.be-mission__icon {
  width: clamp(70px, 7vw, 110px);
}

.be-mission__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.be-mission__title {
  min-width: 0;
  position: relative;
}

.be-mission__subtitle {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.be-mission .title_wrap {
  margin-bottom: 0 !important;
}

.be-mission .title_back {
  z-index: 0;
}

.be-mission .title_front {
  z-index: 1;
}

.be-mission .lead-anim {
  margin-top: clamp(20px, 3vw, 40px);
}

.be-mission__text {
  margin-top: clamp(24px, 3vw, 40px);
  line-height: 2;
  font-weight: 700;
}

.be-mission__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 48px);
}

.be-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9em 1.2em;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  background: linear-gradient(90deg, #1f4ebd, #9d7dc5);
  box-shadow: 0 0 18px rgba(31, 78, 189, 0.35);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, filter .25s ease;
}

.be-action-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  z-index: -1;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.35) 52%,
    transparent 65%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: be-btn-shiny 3.2s ease-in-out infinite;
}

.be-action-btn span {
  position: relative;
  z-index: 1;
}

@keyframes be-btn-shiny {
  0% {
    left: -75%;
  }

  42% {
    left: -75%;
  }

  68% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .be-action-btn::before {
    animation: none;
    display: none;
  }
}

.be-action-btn:hover {
  color: #fff;
  filter: brightness(1.12);
  transform: translateY(-2px);
}

@media screen and (max-width: 959px) {
  .be-mission {
    background-attachment: scroll;
    padding: 48px 0;
  }

  .be-mission__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .be-mission__visual img {
    height: clamp(260px, 70vw, 420px);
    clip-path: inset(0 0 0 0 round 40px);
  }

  .be-mission__body {
    max-width: none;
    padding: 0 16px;
  }

  .be-mission__heading {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .be-mission__icon {
    width: 64px;
  }

  .be-mission .title_back {
    font-size: clamp(64px, 20vw, 100px);
  }

  .be-mission .title_front {
    font-size: clamp(44px, 14vw, 64px);
  }

  .be-mission__buttons {
    grid-template-columns: 1fr;
  }
}

/*▼TITLEセクション▼*/

.be-title {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: #505050;
  background-image: url("../img/backgrounds/bg5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: clamp(56px, 6vw, 96px) 0;
}

.be-title,
.be-title * {
  box-sizing: border-box;
}

.be-title__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.be-title__lead-image {
  width: min(700px, 80vw);
  padding-left: clamp(16px, 10vw, 180px);
}

.be-title__lead-image img {
  display: block;
  width: 100%;
  height: auto;
}

.be-title__slider {
  width: 100%;
  overflow: visible;
}

.be-title__slider .swiper {
  width: 100%;
}

.be-title__button {
  display: flex;
  justify-content: center;
  margin-top: clamp(8px, 2vw, 24px);
}

.be-title__note {
  width: min(1100px, calc(100% - 32px));
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.be-title__note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.be-title__note li {
  position: relative;
  padding: 1em 1.2em 1em 2.4em;
  line-height: 1.8;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
}

.be-title__note li::before {
  content: "※";
  position: absolute;
  left: 1em;
  top: 1em;
  color: #9d7dc5;
  font-weight: 700;
}
.be-title .be-more-btn{
    min-width: 500px;
}
@media screen and (max-width: 959px) {
  .be-title {
    background-attachment: scroll;
    padding: 48px 0;
  }

.be-title .be-more-btn{
min-width:300px;
width:80%;
}

  .be-title .title_back2 {
    font-size: clamp(72px, 20vw, 100px);
  }

  .be-title .title_front2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .be-title__lead-image {
    width: min(420px, 86vw);
  }

  .be-title__note {
    width: calc(100% - 32px);
  }
}

/*▼ゲームCTAセクション▼*/

.be-game-cta {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #111;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url("../img/backgrounds/bg6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.be-game-cta,
.be-game-cta * {
  box-sizing: border-box;
}

.be-game-cta__inner {
  display: grid;
  grid-template-columns: minmax(120px, 20%) minmax(0, 1fr) minmax(120px, 20%);
  align-items: end;
  min-height: clamp(420px, 45vw, 620px);
}

.be-game-cta__content {
  align-self: center;
  text-align: center;
  padding: clamp(48px, 6vw, 96px) 16px;
  position: relative;
  z-index: 1;
}

.be-game-cta__catch {
  margin: 0 0 clamp(24px, 4vw, 48px);
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.7;
}

.be-game-cta__catch span {
  color: var(--color_deep01, #e60033);
}

.be-game-cta .lead-anim {
  display: block;
  width: 100%;
  text-align: center;
}

.be-game-cta .lead-anim .commonLead {
  margin-left: auto;
  margin-right: auto;
}

.be-game-cta__small {
  margin: clamp(18px, 3vw, 32px) 0 10px;
  font-weight: 700;
}

.be-game-cta__button {
  width: min(620px, 100%);
  margin-inline: auto;
  border-radius: 999px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.be-action-btn--red {
  background: linear-gradient(90deg, #d7193f, #ff6b6b);
  box-shadow: 0 0 18px rgba(215, 25, 63, 0.35);
}
/* CTA内の赤ボタンだけ、旧SWELLボタン風に調整 */
.be-game-cta .be-game-cta__button {
  width: min(865px, calc(100% - 48px));
  min-height: 80px;
  padding: 1.1em 2em;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff414d 0%, #ffb640 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

.be-game-cta .be-game-cta__button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

@media screen and (max-width: 959px) {
  .be-game-cta .be-game-cta__button {
    width: min(865px, calc(100% - 32px));
    min-height: 72px;
    border-radius: 4px;
  }
}
.be-game-cta__side {
  align-self: end;
  min-width: 0;
}

.be-game-cta__side img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.be-game-cta__side--left img {
  transform-origin: left bottom;
}

.be-game-cta__side--right img {
  transform-origin: right bottom;
}

@media screen and (max-width: 959px) {
  .be-game-cta {
    background-attachment: scroll;
  }

  .be-game-cta__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .be-game-cta__content {
    order: 1;
    padding: 48px 16px 24px;
  }

  .be-game-cta__side--left {
    order: 2;
    width: 52%;
    justify-self: start;
  }

  .be-game-cta__side--right {
    order: 3;
    width: 52%;
    justify-self: end;
    margin-top: -24%;
  }

  .be-game-cta__catch {
    font-size: clamp(20px, 7vw, 32px);
  }
}