<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*! Writen  by SCSS */
body {
  height: 100vh;
  overflow: hidden; }
  body.loaded {
    height: auto;
    overflow: visible; }
    body.loaded .main_contents {
      opacity: 1; }
    body.loaded .loading_wrap {
      opacity: 0;
      pointer-events: none; }

.header .logo_wrap {
  position: fixed; }
  body.nav_hide .header .logo_wrap {
    transform: translateY(-100%); }
    @media screen and (max-width: 960px) {
      body.nav_hide .header .logo_wrap {
        transform: none; } }

body:before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.3;
  background: url("../images/top/noise.png") left top repeat; }

.grad_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: 3s opacity ease-in-out 2s; }
  body.loaded .grad_bg {
    opacity: 1; }
  .grad_bg span {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, #fff, transparent 30%), linear-gradient(to top, transparent 0%, transparent 70%), linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4) 70%), transparent;
    animation: gradation_bg 30s infinite;
    /*
    background-image: repeating-linear-gradient(
    	to bottom right,
    	hsl(0deg, 80%, 50%),
    	hsl(60deg, 80%, 50%),
    	hsl(120deg, 80%, 50%),
    	hsl(180deg, 80%, 50%),
    	hsl(240deg, 80%, 50%),
    	hsl(300deg, 80%, 50%),
    	hsl(360deg, 80%, 50%) 50%
    );
    */ }
@keyframes gradation_bg {
  0%, 100% {
    background-color: #3ACFF0; }
  20% {
    background-color: #39d2CA; }
  40% {
    background-color: #FFFFCC; }
  60% {
    background-color: #FFEAFC; }
  80% {
    background-color: #339AC0; } }
.content_bg {
  position: fixed;
  inset: -20%;
  height: 100dvh;
  width: 140%;
  margin: auto;
  pointer-events: none;
  mix-blend-mode: luminosity; }
  .content_bg canvas {
    position: absolute !important;
    inset: 0;
    left: -30%;
    right: -30%;
    margin: auto;
    width: 105% !important;
    height: 160dvh !important;
    transform: rotate(-18deg); }
    @media screen and (max-width: 480px) {
      .content_bg canvas {
        width: 180% !important;
        height: 240dvh !important; } }

.main_contents {
  opacity: 0;
  transition: 1s opacity ease-in-out 0s; }

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000000;
  transition: 0.5s opacity ease-in-out 0s; }
  .loading_wrap .word {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.5em;
    height: 100vh;
    line-height: 2.5em;
    margin: auto;
    font-family: 'Source Code Pro', monospace;
    font-weight: 400; }
  .loading_wrap .word span {
    display: inline-block;
    transform: translateX(100%) scale(0.9);
    transition: transform 500ms; }
  .loading_wrap .word .done {
    color: #082F90;
    transform: translateX(0) scale(1); }
  .loading_wrap .overlay02 {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 1000px 2px; }

body {
  /*
  --color-text:#fff;
  --color-bg:#1f174e;
  --color-bg-2:#151436;
  --color-bg-3:#157DBB;
  --color-link:#8596df;
  --color-link-hover:#723bb7;
  */ }

.main_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -222; }
  .main_bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 30% 48%, var(--color-bg) 0, var(--color-bg-2) 45%, var(--color-bg-3) 150%); }

.overlay_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.7); }

#cursor {
  position: fixed;
  width: 93px;
  height: 93px;
  margin: -46px 0 0 -46px;
  /*真ん中にくるようにマイナスマージンで調整*/
  z-index: 0;
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  transform: translateY(100vh);
  transition: 1.5s transform cubic-bezier(0.02, 0.3, 0.42, 0.99) 0.5s; }
  body.loaded #cursor {
    transform: translateY(0); }
  #cursor img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto; }
    #cursor img.mouse2 {
      animation: cursorClockwise 10s linear infinite; }
    #cursor img.mouse3 {
      animation: cursorAnticlockwise 6s linear infinite; }

@keyframes cursorClockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@keyframes cursorAnticlockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/*	テキスト横流れ	*/
.paramove_cont {
  max-width: 1095px;
  margin-left: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0.1; }
  .paramove_cont.full {
    max-width: 100%; }
  @media screen and (max-width: 480px) {
    .paramove_cont {
      overflow: visible;
      margin: 0; } }
  .paramove_cont .paramove_wrap {
    margin-bottom: 100px; }
    @media screen and (max-width: 768px) {
      .paramove_cont .paramove_wrap {
        margin-bottom: 60px; } }
    @media screen and (max-width: 480px) {
      .paramove_cont .paramove_wrap {
        margin-bottom: 35px;
        mix-blend-mode: unset; } }
    .paramove_cont .paramove_wrap .para_txt {
      font-size: clamp(50px, 7.059vw, 120px);
      text-align: center;
      font-style: italic;
      font-weight: 800;
      line-height: 1;
      position: relative;
      will-change: transform;
      white-space: nowrap;
      color: #000;
      /*
      background: -webkit-linear-gradient(90deg, rgba(#FFF,0.7) 0%,rgba(#FFF,0.1) 50%, rgba(#FFF,0.7) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color:rgba(#FFF,0.6);
      */ }
      @media screen and (max-width: 768px) {
        .paramove_cont .paramove_wrap .para_txt {
          font-size: 6.4vw; } }
      @media screen and (max-width: 480px) {
        .paramove_cont .paramove_wrap .para_txt {
          font-size: 10vw;
          width: fit-content;
          margin: 0 auto; } }
      .paramove_cont .paramove_wrap .para_txt.vpc480 {
        display: inline-block; }
        @media screen and (max-width: 480px) {
          .paramove_cont .paramove_wrap .para_txt.vpc480 {
            display: none; } }
      .paramove_cont .paramove_wrap .para_txt.vsp480 {
        display: none; }
        @media screen and (max-width: 480px) {
          .paramove_cont .paramove_wrap .para_txt.vsp480 {
            display: inline-block; } }
      @media screen and (max-width: 480px) {
        .paramove_cont .paramove_wrap .para_txt .sp_indent {
          text-indent: -1.5em;
          padding-left: 1.5em; } }
    .paramove_cont .paramove_wrap.pos_ab {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%; }

.floating {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1010;
  max-width: 230px;
  transition: 1s opacity ease-in-out 0s;
  opacity: 0;
  filter: blur(55px) saturate(0%) contrast(0%) brightness(500%);
  /*
  opacity: 0;
  pointer-events: none;
  body.bnr_fadein &amp;{
  	pointer-events: all;
  	opacity: 1;
  }
  */ }
  @media screen and (max-width: 1200px) {
    .floating {
      right: 20px;
      bottom: 20px; } }
  @media screen and (max-width: 768px) {
    .floating {
      width: 29.95%; } }
  @media screen and (max-width: 480px) {
    .floating {
      width: calc(100% - 10px);
      margin: auto;
      max-width: 100%;
      right: 0px;
      left: 0px;
      bottom: 5px; } }
  @media screen and (max-width: 480px) {
    .floating:before {
      /*
      content:"";
      position: absolute;
      left:0;
      right:0;
      bottom:100%;
      height:14px;
      background: linear-gradient(to top, rgba(#000,0.3) 0%,rgba(#000,0) 100%);
      */ } }
  .floating a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25)); }
    .floating a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: -100%;
      bottom: -100%;
      right: -100%;
      left: -100%;
      opacity: 0;
      border-radius: 50%;
      margin: auto;
      transform-origin: center;
      border: 1px solid #FFF;
      box-shadow: 0 0 10px 0 #FFF;
      animation-name: button_anime;
      animation-duration: 2s;
      animation-iteration-count: infinite; }
      @media screen and (max-width: 480px) {
        .floating a::before {
          display: none; } }
  @media screen and (max-width: 480px) {
    .floating img {
      width: 100%; } }
  body.loaded .floating {
    filter: blur(0) saturate(100%) contrast(100%) brightness(100%);
    opacity: 1;
    transition: 3s opacity cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s, 3s transform cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s, 3s filter cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    will-change: opacity,transform,filter; }
  .floating.fadeout {
    transition: 0.5s opacity ease-in-out 0s !important;
    opacity: 0 !important;
    pointer-events: none !important; }
  .floating .float_close {
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 0;
    cursor: pointer; }
    @media screen and (max-width: 480px) {
      .floating .float_close {
        top: auto;
        bottom: 100%; } }

.accordion_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-top: 30px;
  text-align: center;
  padding: 15px 60px 15px 25px;
  position: relative;
  cursor: pointer; }
  .accordion_btn .ac_text {
    position: relative;
    font-size: clamp(13px, 1.42vw, 20px);
    color: #000;
    z-index: 2;
    line-height: 1; }
    @media screen and (max-width: 768px) {
      .accordion_btn .ac_text {
        font-size: 2vw;
        padding: 10px; } }
    @media screen and (max-width: 480px) {
      .accordion_btn .ac_text {
        font-size: 4vw;
        padding: 0; } }
  .accordion_btn .icon {
    right: 20px;
    top: 50%;
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border-radius: 100vw; }
    .accordion_btn .icon:before, .accordion_btn .icon:after {
      position: absolute;
      content: "";
      display: block;
      transition: transform 0.4s;
      background: #000;
      left: 50%;
      top: 50%;
      width: 100%;
      height: 1px;
      transform: translate(-50%, -50%); }
    .accordion_btn .icon:before {
      transform: translate(-50%, -50%) rotate(90deg); }
    .accordion_btn .icon.open:before {
      transform: translate(-50%, -50%) rotate(0deg); }
  .accordion_btn:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #ffee98;
    border-radius: 10px;
    transition: 0.3s all ease-in-out 0s;
    transform: scale(1);
    transform-origin: center;
    background: #ffee98; }
  body:not(.mobile) .accordion_btn:hover:before {
    transform: scale(1.05, 1.1); }

.intro {
  padding: 90px 0 180px;
  padding-top: 45px;
  padding-top: 0;
  position: relative; }
  @media screen and (max-width: 768px) {
    .intro {
      padding: 60px 0 100px;
      padding: 30px 0 100px;
      padding-top: 0; } }
  @media screen and (max-width: 480px) {
    .intro {
      padding: 60px 0 80px;
      padding: 30px 0 80px;
      padding-top: 0; } }
  .intro .intro_txt {
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: clamp(40px, 5vw, 60px); }
    @media screen and (max-width: 480px) {
      .intro .intro_txt {
        padding: 0 20px; } }
    .intro .intro_txt .cont_ttl {
      width: fit-content;
      padding: 5px 40px;
      margin-inline: auto;
      background: #3f6493; }
      @media screen and (max-width: 480px) {
        .intro .intro_txt .cont_ttl {
          padding: 5px 15px; } }
    .intro .intro_txt .intro_ttl {
      font-size: clamp(30px, 3.667vw, 44px);
      line-height: 1.6;
      color: #3f6493;
      margin-bottom: 40px;
      font-weight: bold; }
      @media screen and (max-width: 768px) {
        .intro .intro_txt .intro_ttl {
          margin-bottom: 25px; } }
      @media screen and (max-width: 480px) {
        .intro .intro_txt .intro_ttl {
          line-height: 1.8;
          font-size: 5.5vw; } }
      .intro .intro_txt .intro_ttl.anime_text {
        animation-fill-mode: forwards; }
      .intro .intro_txt .intro_ttl span {
        display: inline-block; }
        .intro .intro_txt .intro_ttl span.big {
          font-size: 130%;
          line-height: 1;
          color: #ffa800;
          letter-spacing: 0.15em; }
        .intro .intro_txt .intro_ttl span.small {
          display: block;
          font-size: 81%; }
      .intro .intro_txt .intro_ttl .anime1 {
        animation: wakuwaku 0.4s ease-in-out infinite alternate;
        animation-timing-function: steps(2, jump-none); }
      .intro .intro_txt .intro_ttl .anime2 {
        animation: dokidoki 0.9s ease-in-out infinite alternate; }
@keyframes neon {
  from {
    text-shadow: 0 0 10px rgba(66, 224, 224, 0.4), 0 0 20px rgba(66, 224, 224, 0.4), 0 0 30px rgba(66, 224, 224, 0.4), 0 0 40px rgba(66, 224, 224, 0.4), 0 0 70px rgba(66, 224, 224, 0.4), 0 0 80px rgba(66, 224, 224, 0.4), 0 0 100px rgba(66, 224, 224, 0.4), 0 0 150px rgba(66, 224, 224, 0.4); }
  to {
    text-shadow: 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1), 0 0 5px rgba(66, 224, 224, 0.1); } }
@keyframes wakuwaku {
  0% {
    transform: rotate(6deg); }
  100% {
    transform: rotate(-6deg); } }
@keyframes dokidoki {
  0% {
    transform: scale(1); }
  30% {
    transform: scale(1.1); }
  50% {
    transform: scale(1); }
  80% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
    .intro .intro_txt .circle_img {
      position: relative;
      text-align: center; }
      .intro .intro_txt .circle_img .intro_ttl {
        /*
        position:absolute;
        inset:0;
        margin:0 auto;
        display: flex;
        justify-content: center;
        align-items:center;
        */
        margin-bottom: 0; }
    .intro .intro_txt .intro_read {
      font-size: 16px;
      line-height: 1.8;
      letter-spacing: 0.1em; }
      @media screen and (max-width: 768px) {
        .intro .intro_txt .intro_read {
          font-size: 14px; } }
      @media screen and (max-width: 480px) {
        .intro .intro_txt .intro_read {
          text-align: center; } }
  .intro .virtual_cont {
    margin-bottom: clamp(40px, 8.334vw, 100px);
    position: relative;
    overflow: hidden; }
    .intro .virtual_cont .virtual_bg {
      display: block;
      position: relative; }
      .intro .virtual_cont .virtual_bg img {
        width: 100%; }
      .intro .virtual_cont .virtual_bg .virtual_bg_ttl {
        position: absolute;
        font-size: clamp(60px, 9.412vw, 160px);
        color: #FFF;
        font-weight: 800;
        mix-blend-mode: overlay;
        line-height: 1;
        letter-spacing: 0.1em;
        font-style: italic; }
        @media screen and (max-width: 480px) {
          .intro .virtual_cont .virtual_bg .virtual_bg_ttl {
            font-size: 9.4vw; } }
        .intro .virtual_cont .virtual_bg .virtual_bg_ttl.left {
          left: -1%;
          top: 0;
          line-height: 0.6; }
        .intro .virtual_cont .virtual_bg .virtual_bg_ttl.right {
          right: -1%;
          bottom: 0;
          line-height: 0.85;
          text-align: right; }
    .intro .virtual_cont .virtual_logo {
      position: absolute;
      left: 0;
      right: 0;
      top: 23%;
      max-width: 1580px;
      margin: 0 auto;
      width: calc(100% - 60px);
      display: flex;
      justify-content: space-between;
      z-index: 2; }
      @media screen and (max-width: 480px) {
        .intro .virtual_cont .virtual_logo {
          width: calc(100% - 40px);
          position: relative;
          margin-top: -20%; } }
      .intro .virtual_cont .virtual_logo li {
        width: 27.03%; }
        @media screen and (max-width: 480px) {
          .intro .virtual_cont .virtual_logo li {
            width: 46%; } }
    .intro .virtual_cont .virtual_chara {
      position: absolute;
      left: 0;
      right: 0;
      top: 9%;
      max-width: 1580px;
      margin: 0 auto;
      width: calc(100% - 60px);
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media screen and (max-width: 480px) {
        .intro .virtual_cont .virtual_chara {
          position: static;
          width: 100%; } }
      .intro .virtual_cont .virtual_chara li {
        position: relative; }
        .intro .virtual_cont .virtual_chara li.chara01 {
          left: 0%;
          width: 31.84%;
          z-index: 2; }
          @media screen and (max-width: 1200px) {
            .intro .virtual_cont .virtual_chara li.chara01 {
              left: -2.5%; } }
          @media screen and (max-width: 768px) {
            .intro .virtual_cont .virtual_chara li.chara01 {
              width: 28%; } }
          @media screen and (max-width: 480px) {
            .intro .virtual_cont .virtual_chara li.chara01 {
              display: none; } }
        .intro .virtual_cont .virtual_chara li.chara02 {
          right: 12%;
          width: 16.78%;
          z-index: 2; }
          @media screen and (max-width: 1200px) {
            .intro .virtual_cont .virtual_chara li.chara02 {
              right: 5%;
              width: 15%; } }
          @media screen and (max-width: 480px) {
            .intro .virtual_cont .virtual_chara li.chara02 {
              display: none; } }
  .intro .how_to_use {
    max-width: 1200px;
    margin: 0% auto;
    width: calc(100% - 40px); }
    @media screen and (max-width: 480px) {
      .intro .how_to_use {
        margin: 0 auto; } }
    .intro .how_to_use .how_ttl {
      font-size: clamp(20px, 2.134vw, 32px);
      color: #3f6493;
      line-height: 1.6;
      margin-bottom: 90px;
      text-align: center;
      position: relative;
      font-weight: 700;
      z-index: 3; }
      @media screen and (max-width: 768px) {
        .intro .how_to_use .how_ttl {
          margin-bottom: 40px; } }
      @media screen and (max-width: 480px) {
        .intro .how_to_use .how_ttl {
          font-size: 5.4vw;
          margin-bottom: 30px; } }
      .intro .how_to_use .how_ttl .big {
        display: block;
        font-size: 120%; }
    .intro .how_to_use .play_contents {
      display: flex;
      flex-direction: column; }
      .intro .how_to_use .play_contents .play_in.play01 {
        align-items: flex-end;
        margin-bottom: clamp(80px, 10vw, 120px); }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .play_contents .play_in.play01 {
            flex-direction: column;
            row-gap: 20px;
            margin-bottom: 40px; } }
        .intro .how_to_use .play_contents .play_in.play01 .image_wrap {
          width: 50%;
          position: relative; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play01 .image_wrap {
              width: 100%; } }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play01 .image_wrap .img1 {
              width: 85%; } }
          .intro .how_to_use .play_contents .play_in.play01 .image_wrap .img2 {
            position: absolute;
            left: 68.34%;
            bottom: -40px;
            width: 66.67%; }
            @media screen and (max-width: 768px) {
              .intro .how_to_use .play_contents .play_in.play01 .image_wrap .img2 {
                bottom: -20px; } }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play01 .image_wrap .img2 {
                width: 45%;
                right: 0;
                left: auto; } }
        .intro .how_to_use .play_contents .play_in.play01 .text_group {
          width: 45%;
          row-gap: clamp(40px, 7.693vw, 100px); }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play01 .text_group {
              width: 100%;
              row-gap: 20px; } }
          .intro .how_to_use .play_contents .play_in.play01 .text_group .play_detail {
            margin-left: 35%; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play01 .text_group .play_detail {
                margin-left: 0; } }
      .intro .how_to_use .play_contents .play_in.play02 {
        align-items: center;
        margin-bottom: clamp(40px, 5.834vw, 70px);
        border-top: 1px solid #ccc;
        padding-top: clamp(40px, 5vw, 60px);
        flex-direction: row-reverse; }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .play_contents .play_in.play02 {
            flex-direction: column;
            row-gap: 20px;
            margin-bottom: 40px; } }
        .intro .how_to_use .play_contents .play_in.play02 .image_wrap {
          width: 50%;
          position: relative; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play02 .image_wrap {
              width: 100%; } }
          .intro .how_to_use .play_contents .play_in.play02 .image_wrap .image {
            width: 46.67%; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play02 .image_wrap .image.img1 {
                margin-top: 30px; } }
        .intro .how_to_use .play_contents .play_in.play02 .text_group {
          width: 48.34%;
          row-gap: clamp(20px, 2.308vw, 30px); }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play02 .text_group {
              width: 100%; } }
          .intro .how_to_use .play_contents .play_in.play02 .text_group .play_detail {
            margin-left: 18.97%;
            row-gap: 20px; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play02 .text_group .play_detail {
                margin-left: 0; } }
      .intro .how_to_use .play_contents .play_in.play03 {
        align-items: flex-end;
        margin-bottom: clamp(80px, 15vw, 180px);
        border-top: 1px solid #ccc;
        padding-top: clamp(40px, 5.834vw, 70px); }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .play_contents .play_in.play03 {
            flex-direction: column;
            row-gap: 50px;
            margin-bottom: 40px; } }
        .intro .how_to_use .play_contents .play_in.play03 .image_wrap {
          width: 35%;
          margin-left: 40px;
          position: relative; }
          @media screen and (max-width: 768px) {
            .intro .how_to_use .play_contents .play_in.play03 .image_wrap {
              margin-left: 20px; } }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play03 .image_wrap {
              width: 100%; } }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img1 {
              width: 70%; } }
          .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img2 {
            position: absolute;
            left: -40px;
            bottom: -30%;
            width: 52.39%; }
            @media screen and (max-width: 768px) {
              .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img2 {
                bottom: -15%;
                left: -20px; } }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img2 {
                width: 40%;
                left: -10px;
                bottom: -20%; } }
          .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img3 {
            position: absolute;
            left: 110%;
            bottom: -40px;
            width: 66.67%; }
            @media screen and (max-width: 768px) {
              .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img3 {
                bottom: -30px;
                left: 104%; } }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .play_in.play03 .image_wrap .img3 {
                left: 62%;
                width: 40%;
                bottom: 15%; } }
        .intro .how_to_use .play_contents .play_in.play03 .text_group {
          width: 65.84%;
          margin-right: -5%;
          row-gap: clamp(30px, 4.616vw, 60px);
          text-align: right; }
          @media screen and (max-width: 1300px) {
            .intro .how_to_use .play_contents .play_in.play03 .text_group {
              margin-right: 0;
              margin-left: 1%; } }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play03 .text_group {
              width: 100%;
              text-align: left;
              row-gap: 20px; } }
          .intro .how_to_use .play_contents .play_in.play03 .text_group .play_ttl .big {
            display: block;
            letter-spacing: normal; }
          .intro .how_to_use .play_contents .play_in.play03 .text_group .play_detail {
            margin-right: 5%;
            row-gap: 20px; }
      .intro .how_to_use .play_contents .play_in.play04 {
        align-items: center;
        flex-direction: row-reverse;
        border-top: 1px solid #ccc;
        padding-top: clamp(40px, 5.834vw, 70px); }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .play_contents .play_in.play04 {
            flex-direction: column;
            row-gap: 20px; } }
        .intro .how_to_use .play_contents .play_in.play04 .image_wrap {
          width: 50%;
          position: relative;
          flex-wrap: wrap; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play04 .image_wrap {
              width: 100%; } }
          .intro .how_to_use .play_contents .play_in.play04 .image_wrap .image {
            width: 46.67%; }
            .intro .how_to_use .play_contents .play_in.play04 .image_wrap .image.img2 {
              margin-top: 12%; }
              @media screen and (max-width: 480px) {
                .intro .how_to_use .play_contents .play_in.play04 .image_wrap .image.img2 {
                  margin-top: 30px; } }
            .intro .how_to_use .play_contents .play_in.play04 .image_wrap .image.img3 {
              width: 36.67%;
              margin-top: -5%;
              margin-left: 7%; }
              @media screen and (max-width: 480px) {
                .intro .how_to_use .play_contents .play_in.play04 .image_wrap .image.img3 {
                  margin-top: -10px; } }
        .intro .how_to_use .play_contents .play_in.play04 .text_group {
          width: 43.34%;
          row-gap: clamp(20px, 2.308vw, 30px); }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .play_in.play04 .text_group {
              width: 100%; } }
          .intro .how_to_use .play_contents .play_in.play04 .text_group .play_ttl .big {
            display: block; }
          .intro .how_to_use .play_contents .play_in.play04 .text_group .play_detail {
            row-gap: 20px; }
      .intro .how_to_use .play_contents .text_group {
        display: flex;
        flex-direction: column;
        font-weight: 500; }
        .intro .how_to_use .play_contents .text_group .play_ttl {
          font-size: clamp(20px, 2.429vw, 34px);
          color: #1154b0;
          line-height: 1.4;
          font-style: italic;
          letter-spacing: 0.1em; }
          .intro .how_to_use .play_contents .text_group .play_ttl.big_font {
            font-size: clamp(22px, 2.924vw, 38px);
            white-space: nowrap; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .text_group .play_ttl.big_font {
                font-size: 4.3vw; } }
          .intro .how_to_use .play_contents .text_group .play_ttl.big_font02 {
            font-size: clamp(18px, 2.308vw, 30px); }
          .intro .how_to_use .play_contents .text_group .play_ttl .big {
            font-size: 200%; }
          .intro .how_to_use .play_contents .text_group .play_ttl .big02 {
            font-size: 300%; }
          .intro .how_to_use .play_contents .text_group .play_ttl .drop {
            filter: drop-shadow(5px 5px 0px #FF0); }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .play_contents .text_group .play_ttl .drop {
                filter: drop-shadow(3px 3px 0px #FF0); } }
        .intro .how_to_use .play_contents .text_group .play_detail {
          flex-direction: column;
          row-gap: 30px; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .play_contents .text_group .play_detail {
              row-gap: 10px; } }
          .intro .how_to_use .play_contents .text_group .play_detail .play_ttl_sub {
            font-size: clamp(17px, 2.143vw, 30px);
            color: #3f6493;
            letter-spacing: 0.1em;
            line-height: 1.2; }
          .intro .how_to_use .play_contents .text_group .play_detail .play_read {
            font-size: clamp(12px, 1.231vw, 16px);
            color: #545454;
            letter-spacing: 0.1em; }
    .intro .how_to_use .use_contents {
      position: relative; }
      .intro .how_to_use .use_contents .v_logo {
        position: absolute;
        inset: 0;
        bottom: auto;
        top: -10%;
        width: 80%;
        opacity: 0.2;
        margin: auto;
        text-align: center;
        mix-blend-mode: lighten; }
        @media screen and (max-width: 768px) {
          .intro .how_to_use .use_contents .v_logo {
            width: 80.76%; } }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .use_contents .v_logo {
            width: 100%;
            margin-top: 0;
            left: 0; } }
      .intro .how_to_use .use_contents .use_wrap {
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative; }
        @media screen and (max-width: 480px) {
          .intro .how_to_use .use_contents .use_wrap {
            row-gap: 40px; } }
        .intro .how_to_use .use_contents .use_wrap .use_icon {
          display: none !important;
          position: absolute;
          right: -15px;
          top: -15px;
          width: 40px;
          transition: 1s transform ease-in-out 0s;
          transform-origin: center; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use_icon {
              display: none; } }
          .intro .how_to_use .use_contents .use_wrap .use_icon.small {
            right: -10px;
            top: -10px;
            width: 32px; }
        .intro .how_to_use .use_contents .use_wrap a {
          display: block;
          pointer-events: none; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap a {
              pointer-events: none; } }
          body:not(.mobile) .intro .how_to_use .use_contents .use_wrap a:hover .use_icon {
            transform: rotate(360deg); }
          body:not(.mobile) .intro .how_to_use .use_contents .use_wrap a:hover .use_img {
            opacity: 0.8; }
        .intro .how_to_use .use_contents .use_wrap .use_box {
          position: relative; }
        .intro .how_to_use .use_contents .use_wrap .use_img {
          position: relative;
          transition: 0.3s opacity ease-in-out 0s; }
        .intro .how_to_use .use_contents .use_wrap .use_txt {
          font-size: clamp(12px, 1.25vw, 16px); }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use_txt {
              font-size: 14px; } }
        .intro .how_to_use .use_contents .use_wrap .use01 {
          width: 50.5%; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use01 {
              width: 100%; } }
          .intro .how_to_use .use_contents .use_wrap .use01 .use01_img {
            width: 67.17%; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use01 .use01_img {
                width: 82%;
                margin-left: -5%; } }
          .intro .how_to_use .use_contents .use_wrap .use01 .use01_img02 {
            width: 41.26%;
            position: absolute;
            right: 0;
            top: 37%; }
          .intro .how_to_use .use_contents .use_wrap .use01 .use_txt {
            margin-left: 9%;
            margin-top: 10px; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use01 .use_txt {
                width: 90%;
                margin: 0 auto; } }
        .intro .how_to_use .use_contents .use_wrap .use02 {
          width: 31.42%;
          margin-right: 6.25%;
          margin-top: 7%; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use02 {
              width: 100%;
              margin-top: 0;
              margin-right: 0; } }
          .intro .how_to_use .use_contents .use_wrap .use02 .use_txt {
            margin-left: 9%;
            margin-top: 10px; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use02 .use_txt {
                width: 90%;
                margin: 10px auto 0; } }
        .intro .how_to_use .use_contents .use_wrap .use03 {
          width: 45%; }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use03 {
              width: 100%; } }
          .intro .how_to_use .use_contents .use_wrap .use03 .use03_img {
            width: 77.78%;
            margin-left: auto; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use03 .use03_img {
                width: 100%;
                margin: 0 auto; } }
            .intro .how_to_use .use_contents .use_wrap .use03 .use03_img .use_icon {
              right: 13%; }
          .intro .how_to_use .use_contents .use_wrap .use03 .use_txt {
            margin-left: 9%; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use03 .use_txt {
                width: 90%;
                margin: 10px auto 0; } }
        .intro .how_to_use .use_contents .use_wrap .use04 {
          width: 50.42%;
          margin-top: 60px; }
          @media screen and (max-width: 1200px) {
            .intro .how_to_use .use_contents .use_wrap .use04 {
              width: 54%; } }
          @media screen and (max-width: 480px) {
            .intro .how_to_use .use_contents .use_wrap .use04 {
              width: 100%;
              margin-top: 0; } }
          .intro .how_to_use .use_contents .use_wrap .use04 .use04_img {
            width: 65.96%; }
            @media screen and (max-width: 768px) {
              .intro .how_to_use .use_contents .use_wrap .use04 .use04_img {
                width: 60%; } }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use04 .use04_img {
                width: 65%;
                margin-left: -5%; } }
            .intro .how_to_use .use_contents .use_wrap .use04 .use04_img .use_icon {
              top: 10%; }
          .intro .how_to_use .use_contents .use_wrap .use04 .use04_img02 {
            position: absolute;
            right: 0;
            top: 0;
            width: 41.33%; }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use04 .use04_img02 {
                width: 51.33%; } }
          .intro .how_to_use .use_contents .use_wrap .use04 .use_txt {
            position: absolute;
            right: -3%;
            top: 66%;
            width: 35%; }
            @media screen and (max-width: 768px) {
              .intro .how_to_use .use_contents .use_wrap .use04 .use_txt {
                top: 70%;
                width: 40%; } }
            @media screen and (max-width: 480px) {
              .intro .how_to_use .use_contents .use_wrap .use04 .use_txt {
                position: static;
                width: 90%;
                margin: 10px auto 0; } }

.contents_list {
  position: relative; }
  @media screen and (max-width: 480px) {
    .contents_list {
      overflow: hidden; } }
  .contents_list .contents_list_in {
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1430px;
    margin: 0 auto;
    width: calc(100% - 60px); }
    @media screen and (max-width: 480px) {
      .contents_list .contents_list_in {
        width: calc(100% - 40px); } }
    .contents_list .contents_list_in .section {
      position: relative;
      width: calc(100% - 335px);
      padding-bottom: 120px;
      margin-left: auto;
      z-index: 2; }
      @media screen and (max-width: 1200px) {
        .contents_list .contents_list_in .section {
          width: calc(100% - 290px); } }
      @media screen and (max-width: 768px) {
        .contents_list .contents_list_in .section {
          width: calc(100% - 240px);
          padding-bottom: 80px; } }
      @media screen and (max-width: 480px) {
        .contents_list .contents_list_in .section {
          width: 100%; } }

.info02 {
  position: relative;
                   /*
border-top: 2px solid;
border-bottom: 2px solid;
border-image: linear-gradient(to right, #59c6dc, #0042a0);
border-image-slice: 1;*/
  padding: clamp(50px, 7.5vw, 90px) 0 clamp(80px, 9.584vw, 115px);
  /*.swiper-pagination {
  	display: none !important;
  }
  .swiper-button-next, .swiper-button-prev {	
  	position: absolute;
  	width: 63px;
  	height: 63px;
  	background: center center / cover no-repeat;
  	&amp;::after {
  		display: none !important;
  	}
  }
  .swiper-button-next {
  	background-image: url("../images/top/next.png");
  	right: -73px !important;
  	@include mq(960){
  		display: none;
  	}
  }
  .swiper-button-prev {
  	background-image: url("../images/top/prev.png");
  	left: -73px !important;
  	@include mq(960){
  		display: none;
  	}
  }*/ }
  @media screen and (max-width: 768px) {
    .info02 {
      padding: 40px 0 70px; } }
  .info02::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-image: url("../images/top/info02_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1; }
    @media screen and (max-width: 480px) {
      .info02::before {
        background-image: url("../images/top/info02_bg_sp.png");
        background-position: center; } }
  .info02 .inner {
    max-width: 1295px;
    margin: 0 auto;
    width: calc(100% - 40px); }
  .info02 .ttl {
    width: fit-content;
    padding: 5px 55px;
    margin-inline: auto;
    background: #3f6493; }
    @media screen and (max-width: 768px){
      .info02 .inner {
        width: 100%;
      }
      .info02 .ttl {
        margin-left: 20px;
      }
    }
    @media screen and (max-width: 480px) {
      .info02 .ttl {
        /*margin-inline: 0;*/ } }
  .info02 .info02_list {
    position: relative;
    /*&amp;::after,&amp;:before {
    	content: '';
    	pointer-events: none;
    	position: absolute;
    	@include mq($br_tb){
    		display: none !important;
    	}
    }
    &amp;::after {
    	width: cal_per(1200,340);
    	aspect-ratio: 503/661;
    	background: url("../images/top/info02_01.png") center center / cover no-repeat;
    	position: absolute;
    	left: -175px;
    	top: -105px;
    	max-width: 340px;
    	@include mq(1600){
    		left: 0;
    	}
    	@include mq(1200){
    		top: -75px;
    	}
    	@include mq($br_sp){
    		right: 0;
    		left: auto;
    		max-width: 160px;
    		width: 100%;
    		right: 65px;
    	}
    }
    &amp;::before {
    	width: cal_per(1200,179);
    	aspect-ratio: 265/699;
    	background: url("../images/top/info02_02.png") center center / cover no-repeat;
    	position: absolute;
    	right: cal_per(1200,-130);
    	top: -120px;
    	max-width: 179px;
    	@include mq(1600){
    		right: 30px;
    	}
    	@include mq(1200){
    		top: -90px;
    	}
    	@include mq($br_sp){
    		top: -90px;
    		right: -10px;
    		width: 100%;
    		max-width: 90px;
    	}
    }*/ }
    .info02 .info02_list .info02_in {
      overflow: hidden;
      padding: 20px 10px clamp(20px, 2.5vw, 30px); }
      @media screen and (max-width: 480px) {
        .info02 .info02_list .info02_in {
          padding-inline: 0;
          padding:20px 0 } }
    .info02 .info02_list .item {
      position: relative;
      width: 300px;
      border-radius: 10px;
      box-shadow: 0px 10px 15px -5px #777777;
      padding: 10px;
      height: 100%;
      display: block;
      background: #F5F5F5; }
      @media screen and (max-width: 960px) {
        .info02 .info02_list .item {
          width: 320px; } }
      .info02 .info02_list .item::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid #3f6493;
        border-radius: 10px;
        pointer-events: none; }
      .info02 .info02_list .item.new::after {
        content: 'NEW';
        position: absolute;
        top: 0;
        right: 5px;
        color: red;
        line-height: 1;
        transform: translateY(-110%);
        font-size: clamp(12px, 1.334vw, 16px);
        font-weight: bold; }
      @media screen and (max-width: 768px) {
        .info02 .info02_list .item {
          width: 78.67vw;
          max-width: 320px; } }
      .info02 .info02_list .item:nth-child(odd) {
        background-color: #e9f4f7; }
      .info02 .info02_list .item .obj_ttl {
        position: absolute;
        left: -8px;
        top: -18px;
        font-size: clamp(11px, 1.167vw, 14px);
        padding: 12px 25px;
        border-radius: 10px 0 10px 0;
        line-height: 1;
        color: #fff;
        z-index: 1; }
        .info02 .info02_list .item .obj_ttl.green {
          background: #006633; }
        .info02 .info02_list .item .obj_ttl.blue {
          background: #0059b2; }
        .info02 .info02_list .item .obj_ttl.orange {
          background: #ff9326; }
      .info02 .info02_list .item .news_img {
        position: relative;
        line-height: 0;
        margin-bottom: 5px;
        filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
        border-radius:10px;
        overflow:hidden; }
        .info02 .info02_list .item .news_img:after {
          content: "";
          position: absolute;
          inset: 0;
          border: 2px solid #FFF;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px; }
      .info02 .info02_list .item .text_group {
        padding: 0 10px; }
        .info02 .info02_list .item .text_group .day {
          text-align: right;
          font-size: clamp(12px, 1.334vw, 16px);
          color: #888888;
          font-weight: bold; }
        .info02 .info02_list .item .text_group .text {
          font-size: clamp(12px, 1.5vw, 14px);
          line-height: 1.6; }
  .info02 .btn {
    width: fit-content;
    padding: 10px 40px;
    background: #3f6493;
    color: #fff;
    line-height: 1;
    display: block;
    text-align: right;
    margin: 0 0 0 auto;
    border-radius: 50px;
    font-size: clamp(12px, 1.334vw, 16px); }
  .info02 .swiper_button_wrap {
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    column-gap: 25px;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .info02 .swiper_button_wrap {
        margin: 20px auto 0; } }
    @media screen and (max-width: 768px) {
      .info02 .swiper_button_wrap {
        max-width: 275px;
        max-width: 100%;
        width: calc(100% - 20px);
        column-gap: 10px;
        align-items: center; } }
  .info02 .text_link {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #000;
    display: block;
    white-space: nowrap;
    padding: 15px 25px;
    background: linear-gradient(90deg, #2eb8d4 0%, #05439e 100%);
    border-radius: 90px;
    line-height: 1;
    border-radius: 50px;
    padding: 2px; }
    .info02 .text_link span {
      position: relative;
      display: block;
      width: fit-content;
      background: #ffffff;
      border-radius: 50px;
      padding: 15px 25px;
      line-height: 1;
      transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
      overflow: hidden; }
      @media screen and (max-width: 480px) {
        .info02 .text_link span {
          padding: 10px 25px; } }
  .info02 .swiper-button-prev,
  .info02 .swiper-button-next {
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    position: static;
    color: #082F90;
    font-weight: 500; }
    .info02 .swiper-button-prev .icon_img,
    .info02 .swiper-button-next .icon_img {
      margin-right: 10px; }
      @media screen and (max-width: 480px) {
        .info02 .swiper-button-prev .icon_img,
        .info02 .swiper-button-next .icon_img {
          width: 40px !important; } }
  .info02 .swiper-button-prev {
    flex-direction: row-reverse; }
    .info02 .swiper-button-prev .icon_img {
      margin-right: 0;
      margin-left: 10px; }
  .info02 .swiper-button-prev:after,
  .info02 .swiper-container-rtl .swiper-button-next:after,
  .info02 .swiper-button-next:after,
  .info02 .swiper-container-rtl .swiper-button-prev:after {
    content: none !important; }

.sec12 {
  /*.item {
  }
  .swiper-slide img {
    height: auto;
    width: 100%;
  }*/ }

.side_navi {
  width: 255px;
  position: sticky;
  left: 0;
  top: 100px;
  z-index: 500;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.05); }
  @media screen and (max-width: 768px) {
    .side_navi {
      width: 210px; } }
  @media screen and (max-width: 480px) {
    .side_navi {
      display: none; } }
  .side_navi .list_ttl {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 15px 20px;
    background: #9ee8ff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    .side_navi .list_ttl .abeno_bear {
      position: absolute;
      left: 25px;
      bottom: 10px; }
      @media screen and (max-width: 768px) {
        .side_navi .list_ttl .abeno_bear {
          left: 15px;
          width: 35%; } }
    .side_navi .list_ttl .side_ttl {
      line-height: 1.4;
      font-size: 14px;
      color: #000;
      margin-right: 20px;
      text-align: center; }
      @media screen and (max-width: 768px) {
        .side_navi .list_ttl .side_ttl {
          font-size: 12px; } }
      .side_navi .list_ttl .side_ttl .en {
        display: block;
        font-size: 120%; }
  .side_navi .s_navi {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #FFF;
    border-top: 1px solid #78cce6; }
    .side_navi .s_navi li {
      line-height: 1; }
      .side_navi .s_navi li:last-child a {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        overflow: hidden; }
      .side_navi .s_navi li a {
        padding: 10px 20px;
        display: block;
        position: relative;
        font-size: 18px;
        color: rgba(0, 0, 0, 0.5); }
        .side_navi .s_navi li a:before {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          background: #1e87f7;
          transform: scale(0, 1);
          transform-origin: right top;
          transition: 0.3s transform ease-in-out 0s; }
        body:not(.mobile) .side_navi .s_navi li a:hover span.eng, .side_navi .s_navi li a.active span.eng {
          color: #FFF; }
        body:not(.mobile) .side_navi .s_navi li a:hover span.jp, .side_navi .s_navi li a.active span.jp {
          color: #FFF; }
        body:not(.mobile) .side_navi .s_navi li a:hover:before, .side_navi .s_navi li a.active:before {
          transform-origin: left top;
          transform: scale(1, 1); }
        .side_navi .s_navi li a span {
          line-height: 1.4;
          display: block;
          position: relative;
          transition: 0.3s color ease-in-out 0s;
          color: #1e87f7; }
          .side_navi .s_navi li a span.eng {
            font-size: 18px;
            color: #1e87f7; }
            @media screen and (max-width: 768px) {
              .side_navi .s_navi li a span.eng {
                font-size: 16px; } }
          .side_navi .s_navi li a span.jp {
            font-size: 11px;
            color: #000; }
            @media screen and (max-width: 768px) {
              .side_navi .s_navi li a span.jp {
                font-size: 10px; } }

.cont_ttl {
  border-radius: 50px;
  text-align: center;
  margin-bottom: 50px;
  background: #00508e;
  padding: 8px; }
  @media screen and (max-width: 768px) {
    .cont_ttl {
      margin-bottom: 30px; } }
  .cont_ttl span {
    font-size: clamp(22px, 2.334vw, 28px);
    line-height: 1.6;
    color: #FFF; }
    @media screen and (max-width: 480px) {
      .cont_ttl span {
        font-size: 5.5vw; } }

.read {
  font-size: 14px; }

/*	MOVIEエリア	*/
.movie_wrap .movie_box_wrap {
  position: relative;
  margin-bottom: 120px; }
  @media screen and (max-width: 1200px) {
    .movie_wrap .movie_box_wrap {
      margin-bottom: 80px; } }
  @media screen and (max-width: 768px) {
    .movie_wrap .movie_box_wrap {
      margin-bottom: 50px; } }
  @media screen and (max-width: 480px) {
    .movie_wrap .movie_box_wrap {
      margin: 0 -20px 60px; } }
  .movie_wrap .movie_box_wrap .movie_img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0; }
  .movie_wrap .movie_box_wrap .movie_box {
    position: relative;
    top: 2vw;
    margin: auto;
    width: 91.33%; }
    .movie_wrap .movie_box_wrap .movie_box:before {
      content: "";
      display: block;
      padding-bottom: 56.25%; }
    .movie_wrap .movie_box_wrap .movie_box iframe {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 100%;
      height: 100%; }
.movie_wrap .movie_intro {
  max-width: 1000px;
  margin: 0 auto; }
  .movie_wrap .movie_intro .movie_sub_ttl {
    font-size: 22px;
    margin-bottom: 30px; }
  @media screen and (max-width: 1200px) {
    .movie_wrap .movie_intro .movie_flex {
      flex-wrap: wrap; } }
  .movie_wrap .movie_intro .movie_flex .movie_l {
    width: 58%; }
    @media screen and (max-width: 1200px) {
      .movie_wrap .movie_intro .movie_flex .movie_l {
        width: 100%;
        margin-bottom: 30px; } }
  .movie_wrap .movie_intro .movie_flex .movie_r {
    width: 37%; }
    @media screen and (max-width: 1200px) {
      .movie_wrap .movie_intro .movie_flex .movie_r {
        width: 100%; } }

/*	EVENTエリア	*/
.event_wrap .event_end_txt_wrap {
  margin-bottom: 160px; }
  @media screen and (max-width: 1200px) {
    .event_wrap .event_end_txt_wrap {
      margin-bottom: 80px; } }
  @media screen and (max-width: 768px) {
    .event_wrap .event_end_txt_wrap {
      margin-bottom: 60px; } }
  .event_wrap .event_end_txt_wrap .event_end_txt {
    font-size: 20px;
    color: #FFF;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_end_txt_wrap .event_end_txt {
        font-size: 17px; } }
    @media screen and (max-width: 480px) {
      .event_wrap .event_end_txt_wrap .event_end_txt {
        font-size: 3.9vw; } }
.event_wrap .old_event {
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px; }
  @media screen and (max-width: 1200px) {
    .event_wrap .old_event {
      margin-bottom: 20px; } }
  @media screen and (max-width: 480px) {
    .event_wrap .old_event {
      margin: 0 -20px 15px; } }
  .event_wrap .old_event .old_txt {
    display: inline-block;
    font-size: 24px;
    color: #FFF;
    padding: 0 20px;
    display: flex;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative; }
    .event_wrap .old_event .old_txt .fil {
      flex-shrink: 0;
      font-weight: 600;
      color: #082F90; }
    @media screen and (max-width: 768px) {
      .event_wrap .old_event .old_txt {
        font-size: 21px; } }
    @media screen and (max-width: 480px) {
      .event_wrap .old_event .old_txt {
        font-size: 20px;
        padding: 0 10px; } }
    .event_wrap .old_event .old_txt:before, .event_wrap .old_event .old_txt:after {
      content: "";
      display: block;
      width: 100px;
      height: 1px;
      filter: none;
      background: #082F90; }
.event_wrap .old_slider_cont {
  max-width: 875px;
  margin: 0 auto;
  padding: 0 70px;
  box-sizing: content-box;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .event_wrap .old_slider_cont {
      padding: 0 20px;
      overflow: visible; } }
  .event_wrap .old_slider_cont .bnr_slider {
    overflow: visible; }
    .event_wrap .old_slider_cont .bnr_slider .swiper-slide {
      width: 45.72%; }
      @media screen and (max-width: 480px) {
        .event_wrap .old_slider_cont .bnr_slider .swiper-slide {
          width: 100%; } }
      .event_wrap .old_slider_cont .bnr_slider .swiper-slide .banner {
        margin-bottom: 30px; }
        @media screen and (max-width: 768px) {
          .event_wrap .old_slider_cont .bnr_slider .swiper-slide .banner {
            margin-bottom: 20px; } }
      .event_wrap .old_slider_cont .bnr_slider .swiper-slide .bnr_day {
        font-size: clamp(11px, 1.1vw, 15px);
        line-height: 1.4;
        margin-bottom: 5px; }
        @media screen and (max-width: 480px) {
          .event_wrap .old_slider_cont .bnr_slider .swiper-slide .bnr_day {
            font-size: 13px;
            margin-bottom: 10px; } }
      .event_wrap .old_slider_cont .bnr_slider .swiper-slide .bnr_txt {
        font-size: clamp(13px, 1.3vw, 18px);
        line-height: 1.4;
        font-weight: 500; }
        @media screen and (max-width: 480px) {
          .event_wrap .old_slider_cont .bnr_slider .swiper-slide .bnr_txt {
            font-size: 3.6vw; } }
        .event_wrap .old_slider_cont .bnr_slider .swiper-slide .bnr_txt .big {
          font-size: 110%;
          display: block;
          color: #000; }
  .event_wrap .old_slider_cont .swiper-button-prev,
  .event_wrap .old_slider_cont .swiper-button-next {
    width: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 120px !important;
    z-index: 5; }
  .event_wrap .old_slider_cont .swiper-button-prev {
    left: -70px !important; }
  .event_wrap .old_slider_cont .swiper-button-next {
    right: -70px !important; }
  @media screen and (max-width: 480px) {
    .event_wrap .old_slider_cont .swiper_button_wrap {
      margin-top: 20px;
      max-width: 120px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start; } }
  @media screen and (max-width: 480px) {
    .event_wrap .old_slider_cont .swiper-button-next, .event_wrap .old_slider_cont .swiper-button-prev {
      width: 60px;
      height: auto;
      position: static;
      margin-top: 0; } }
  .event_wrap .old_slider_cont .swiper-button-prev:after,
  .event_wrap .old_slider_cont .swiper-container-rtl .swiper-button-next:after,
  .event_wrap .old_slider_cont .swiper-button-next:after,
  .event_wrap .old_slider_cont .swiper-container-rtl .swiper-button-prev:after {
    content: none !important; }
@media screen and (max-width: 768px) {
  .event_wrap .event_flex {
    flex-wrap: wrap; } }
.event_wrap .event_flex:not(:last-child) {
  margin-bottom: 60px; }
  @media screen and (max-width: 768px) {
    .event_wrap .event_flex:not(:last-child) {
      margin-bottom: 40px; } }
.event_wrap .event_flex .image {
  width: 45.67%;
  position: relative; }
  @media screen and (max-width: 768px) {
    .event_wrap .event_flex .image {
      width: 100%; } }
.event_wrap .event_flex .text {
  background: #fff9d9;
  padding: 40px 40px 40px 7.3%;
  width: 57.54%;
  margin-left: -3.65%;
  margin-top: 3.65%; }
  @media screen and (max-width: 1200px) {
    .event_wrap .event_flex .text {
      padding: 30px 20px 30px 7.3%; } }
  @media screen and (max-width: 768px) {
    .event_wrap .event_flex .text {
      width: 100%;
      margin-left: 0;
      margin-top: 0;
      padding: 20px 20px 30px; } }
  .event_wrap .event_flex .text.up_space {
    margin-top: 10%; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .text.up_space {
        margin-top: 0; } }
  .event_wrap .event_flex .text.wide {
    width: 77.54%;
    margin-left: -23.65%; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .text.wide {
        width: 100%;
        margin-left: 0%; } }
    .event_wrap .event_flex .text.wide .mar_left {
      margin-left: 30%;
      margin-bottom: 50px; }
      @media screen and (max-width: 768px) {
        .event_wrap .event_flex .text.wide .mar_left {
          margin-left: 0;
          margin-bottom: 20px; } }
    .event_wrap .event_flex .text.wide .accordion_group {
      display: none; }
    .event_wrap .event_flex .text.wide .event_group {
      display: flex;
      flex-direction: column; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text.wide .event_group .event_group_in {
          flex-direction: column;
          row-gap: 20px; } }
      .event_wrap .event_flex .text.wide .event_group .event_group_in:not(:first-child) {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.2); }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .event_group_in:not(:first-child) {
            margin-top: 20px;
            padding-top: 20px; } }
      .event_wrap .event_flex .text.wide .event_group .image {
        width: 38.41%; }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .image {
            width: 100%; } }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .image img {
            width: 100%; } }
      .event_wrap .event_flex .text.wide .event_group .group_txt {
        width: 57.62%;
        display: flex;
        flex-direction: column;
        row-gap: 20px; }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .group_txt {
            width: 100%; } }
        .event_wrap .event_flex .text.wide .event_group .group_txt .event_ttl {
          font-size: clamp(16px, 1.353vw, 23px);
          line-height: 1.3;
          font-weight: 800; }
        .event_wrap .event_flex .text.wide .event_group .group_txt .event_read {
          font-size: clamp(12px, 0.9375vw, 15px);
          line-height: 2; }
          @media screen and (max-width: 480px) {
            .event_wrap .event_flex .text.wide .event_group .group_txt .event_read {
              line-height: 1.8; } }
        .event_wrap .event_flex .text.wide .event_group .group_txt ruby rt {
          font-size: 10px; }
        .event_wrap .event_flex .text.wide .event_group .group_txt .ev_attention {
          font-size: clamp(12px, 0.85vw, 14px);
          margin-bottom: 0; }
        @media screen and (max-width: 768px) {
          .event_wrap .event_flex .text.wide .event_group .group_txt .shima_btn .ticket_text {
            font-size: 2vw; } }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .group_txt .shima_btn .ticket_text {
            font-size: 4.4vw; } }
        @media screen and (max-width: 768px) {
          .event_wrap .event_flex .text.wide .event_group .group_txt .ticket_btn .ticket_text {
            font-size: 2vw; } }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text.wide .event_group .group_txt .ticket_btn .ticket_text {
            font-size: 4.4vw; } }
  .event_wrap .event_flex .text .ev_ttl_wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
    row-gap: 10px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 800; }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .ev_ttl_wrap {
        margin-bottom: 20px; } }
    .event_wrap .event_flex .text .ev_ttl_wrap .ev_sub {
      font-size: clamp(15px, 1.375vw, 22px);
      color: #FDFF6C;
      display: block;
      line-height: 1.4; }
      @media screen and (max-width: 768px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .ev_sub {
          font-size: 2.8vw; } }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .ev_sub {
          font-size: 4vw; } }
    .event_wrap .event_flex .text .ev_ttl_wrap .ev_ttl {
      font-size: clamp(18px, 1.53vw, 26px);
      color: #3f6493;
      font-weight: 600;
      line-height: 1.5;
      font-weight: 800; }
      @media screen and (max-width: 768px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .ev_ttl {
          font-size: 3.5vw; } }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .ev_ttl {
          line-height: 1.6;
          font-size: 5.2vw; } }
      .event_wrap .event_flex .text .ev_ttl_wrap .ev_ttl .small {
        display: block;
        font-size: 70%;
        line-height: 1.5; }
    .event_wrap .event_flex .text .ev_ttl_wrap.fuki_on {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      column-gap: 10px; }
    .event_wrap .event_flex .text .ev_ttl_wrap .fukidashi {
      display: block;
      width: 70px;
      aspect-ratio: 1;
      background: #FF0;
      color: #C00;
      text-align: center;
      font-size: clamp(14px, 1.125vw, 18px);
      border-radius: 60px;
      line-height: 1.2;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media screen and (max-width: 1200px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .fukidashi {
          width: 60px; } }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_ttl_wrap .fukidashi {
          width: 50px;
          font-size: 13px; } }
  .event_wrap .event_flex .text .ev_ttl_sub {
    position: relative;
    overflow: hidden; }
    .event_wrap .event_flex .text .ev_ttl_sub:not(:first-of-type) {
      margin-top: 20px; }
    .event_wrap .event_flex .text .ev_ttl_sub span {
      display: inline-block;
      font-size: 18px;
      padding-right: 10px;
      position: relative; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_ttl_sub span {
          font-size: 13px; } }
      .event_wrap .event_flex .text .ev_ttl_sub span:after {
        content: "";
        height: 1px;
        position: absolute;
        display: block;
        background-color: rgba(255, 255, 255, 0.3);
        width: 1000px;
        left: 100%;
        top: 50%; }
  .event_wrap .event_flex .text .ev_read2 {
    font-size: clamp(12px, 1.25vw, 20px); }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .text .ev_read2 {
        font-size: 16px; } }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .ev_read2 {
        font-size: 15px; } }
    .event_wrap .event_flex .text .ev_read2.small {
      font-size: clamp(12px, 1.125vw, 18px); }
      @media screen and (max-width: 768px) {
        .event_wrap .event_flex .text .ev_read2.small {
          font-size: 16px; } }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_read2.small {
          font-size: 15px; } }
    .event_wrap .event_flex .text .ev_read2:not(:first-of-type) {
      margin-top: 10px; }
  .event_wrap .event_flex .text .text_img_wrap {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .text_img_wrap {
        flex-direction: column;
        row-gap: 20px; } }
    .event_wrap .event_flex .text .text_img_wrap .text_group {
      width: 66.67%; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .text_img_wrap .text_group {
          width: 100%; } }
      .event_wrap .event_flex .text .text_img_wrap .text_group .ev_read {
        font-size: clamp(10px, 0.9375vw, 15px); }
        @media screen and (max-width: 768px) {
          .event_wrap .event_flex .text .text_img_wrap .text_group .ev_read {
            font-size: 13px; } }
    .event_wrap .event_flex .text .text_img_wrap .image {
      width: 29.42%; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .text_img_wrap .image {
          width: 100%;
          max-width: 150px;
          margin: 0 auto; } }
  .event_wrap .event_flex .text .text_group {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .event_wrap .event_flex .text .link_group {
    display: flex;
    flex-direction: row;
    gap: 20px; }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .link_group {
        flex-direction: column;
        row-gap: 15px; } }
  .event_wrap .event_flex .text .ev_read {
    font-size: clamp(12px, 0.9375vw, 15px); }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .text .ev_read {
        font-size: 14px; } }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .ev_read {
        font-size: 13px; } }
    .event_wrap .event_flex .text .ev_read:not(:first-of-type) {
      margin-top: 10px; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_read:not(:first-of-type) {
          margin-top: 5px; } }
    .event_wrap .event_flex .text .ev_read a {
      text-decoration: underline; }
    .event_wrap .event_flex .text .ev_read .muryou {
      display: inline-block;
      margin-left: 2rem; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .ev_read .muryou {
          margin-left: 0; } }
  .event_wrap .event_flex .text .event_detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px; }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .text .event_detail {
        display: block;
        margin-top: 15px; } }
    .event_wrap .event_flex .text .event_detail .ev_read {
      font-size: 16px;
      line-height: 1.64; }
      @media screen and (max-width: 768px) {
        .event_wrap .event_flex .text .event_detail .ev_read {
          font-size: 14px; } }
      .event_wrap .event_flex .text .event_detail .ev_read:not(:first-of-type) {
        margin-top: 10px; }
      .event_wrap .event_flex .text .event_detail .ev_read.indent {
        padding-left: 5.5em;
        text-indent: -5.5em; }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text .event_detail .ev_read.indent {
            padding-left: 0;
            text-indent: 0; } }
      .event_wrap .event_flex .text .event_detail .ev_read span.ev_name {
        font-size: 18px;
        line-height: 2; }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text .event_detail .ev_read span.ev_name {
            font-size: 14px; } }
    .event_wrap .event_flex .text .event_detail .link_button {
      max-width: 152px;
      margin: 20px 0 0; }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .event_detail .link_button {
          margin: 10px 0 0 50%; } }
      @media screen and (max-width: 480px) {
        .event_wrap .event_flex .text .event_detail .link_button a {
          padding: 2px 5px 5px; } }
      .event_wrap .event_flex .text .event_detail .link_button a span {
        font-size: 16px !important; }
        @media screen and (max-width: 480px) {
          .event_wrap .event_flex .text .event_detail .link_button a span {
            font-size: 13px !important; } }
  .event_wrap .event_flex .text .link_button {
    max-width: 328px;
    margin-top: 40px; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .text .link_button {
        max-width: 260px;
        margin-top: 30px; } }
    .event_wrap .event_flex .text .link_button a {
      display: block;
      border-radius: 50px;
      position: relative;
      text-align: center;
      cursor: pointer;
      padding: 7px 10px 11px;
      filter: drop-shadow(0px 0px 0px rgba(15, 108, 241, 0.8)) drop-shadow(0px 0px 1px rgba(15, 108, 241, 0.8)) drop-shadow(0px 0px 2px rgba(15, 108, 241, 0.8)) drop-shadow(0px 0px 3px rgba(15, 108, 241, 0.8)); }
      .event_wrap .event_flex .text .link_button a:before, .event_wrap .event_flex .text .link_button a:after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: 50px;
        transition: 0.3s opacity ease-in-out 0s; }
      .event_wrap .event_flex .text .link_button a:before {
        background: linear-gradient(to right, #D6D6D6 0%, #FFF 50%, #D6D6D6 100%); }
      .event_wrap .event_flex .text .link_button a:after {
        opacity: 0;
        border: 2px solid white; }
      .event_wrap .event_flex .text .link_button a span {
        position: relative;
        font-size: clamp(15px, 2.2vw, 20px);
        color: #062D90;
        transition: 0.3s color ease-in-out 0s; }
      body:not(.mobile) .event_wrap .event_flex .text .link_button a:hover:before {
        opacity: 0; }
      body:not(.mobile) .event_wrap .event_flex .text .link_button a:hover:after {
        opacity: 1; }
      body:not(.mobile) .event_wrap .event_flex .text .link_button a:hover span {
        color: #FFF; }
.event_wrap .event_flex .bnr_anime {
  display: block;
  position: relative; }
  body:not(.mobile) .event_wrap .event_flex .bnr_anime:hover .bnr_anime_img {
    transform: scale(1.05, 1.1); }
  .event_wrap .event_flex .bnr_anime .bnr_anime_img {
    transition: 0.3s transform ease-in-out 0s; }
  .event_wrap .event_flex .bnr_anime .bnr_txt {
    position: absolute;
    inset: 0; }
.event_wrap .event_flex .ev_attention {
  font-size: clamp(12px, 1vw, 16px);
  margin-bottom: 30px;
  color: #FFDC72;
  text-indent: -1em;
  padding-left: 1em; }
  .event_wrap .event_flex .ev_attention.second {
    margin-top: 0; }
  @media screen and (max-width: 480px) {
    .event_wrap .event_flex .ev_attention {
      font-size: 13px;
      margin-bottom: 20px;
      padding-left: 1em;
      text-indent: -1em; } }
.event_wrap .event_flex .shima_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 10px;
  position: relative; }
  @media screen and (max-width: 480px) {
    .event_wrap .event_flex .shima_btn {
      flex-direction: column; } }
  .event_wrap .event_flex .shima_btn .shima_image {
    position: relative;
    z-index: 3; }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .shima_btn .shima_image {
        margin-bottom: 10px; } }
  .event_wrap .event_flex .shima_btn .shima_text {
    position: relative;
    font-size: clamp(13px, 1.42vw, 16px);
    color: #333;
    z-index: 2;
    line-height: 1;
    display: block;
    padding: 8px 10px 10px;
    background: #fff;
    margin-left: 20px;
    border-radius: 5px; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .shima_btn .shima_text {
        font-size: 3.4vw;
        width: 90%;
        border-radius: 20px;
        padding: 2px 5px 5px;
        margin-left: 0; } }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .shima_btn .shima_text {
        font-size: 3.6vw; } }
  .event_wrap .event_flex .shima_btn:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #DCF7BA;
    border-radius: 10px;
    transition: 0.3s all ease-in-out 0s;
    transform: scale(1);
    transform-origin: center;
    background: #DCF7BA; }
  body:not(.mobile) .event_wrap .event_flex .shima_btn:hover:before {
    transform: scale(1.05, 1.1); }
.event_wrap .event_flex .ticket_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  position: relative; }
  .event_wrap .event_flex .ticket_btn .ticket_text {
    position: relative;
    font-size: clamp(13px, 1.42vw, 20px);
    color: #082f90;
    z-index: 2;
    line-height: 1; }
    @media screen and (max-width: 768px) {
      .event_wrap .event_flex .ticket_btn .ticket_text {
        font-size: 3.4vw; } }
    @media screen and (max-width: 480px) {
      .event_wrap .event_flex .ticket_btn .ticket_text {
        font-size: 5.6vw; } }
  .event_wrap .event_flex .ticket_btn:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    transition: 0.3s all ease-in-out 0s;
    transform: scale(1);
    transform-origin: center;
    background: #ffcc00; }
  body:not(.mobile) .event_wrap .event_flex .ticket_btn:hover:before {
    transform: scale(1.05, 1.1); }
.event_wrap .event_none .event_none_text {
  text-align: center;
  font-size: clamp(14px, 1.53vw, 20px);
  line-height: 1.6; }

/*	エリアインフォメーションエリア	*/
.areamap_wrap .area_ttl {
  text-align: center;
  line-height: 1.6;
  font-size: clamp(20px, 3.1vw, 46px);
  color: #082F90;
  margin-bottom: 80px; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .area_ttl {
      margin-bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .areamap_wrap .area_ttl {
      font-size: 25px; } }
.areamap_wrap .youtube_wrap {
  max-width: 920px;
  margin: 0 auto 140px;
  background: #062B60;
  padding: 10px;
  position: relative; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .youtube_wrap {
      margin: 0 auto 80px; } }
  @media screen and (max-width: 480px) {
    .areamap_wrap .youtube_wrap {
      margin: 0 auto 70px; } }
  .areamap_wrap .youtube_wrap .youtube_in {
    position: relative; }
    .areamap_wrap .youtube_wrap .youtube_in:before {
      content: "";
      padding-bottom: 56.25%;
      display: block; }
    .areamap_wrap .youtube_wrap .youtube_in iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%; }
  .areamap_wrap .youtube_wrap .movie_robot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 14.46%;
    right: -12%;
    bottom: -18%;
    pointer-events: none; }
    @media screen and (max-width: 960px) {
      .areamap_wrap .youtube_wrap .movie_robot {
        display: none; } }
.areamap_wrap .banner_cont {
  max-width: 929px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  row-gap: 40px; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .banner_cont {
      margin: 0 auto 50px;
      row-gap: 20px; } }
.areamap_wrap .bnr_circuit {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .bnr_circuit {
      margin: 0 auto 30px; } }
  .areamap_wrap .bnr_circuit a {
    display: block; }
    .areamap_wrap .bnr_circuit a.no_link {
      pointer-events: none; }
.areamap_wrap .bnr_minigolf {
  max-width: 929px;
  margin: 0 auto 80px;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .bnr_minigolf {
      margin: 0 auto 50px; } }
.areamap_wrap .area_sub {
  text-align: center;
  line-height: 1.6;
  font-size: clamp(14px, 2.33vw, 28px);
  color: #082F90;
  margin-bottom: 45px;
  letter-spacing: 0.1em;
  font-weight: 800; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .area_sub {
      margin-bottom: 30px; } }
  @media screen and (max-width: 480px) {
    .areamap_wrap .area_sub {
      font-size: 7vw; } }
.areamap_wrap .area_img_wrap {
  max-width: 1087px;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .areamap_wrap .area_img_wrap {
      padding: 0 20px;
      max-width: 343px;
      flex-wrap: wrap;
      overflow: visible; } }
  body:not(.mobile) .areamap_wrap .area_img_wrap a:hover .area_img {
    opacity: 0.7; }
  .areamap_wrap .area_img_wrap a .area_txt01 {
    font-size: clamp(10px, 1.4vw, 17px);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800; }
    @media screen and (max-width: 1024px) {
      .areamap_wrap .area_img_wrap a .area_txt01 {
        font-size: 1.8vw; } }
    @media screen and (max-width: 480px) {
      .areamap_wrap .area_img_wrap a .area_txt01 {
        margin: 0 -20px 15px;
        font-size: 4.8vw;
        font-weight: 500; } }
  .areamap_wrap .area_img_wrap a .area_img {
    margin-bottom: 10px;
    position: relative;
    transition: 0.3s opacity ease-in-out 0s; }
    .areamap_wrap .area_img_wrap a .area_img .icon_more {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 29.16%; }
  .areamap_wrap .area_img_wrap a .area_txt02_wrap {
    position: relative; }
    .areamap_wrap .area_img_wrap a .area_txt02_wrap .area_txt_bg {
      position: absolute;
      left: 0;
      right: 0;
      top: 0; }
    .areamap_wrap .area_img_wrap a .area_txt02_wrap .area_txt02 {
      font-size: clamp(10px, 0.95vw, 15px);
      position: relative;
      margin: 0 auto;
      width: calc(100% - 20px); }
      @media screen and (max-width: 1200px) {
        .areamap_wrap .area_img_wrap a .area_txt02_wrap .area_txt02 {
          width: 100%; } }
      @media screen and (max-width: 480px) {
        .areamap_wrap .area_img_wrap a .area_txt02_wrap .area_txt02 {
          font-size: 14px; } }
  .areamap_wrap .area_img_wrap .swiper_button_wrap {
    max-width: 260px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .areamap_wrap .area_img_wrap .swiper_button_wrap {
        margin: 20px auto 0; } }
    @media screen and (max-width: 768px) {
      .areamap_wrap .area_img_wrap .swiper_button_wrap {
        max-width: 240px; } }
  .areamap_wrap .area_img_wrap .swiper-button-prev,
  .areamap_wrap .area_img_wrap .swiper-button-next {
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    position: static;
    color: #082F90;
    font-weight: 500; }
    .areamap_wrap .area_img_wrap .swiper-button-prev .icon_img,
    .areamap_wrap .area_img_wrap .swiper-button-next .icon_img {
      margin-right: 10px; }
  .areamap_wrap .area_img_wrap .swiper-button-prev {
    flex-direction: row-reverse; }
    .areamap_wrap .area_img_wrap .swiper-button-prev .icon_img {
      margin-right: 0;
      margin-left: 10px; }
  .areamap_wrap .area_img_wrap .swiper-button-prev:after,
  .areamap_wrap .area_img_wrap .swiper-container-rtl .swiper-button-next:after,
  .areamap_wrap .area_img_wrap .swiper-button-next:after,
  .areamap_wrap .area_img_wrap .swiper-container-rtl .swiper-button-prev:after {
    content: none !important; }
.areamap_wrap .cont_ttl {
  margin-bottom: 75px; }
  @media screen and (max-width: 768px) {
    .areamap_wrap .cont_ttl {
      margin-bottom: 40px; } }

/*	AREAMAPエリア	*/
.areamap02_wrap .areamap_tab {
  max-width: 1070px;
  margin: 0 auto 50px; }
  @media screen and (max-width: 768px) {
    .areamap02_wrap .areamap_tab {
      flex-wrap: wrap;
      gap: 15px 0; } }
  @media screen and (max-width: 480px) {
    .areamap02_wrap .areamap_tab {
      margin: 0 auto 30px; } }
  .areamap02_wrap .areamap_tab li {
    width: 22.43%;
    text-align: center;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px 11px;
    background: #01a8db;
    transition: 0.3s background ease-in-out 0s; }
    @media screen and (max-width: 768px) {
      .areamap02_wrap .areamap_tab li {
        width: 48%;
        padding: 15px 10px; } }
    @media screen and (max-width: 480px) {
      .areamap02_wrap .areamap_tab li {
        padding: 10px; } }
    .areamap02_wrap .areamap_tab li.active, body:not(.mobile) .areamap02_wrap .areamap_tab li:hover {
      background: #2da7bb; }
    .areamap02_wrap .areamap_tab li.area04 {
      /*	バーチャルサーキットだけ長い為	*/
      width: 26.36%; }
      @media screen and (max-width: 768px) {
        .areamap02_wrap .areamap_tab li.area04 {
          width: 48%; } }
      @media screen and (max-width: 768px) {
        .areamap02_wrap .areamap_tab li.area04 span br {
          display: none; } }
      @media screen and (max-width: 480px) {
        .areamap02_wrap .areamap_tab li.area04 span br {
          display: block; } }
    .areamap02_wrap .areamap_tab li:after {
      content: "";
      position: absolute;
      inset: 3px;
      pointer-events: none;
      border-radius: 50px;
      border: 2px solid #FFF; }
    .areamap02_wrap .areamap_tab li &gt; span {
      position: relative;
      line-height: 1.4;
      font-size: clamp(13px, 1.334vw, 20px);
      color: #FFF;
      transition: 0.3s color ease-in-out 0s; }
      @media screen and (max-width: 768px) {
        .areamap02_wrap .areamap_tab li &gt; span {
          line-height: 1.4;
          display: block; } }
.areamap02_wrap .areamap_img {
  text-align: center;
  position: relative;
  background: #000;
  padding: 30px 0; }
  .areamap02_wrap .areamap_img p {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    right: 0;
    transition: 0.3s opacity ease-in-out 0s; }
    .areamap02_wrap .areamap_img p.active {
      opacity: 1;
      position: relative;
      pointer-events: all; }

/*	Let's GOエリア	*/
.lets_wrap .lets_read {
  font-size: clamp(18px, 1.734vw, 26px);
  text-align: center;
  font-weight: bold;
  color: #00508e;
  margin-bottom: 50px; }
  @media screen and (max-width: 768px) {
    .lets_wrap .lets_read {
      font-size: 14px;
      margin-bottom: 30px; } }
.lets_wrap .link_group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  column-gap: 20px; }
  @media screen and (max-width: 480px) {
    .lets_wrap .link_group {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      column-gap: 0;
      row-gap: 15px; } }
  .lets_wrap .link_group .environment {
    max-width: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 5px;
    align-items: center;
    border: 2px solid #00A7EB;
    position: relative;
    overflow: hidden;
    border-radius: 100vmax;
    background: rgba(0, 0, 0, 0.05);
    transition: 0.3s background ease-in-out 0s; }
    @media screen and (max-width: 480px) {
      .lets_wrap .link_group .environment {
        width: 90%;
        padding: 15px 5px;
        max-width: 100%; } }
    body:not(.mobile) .lets_wrap .link_group .environment:hover {
      background: #00A7EB; }
      body:not(.mobile) .lets_wrap .link_group .environment:hover span.text {
        color: #FFF; }
      body:not(.mobile) .lets_wrap .link_group .environment:hover span.icon .off {
        opacity: 0; }
      body:not(.mobile) .lets_wrap .link_group .environment:hover span.icon .on {
        opacity: 1; }
    .lets_wrap .link_group .environment span {
      position: relative; }
      .lets_wrap .link_group .environment span.text {
        font-size: 16px;
        color: #00A7EB;
        transition: 0.3s color ease-in-out 0s; }
        @media screen and (max-width: 768px) {
          .lets_wrap .link_group .environment span.text {
            font-size: 13px;
            line-height: 1.2; } }
        @media screen and (max-width: 480px) {
          .lets_wrap .link_group .environment span.text {
            font-size: 15px; } }
      .lets_wrap .link_group .environment span.icon {
        line-height: 0;
        margin-left: 10px;
        position: relative; }
        .lets_wrap .link_group .environment span.icon span {
          transition: 0.3s opacity ease-in-out 0s; }
          .lets_wrap .link_group .environment span.icon span.on {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0; }

/*	NEWSエリア	*/
.news_wrap .news_infor {
  border-top: 1px solid rgba(255, 255, 255, 0.3); }
  .news_wrap .news_infor .news_in {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    justify-content: flex-start;
    align-items: flex-start;
    font-size: clamp(13px, 1.6vw, 18px); }
    .news_wrap .news_infor .news_in:nth-child(even) {
      background: rgba(155, 218, 238, 0.2); }
    @media screen and (max-width: 480px) {
      .news_wrap .news_infor .news_in {
        flex-wrap: wrap;
        padding: 20px 0; } }
    .news_wrap .news_infor .news_in .name {
      width: 110px;
      color: #FFF;
      padding: 5px 10px;
      line-height: 1.4;
      text-align: center;
      border-radius: 30px;
      margin-right: 20px;
      flex-shrink: 0; }
      @media screen and (max-width: 1200px) {
        .news_wrap .news_infor .news_in .name {
          width: 80px; } }
      @media screen and (max-width: 480px) {
        .news_wrap .news_infor .news_in .name {
          width: 90px;
          margin-right: 10px;
          padding: 5px 10px 3px; } }
      .news_wrap .news_infor .news_in .name.lightblue {
        background: #01A4E5; }
      .news_wrap .news_infor .news_in .name.blue {
        background: #082F90; }
    .news_wrap .news_infor .news_in .day {
      line-height: 1.8;
      letter-spacing: 0.05em;
      flex-shrink: 0; }
    .news_wrap .news_infor .news_in .comment {
      margin-left: 40px;
      font-size: clamp(12px, 1.45vw, 16px); }
      @media screen and (max-width: 1200px) {
        .news_wrap .news_infor .news_in .comment {
          margin-left: 20px;
          font-size: 13px; } }
      @media screen and (max-width: 480px) {
        .news_wrap .news_infor .news_in .comment {
          margin-left: 0;
          margin-top: 10px;
          width: 100%; } }
      .news_wrap .news_infor .news_in .comment strong {
        font-size: 130%;
        line-height: 1.4;
        color: #082F90; }
      .news_wrap .news_infor .news_in .comment .period_indent {
        padding-left: 2.5em; }
      .news_wrap .news_infor .news_in .comment a {
        color: #50bdff;
        text-decoration: underline; }

.sns_wrap {
  padding: 130px 0 80px;
  position: relative;
  z-index: 2; }
  @media screen and (max-width: 768px) {
    .sns_wrap {
      padding: 60px 0 80px; } }
  @media screen and (max-width: 480px) {
    .sns_wrap {
      padding: 0 0 50px; } }
  .sns_wrap .charactor {
    align-items: flex-end;
    max-width: 1314px;
    margin: 0 auto 8.37%;
    width: calc(100% - 40px); }
    @media screen and (max-width: 768px) {
      .sns_wrap .charactor {
        width: 100%; } }
    .sns_wrap .charactor li {
      margin: 0 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: 1s all ease-in-out 0s; }
      @media screen and (max-width: 768px) {
        .sns_wrap .charactor li {
          margin: 0 10px; } }
      @media screen and (max-width: 480px) {
        .sns_wrap .charactor li {
          margin: 0 5px; } }
      .sns_wrap .charactor li.delay02 {
        transition-delay: 0.3s; }
      .sns_wrap .charactor li.delay03 {
        transition-delay: 0.6s; }
      @media screen and (max-width: 768px) {
        .sns_wrap .charactor li:nth-child(2) {
          width: 18%; } }
      @media screen and (max-width: 480px) {
        .sns_wrap .charactor li:nth-child(2) {
          width: 35%; } }
    .sns_wrap .charactor.p-view li {
      opacity: 1;
      transform: translateY(0); }
  .sns_wrap .flow_image {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    transition: all 1s ease-in-out 0s;
    height: 88px;
    margin-bottom: 120px; }
    @media screen and (max-width: 768px) {
      .sns_wrap .flow_image {
        margin-bottom: 100px; } }
    @media screen and (max-width: 480px) {
      .sns_wrap .flow_image {
        margin-bottom: 60px; } }
    .sns_wrap .flow_image .flow_list {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      background: url("../images/top/flow_image.png") left top repeat-x;
      background-size: auto 100%; }
  .sns_wrap .sns_in {
    max-width: 1540px;
    margin: 0 auto;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 480px) {
      .sns_wrap .sns_in {
        flex-wrap: wrap;
        align-items: flex-end;
        width: 100%; } }
    .sns_wrap .sns_in .sns_cont {
      width: 34.82%; }
      @media screen and (max-width: 480px) {
        .sns_wrap .sns_in .sns_cont {
          order: 1;
          width: 100%;
          margin-bottom: 30px;
          padding: 0 20px; } }
      .sns_wrap .sns_in .sns_cont .sns_ttl {
        font-size: 26px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 60px; }
        @media screen and (max-width: 1400px) {
          .sns_wrap .sns_in .sns_cont .sns_ttl {
            font-size: 1.8vw; } }
        @media screen and (max-width: 768px) {
          .sns_wrap .sns_in .sns_cont .sns_ttl {
            font-size: 16px;
            margin-bottom: 25px; } }
        @media screen and (max-width: 480px) {
          .sns_wrap .sns_in .sns_cont .sns_ttl {
            font-size: 26px;
            margin-bottom: 30px; } }
      .sns_wrap .sns_in .sns_cont .sns_icon {
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
        column-gap: 4%; }
        .sns_wrap .sns_in .sns_cont .sns_icon li {
          width: 145px; }
          @media screen and (max-width: 1200px) {
            .sns_wrap .sns_in .sns_cont .sns_icon li {
              width: 100px; } }
          @media screen and (max-width: 480px) {
            .sns_wrap .sns_in .sns_cont .sns_icon li {
              width: 80px; } }
          .sns_wrap .sns_in .sns_cont .sns_icon li a {
            display: block;
            border-radius: 20px;
            background: #000;
            overflow: hidden;
            position: relative; }
            .sns_wrap .sns_in .sns_cont .sns_icon li a:before {
              content: "";
              display: block;
              padding-bottom: 100%; }
            .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in {
              position: absolute;
              inset: 0;
              margin: auto;
              display: flex;
              justify-content: center;
              align-items: center;
              flex-direction: column; }
              .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in .icon {
                width: 44.14%;
                margin: 0 auto;
                line-height: 0; }
                @media screen and (max-width: 480px) {
                  .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in .icon img {
                    width: 50px; } }
              .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in .icon_txt {
                line-height: 1;
                font-size: 14px; }
                @media screen and (max-width: 480px) {
                  .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in .icon_txt {
                    font-size: 12px; } }
                .sns_wrap .sns_in .sns_cont .sns_icon li a .icon_in .icon_txt .small {
                  font-size: 11px; }
          .sns_wrap .sns_in .sns_cont .sns_icon li:nth-child(3) a .icon_in .icon {
            width: 48.97%; }
            @media screen and (max-width: 480px) {
              .sns_wrap .sns_in .sns_cont .sns_icon li:nth-child(3) a .icon_in .icon img {
                width: 54px; } }
    .sns_wrap .sns_in .chara {
      align-items: flex-end; }
      .sns_wrap .sns_in .chara.p-view li {
        opacity: 1;
        transform: translateY(0); }
      .sns_wrap .sns_in .chara li {
        opacity: 0;
        transform: translateY(20px);
        transition: 1s all ease-in-out 0s; }
        @media screen and (max-width: 480px) {
          .sns_wrap .sns_in .chara li {
            margin: 0 5px; } }
        .sns_wrap .sns_in .chara li.delay02 {
          transition-delay: 0.3s; }
        .sns_wrap .sns_in .chara li.delay03 {
          transition-delay: 0.6s; }
      .sns_wrap .sns_in .chara.chara_l {
        width: 32%; }
        @media screen and (max-width: 480px) {
          .sns_wrap .sns_in .chara.chara_l {
            order: 2;
            width: 54%; } }
        @media screen and (max-width: 480px) {
          .sns_wrap .sns_in .chara.chara_l li:nth-child(1) {
            width: 100%;
            margin-left: -7%; } }
      .sns_wrap .sns_in .chara.chara_r {
        width: 29.793%; }
        @media screen and (max-width: 480px) {
          .sns_wrap .sns_in .chara.chara_r {
            order: 2;
            width: 46%; } }

/*	モーダル	*/
.modal_cont {
  display: none; }

.iziModal {
  background: none !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 999999 !important; }
  @media screen and (max-width: 480px) {
    .iziModal {
      bottom: auto !important;
      height: 100% !important;
      overflow-y: scroll; } }
  @media screen and (max-width: 480px) {
    .iziModal .iziModal-wrap {
      height: 100% !important; } }
  @media screen and (max-width: 480px) {
    .iziModal .iziModal-content {
      height: 100% !important; } }

.iziModal-overlay {
  z-index: 999998 !important; }

.iziModal-navigate {
  display: none !important; }

.modal_box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 40px);
  background: url("../images/top/modal/modal_bg.png") center top/cover no-repeat; }
  @media screen and (max-width: 480px) {
    .modal_box {
      padding: 50px 20px 40px;
      width: 100%;
      height: 100% !important;
      overflow-y: scroll; } }
  .modal_box.no_bg {
    background: none;
    max-width: 875px; }
    .modal_box.no_bg .m_box .modal_use_img {
      position: relative; }
      .modal_box.no_bg .m_box .modal_use_img:after {
        content: "";
        position: absolute;
        inset: 0;
        border: 3px solid;
        border-image: linear-gradient(to right, #2eb9d5 0%, #00409f 100%);
        border-image-slice: 1; }
    .modal_box.no_bg .m_box a.close {
      right: 15px;
      top: 15px; }
  @media screen and (max-width: 768px) {
    .modal_box .m_box {
      flex-wrap: wrap; } }
  @media screen and (max-width: 480px) {
    .modal_box .m_box .modal_img {
      position: absolute;
      left: 0;
      right: 0;
      top: 50px; } }
  @media screen and (max-width: 480px) {
    .modal_box .m_box .modal_img .modal_img_in img {
      width: 100%; } }
  .modal_box .m_box .modal_img .controls {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    z-index: 2; }
    @media screen and (max-width: 768px) {
      .modal_box .m_box .modal_img .controls {
        right: 40px;
        bottom: 10px; } }
    @media screen and (max-width: 480px) {
      .modal_box .m_box .modal_img .controls {
        right: 15px;
        bottom: 5px;
        justify-content: center;
        margin: auto; } }
    .modal_box .m_box .modal_img .controls p {
      cursor: pointer;
      display: flex;
      align-items: center;
      border-radius: 100px; }
      .modal_box .m_box .modal_img .controls p:nth-of-type(1) {
        margin-right: 20px; }
        @media screen and (max-width: 768px) {
          .modal_box .m_box .modal_img .controls p:nth-of-type(1) {
            margin-right: 10px; } }
      @media screen and (max-width: 768px) {
        .modal_box .m_box .modal_img .controls p {
          position: static;
          margin-top: 0; } }
      @media screen and (max-width: 768px) {
        .modal_box .m_box .modal_img .controls p span.icon_img img {
          width: 40px; } }
      @media screen and (max-width: 480px) {
        .modal_box .m_box .modal_img .controls p span.icon_img img {
          width: 35px; } }
      @media screen and (max-width: 768px) {
        .modal_box .m_box .modal_img .controls p span.en {
          font-size: 12px; } }
      .modal_box .m_box .modal_img .controls p.prev span {
        display: inline-block; }
        .modal_box .m_box .modal_img .controls p.prev span.en {
          margin-right: 10px;
          color: #2db5d1;
          animation: left_slide 1s ease-in-out infinite alternate; }
      .modal_box .m_box .modal_img .controls p.next span {
        display: inline-block; }
        .modal_box .m_box .modal_img .controls p.next span.en {
          margin-left: 10px;
          color: #4691ff;
          animation: right_slide 1s ease-in-out infinite alternate; }
@keyframes left_slide {
  0% {
    transform-origin: center;
    transform: scale(1);
    color: #2db5d1; }
  100% {
    transform-origin: center;
    transform: scale(1.2);
    color: #FFF; } }
@keyframes right_slide {
  0% {
    transform-origin: center;
    transform: scale(1);
    color: #4691ff; }
  100% {
    transform-origin: center;
    transform: scale(1.2);
    color: #FFF; } }
  .modal_box .m_box .modal_ttl {
    position: absolute;
    left: 2.5%;
    top: 10%; }
    @media screen and (max-width: 960px) {
      .modal_box .m_box .modal_ttl {
        top: 9%; } }
    @media screen and (max-width: 768px) {
      .modal_box .m_box .modal_ttl {
        top: 8%; } }
    @media screen and (max-width: 480px) {
      .modal_box .m_box .modal_ttl {
        top: 11%; } }
    .modal_box .m_box .modal_ttl span {
      font-size: clamp(10px, 2.34375vw, 18px);
      background: -webkit-linear-gradient(0deg, #00dbbb 0%, #24c0cf 40%, #4294d8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: #00dbbb;
      filter: drop-shadow(0px 0px 0px rgba(0, 146, 207, 0.5)) drop-shadow(0px 0px 1px rgba(0, 146, 207, 0.5)) drop-shadow(0px 0px 2px rgba(0, 146, 207, 0.5)) drop-shadow(0px 0px 3px rgba(0, 146, 207, 0.5)); }
      @media screen and (max-width: 480px) {
        .modal_box .m_box .modal_ttl span {
          font-size: 12px; } }
  .modal_box .m_box .slider_wrap {
    position: absolute;
    top: 17%;
    left: 1.5%;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1130px;
    margin: 0 auto;
    width: 94.17%; }
    @media screen and (max-width: 480px) {
      .modal_box .m_box .slider_wrap {
        width: 100%;
        padding-top: 18%;
        position: static;
        flex-direction: column; } }
    .modal_box .m_box .slider_wrap .slider_cont {
      width: 53.46%;
      position: relative; }
      @media screen and (max-width: 480px) {
        .modal_box .m_box .slider_wrap .slider_cont {
          width: 100%;
          margin-bottom: 75px; } }
      .modal_box .m_box .slider_wrap .slider_cont .swiper-container {
        opacity: 0; }
        .modal_box .m_box .slider_wrap .slider_cont .swiper-container.swiper-container-initialized {
          opacity: 1; }
      .modal_box .m_box .slider_wrap .slider_cont.full {
        width: 100%; }
        .modal_box .m_box .slider_wrap .slider_cont.full .swiper-slide {
          display: flex;
          align-items: center;
          justify-content: space-between; }
          @media screen and (max-width: 480px) {
            .modal_box .m_box .slider_wrap .slider_cont.full .swiper-slide {
              flex-direction: column; } }
          .modal_box .m_box .slider_wrap .slider_cont.full .swiper-slide .slide_img {
            width: 53.46%;
            position: relative; }
            @media screen and (max-width: 480px) {
              .modal_box .m_box .slider_wrap .slider_cont.full .swiper-slide .slide_img {
                width: 100%;
                margin-bottom: 75px; } }
      .modal_box .m_box .slider_wrap .slider_cont .swiper-pagination {
        line-height: 0; }
        @media screen and (max-width: 480px) {
          .modal_box .m_box .slider_wrap .slider_cont .swiper-pagination {
            width: 100%;
            top: auto;
            bottom: 10px; } }
        @media screen and (max-width: 480px) {
          .modal_box .m_box .slider_wrap .slider_cont .swiper-pagination.full {
            width: 100%;
            top: auto;
            bottom: 10px; } }
    .modal_box .m_box .slider_wrap .text_wrap {
      width: 40.71%;
      color: #FFF; }
      @media screen and (max-width: 480px) {
        .modal_box .m_box .slider_wrap .text_wrap {
          width: 100%; } }
      .modal_box .m_box .slider_wrap .text_wrap .t01 {
        line-height: 1.6;
        font-size: clamp(18px, 2.1vw, 28px);
        filter: drop-shadow(0px 0px 0px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 1px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 2px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 3px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 4px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 5px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 6px rgba(34, 168, 208, 0.4)) drop-shadow(0px 0px 7px rgba(34, 168, 208, 0.4)); }
        @media screen and (max-width: 480px) {
          .modal_box .m_box .slider_wrap .text_wrap .t01 {
            line-height: 1.2;
            font-size: 6vw; } }
      .modal_box .m_box .slider_wrap .text_wrap .modal_line {
        margin-bottom: 20px;
        transform: translateX(-10px); }
        @media screen and (max-width: 1200px) {
          .modal_box .m_box .slider_wrap .text_wrap .modal_line {
            margin-bottom: 10px; } }
      .modal_box .m_box .slider_wrap .text_wrap .t02 {
        font-size: clamp(13px, 1.33vw, 16px);
        line-height: 2; }
        @media screen and (max-width: 768px) {
          .modal_box .m_box .slider_wrap .text_wrap .t02 {
            font-size: 12px;
            line-height: 1.5; } }
      .modal_box .m_box .slider_wrap .text_wrap ruby rt {
        font-size: 10px; }
      .modal_box .m_box .slider_wrap .text_wrap .ev_attention {
        font-size: clamp(10px, 1vw, 12px);
        color: #FFDC72;
        text-indent: -1em;
        padding-left: 1em; }
    .modal_box .m_box .slider_wrap .ticket_btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      text-align: center;
      padding: 15px 10px 20px;
      position: relative; }
      .modal_box .m_box .slider_wrap .ticket_btn .ticket_text {
        position: relative;
        font-size: clamp(13px, 1.42vw, 20px);
        color: #082f90;
        z-index: 2;
        line-height: 1; }
        @media screen and (max-width: 768px) {
          .modal_box .m_box .slider_wrap .ticket_btn .ticket_text {
            font-size: 2vw;
            padding: 10px; } }
        @media screen and (max-width: 480px) {
          .modal_box .m_box .slider_wrap .ticket_btn .ticket_text {
            font-size: 5vw;
            padding: 0; } }
      .modal_box .m_box .slider_wrap .ticket_btn:before {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid #ffcc00;
        border-radius: 10px;
        transition: 0.3s all ease-in-out 0s;
        transform: scale(1);
        transform-origin: center;
        background: #ffcc00; }
      body:not(.mobile) .modal_box .m_box .slider_wrap .ticket_btn:hover:before {
        transform: scale(1.05, 1.1); }
  .modal_box .swiper-pagination.full {
    width: 53.46%;
    right: auto; }
    @media screen and (max-width: 480px) {
      .modal_box .swiper-pagination.full {
        width: 100%;
        top: 40%;
        bottom: auto;
        right: auto; } }
  .modal_box .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.16) inset;
    background: #FFF;
    border: 1px solid #4691ff;
    opacity: 1; }
    .modal_box .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #4691ff; }
  .modal_box a.close {
    display: block;
    position: absolute;
    right: 30px;
    top: 30px;
    line-height: 1;
    cursor: pointer;
    width: 50px;
    transform-origin: center;
    transition: 0.5s transform ease-in-out 0s;
    aspect-ratio: 1; }
    @media screen and (max-width: 768px) {
      .modal_box a.close {
        right: 20px;
        top: 20px; } }
    @media screen and (max-width: 480px) {
      .modal_box a.close {
        width: 30px;
        right: 15px;
        top: 15px; } }
    body:not(.mobile) .modal_box a.close:hover {
      transform: rotate(360deg); }
    .modal_box a.close:before, .modal_box a.close:after {
      content: "";
      position: absolute;
      display: block;
      background: #FFF;
      left: 50%;
      top: 50%;
      width: 45px;
      height: 2px;
      transform: translate(-50%, -50%); }
      @media screen and (max-width: 480px) {
        .modal_box a.close:before, .modal_box a.close:after {
          width: 30px;
          height: 2px; } }
    .modal_box a.close:before {
      transform: translate(-50%, -50%) rotate(45deg); }
    .modal_box a.close:after {
      transform: translate(-50%, -50%) rotate(-45deg); }

.bnr_area {
  width: 100%;
  background: linear-gradient(to right, #61d4c9, #6cbcde);
  padding: 60px 0; }
  @media screen and (max-width: 480px) {
    .bnr_area {
      padding: 30px 0; } }
  .bnr_area .inner {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
    @media screen and (max-width: 1200px) {
      .bnr_area .inner {
        width: 90%;
        gap: 15px;
        justify-content: center; } }
    .bnr_area .inner .bnr_item {
      max-width: 260px; }
      @media screen and (max-width: 480px) {
        .bnr_area .inner .bnr_item {
          width: 47.5%;
          max-width: none; } }

/*	正円アニメーション	*/
@keyframes button_anime {
  0% {
    transform: scale(1, 1);
    opacity: 0; }
  20%, 30% {
    opacity: 1; }
  80%, 100% {
    transform: scale(1.3, 1.3);
    opacity: 0; } }

/*# sourceMappingURL=top.css.map */
</pre></body></html>