@charset "UTF-8";

/*

@media screen and (min-width: 600px) {}
@media screen and (min-width: 1025px) {}

*/

/*======================================

||| 変数

======================================*/

:root {
  --font-size_xs: 1.2rem;
  --font-size_s: 1.4rem;
  --font-size_m: 1.6rem;
  --font-size_l: 1.8rem;
  --font-size_xl: 2rem;
  --font-size_xxl: 2.2rem;
}

@media screen and (min-width: 600px) {
  :root {
    --font-size_xxl: 3.2rem;
  }
}

:root {
  --op1: 0.2;
  --op2: 0.5;
  --op3: 0.85;
  --color_white-op1: rgba(255, 255, 255, var(--op1));
  --color_white-op2: rgba(255, 255, 255, var(--op2));
  --color_white-op3: rgba(255, 255, 255, var(--op3));
  --color_black-op1: rgba(0, 0, 0, var(--op1));
  --color_black-op2: rgba(0, 0, 0, var(--op2));
  --color_base: #d6e8fa;
  --color_base-op1: rgba(214, 232, 250, .35);
  --color_base-op3: rgba(214, 232, 250, var(--op3));
  --color_main: #003b75;
  --color_main-d: #011938;
  --color_main_d-op: rgba(1, 25, 56, .4);
  --color_main-l: #0474a0;
  --color_accent: #f5d103;
  --color_accent-l: #f5e173;
  --color_text: #273441;
}

:root {
  --gap: 24px;
  --gap-content: 60px;
  --gap-section: 80px;
  --width-s: min(96%, 420px);
  --width-m: min(96%, 480px);
  --width-l: min(96%, 590px);
}

@media screen and (min-width: 600px) {
  :root {
    --gap: 32px;
    --gap-content: 60px;
    --gap-section: 100px;
    --width-s: min(98%, 580px);
    --width-m: min(98%, 640px);
    --width-l: min(98%, 980px);
  }
}

@media screen and (min-width: 1025px) {
  :root {
    --gap-content: 60px;
    --gap-section: 100px;
    --gap: 32px;
    --width-s: min(98%, 900px);
    --width-m: min(98%, 1080px);
    --width-l: min(98%, 1430px);
  }
}

:root {
  --font_gothic: "Noto Sans JP", "游ゴシック", "ヒラギノ角ゴ Pro", sans-serif;
  --font_gothic-en: "Oswald", "Lato", "Noto Sans JP", "游ゴシック", "ヒラギノ角ゴ Pro", sans-serif;
  --font_mincho: "游明朝体", "ヒラギノ明朝 Pro", serif;
  --font_mincho-en: "游明朝体", "ヒラギノ明朝 Pro", serif;
}

:root {
  --z-index1: 1;
  --z-index_gnavi: 500;
  --z-index_gnaviBtn: 600;
  --z-index_fixed: 101;
  --z-index_header: 200;
  --z-index_mvInfo: 100;
  --z-index_loading: 900;
  --z-index_mouse: 800;
}

:root {
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition_hover: .4s var(--easeOutSine);
  --transition_fadein: .6s var(--easeInOutSine);
  --transition_gnavi: .4s var(--easeInOutSine);
  --transition_button: .24s var(--easeOutSine);
}


/*======================================

||| 共通設定

======================================*/

*,
::after,
::before {
  box-sizing: border-box
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #fff;
  color: var(--color_text);
  font-size: var(--font-size_m);
  font-family: var(--font_gothic);
  line-height: 1.6;
}

.body {
  overflow: hidden;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

a {
  vertical-align: baseline;
  color: var(--color_main-l);
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  letter-spacing: .03em;
  line-height: calc(1em + 1rem);
}

h4 {
  line-height: 1.8;
}

h1,
h2 {
  font-size: var(--font-size_xxl);
}

h3 {
  font-size: var(--font-size_l);
  line-height: 2em;
}

h4 {
  font-size: var(--font-size_m);
}

address {
  font-style: normal;
}

/*
||  共通設定 layout
---------------------------------------*/

.l-section {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
}


.l-content {
  padding-top: var(--gap-content);
}


/*
||  共通設定  title
---------------------------------------*/


.ttl {
  font-weight: 900;
  color: var(--color_main-l);
}

.ttl02 {
  font-weight: 600;
  border-bottom: 1px dashed var(--color_base);
  color: var(--color_main-l);
  letter-spacing: .1em;
  padding-bottom: 12px;
  text-align: left;
  line-height: 1.4em;
  margin-bottom: var(--gap);
  padding-left: var(--gap);
  position: relative;
}

.ttl02::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 100%;
  left: 0;
  top: -6px;
  background-color: var(--color_base);
}

.ttl03 {
  font-weight: 600;
  border-bottom: 1px dotted var(--color_main-l);
  color: var(--color_main-l);
  letter-spacing: .1em;
  padding-bottom: 12px;
  text-align: left;
  line-height: 1.4em;
  margin-bottom: var(--gap);
}

.ttl04 {
  width: fit-content;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(50deg, var(--color_main-l) 0, #029e91 60%, var(--color_main-l) 99%);
  background-position: 99% 50%;
  background-size: 120% auto;
  padding: 8px 48px;
  border-radius: 16px;
  font-size: var(--font-size_m);
  font-weight: 400;
}

.sec-ttl {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--gap-content);
  margin-top: var(--gap);
  color: #383857;
}

.sec-ttl::before {
  position: absolute;
  left: -0px;
  top: -32px;
  width: 100%;
  height: 50%;
  content: "";
  background-image: url(../img/ttl-logo-main.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 80px;
}

/*
||  共通設定  component , effect
---------------------------------------*/

/* button  */

.c-btn01 {
  position: relative;
  padding: 16px 0;
  border-radius: 4px;
  text-align: center;
  background-image: linear-gradient(50deg, var(--color_main) 0, #1ac9b9 60%, var(--color_main-l) 99%);
  background-position: 99% 50%;
  color: #fff;
  background-size: 200% auto;
  transition: var(--transition_hover);
}

.c-btn01:hover {
  background-position: 1% 50%;
}

.c-btn02 {
  background-color: var(--color_base-op3);
  font-weight: 600;
  padding: .2rem 1.2rem .2rem 2.2rem;
  font-size: .8em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23003b75" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" /></svg>');
  background-repeat: no-repeat;
  background-position: .5rem center;
  background-size: 1rem;
  transition: var(--transition_hover);
}

.c-btn02:hover {
  background-size: 1.4rem;
  padding-left: 2.4rem;

}

/* fade anime */

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(4rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeDown {
  animation-name: fadeDown;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadetoLeft {
  animation-name: fadetoLeft;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadetoLeft {
  from {
    opacity: 0;
    transform: translateX(6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-marker {
  display: inline-block;
  padding: 0 8px;
  border-radius: 2px;
  background: linear-gradient(transparent 30%, var(--color_accent-l) 80%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size .6s;
}

.c-marker:hover {
  background-size: 100% 100%;
}

/* wave border */

section:has(>.wave-b-bl),
div:has(>.wave-b-bl),
section:has(>.wave-b-wh),
div:has(>.wave-b-wh),
section:has(>.wave-t-wh),
div:has(>.wave-t-wh) {
  position: relative;
}

.wave-b-wh {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  margin-bottom: -2px;
  background-image: url(../img/wave-b-wh.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

.wave-b-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  margin-bottom: -2px;
  background-image: url(../img/wave-b-bl.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

.wave-t-wh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  margin-top: -2px;
  background-image: url(../img/wave-t-wh.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.footer-t {
  width: 100%;
  height: 40px;
  margin-bottom: -1px;
  background-image: url(../img/wave-b-bl.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}


/* other */

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

.c-pointer {
  cursor: pointer;
}

.is-hide {
  display: none;
}

.is-tab,
.is-pc {
  display: none;
}

.annotation {
  margin-top: 8px;
  font-size: var(--font-size_xs);
}

@media screen and (min-width: 600px) {
  .is-sp {
    display: none;
  }

  .is-tab {
    display: block;
  }

}

@media screen and (min-width: 1025px) {
  .is-tab {
    display: none;
  }

  .is-pc {
    display: block;
  }
}

.col-hover {
  background-color: rgba(251, 255, 16, 0.7)
}

/*======================================

||| グローバルナビ

======================================*/

/*
|| ハンバーガーボタン
--------------------*/

.gnaviBtn {
  position: fixed;
  top: 22px;
  right: 2%;
  z-index: var(--z-index_gnaviBtn);
  cursor: pointer;
  pointer-events: auto;
  mix-blend-mode: difference;
}

.gnaviBtn span {
  display: block;
  width: clamp(26px, 8.5vw, 4rem);
  height: 1px;
  background-color: #fff;
  transition: transform var(--transition_gnavi);
}

.gnaviBtn span:not(:first-child) {
  margin: .5rem 0;
}

.is-gnavi-open .gnaviBtn span:nth-of-type(1) {
  transform: translate(0, .6rem) rotate(45deg)
}

.gnaviBtn span:nth-of-type(2) {
  transition: opacity var(--transition_gnavi);
}

.is-gnavi-open .gnaviBtn span:nth-of-type(2) {
  opacity: 0
}

.is-gnavi-open .gnaviBtn span:nth-of-type(3) {
  transform: translate(0, -.6rem) rotate(-45deg)
}

/*
|| グローバルナビ
----------------*/

.gnavi {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: var(--z-index_gnavi);
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(1, 25, 56, .95);
  transition: var(--transition_gnavi);
  transition-property: opacity, visibility;
  color: #fff;
  font-weight: 200;
  pointer-events: none;
}

.is-gnavi-open .gnavi {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.gnavi__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.8vh;
  background-image: url(../img/il-f-4l.png);
  background-repeat: no-repeat;
  background-position: right 20% bottom -100px;
  background-size: 72px;
}

.gnavi__logo {
  width: 110px;
  height: auto;
}

.gnavi a {
  color: #fff;
}

@media screen and (min-width: 600px) {
  .gnavi__inner {
    gap: 6vh;
  }

  .gnavi__logo {
    width: 120px;
  }
}

.gnavi__navi {
  display: flex;
  flex-direction: column;
}

.gnavi__navi li {
  width: fit-content;
  padding: 4px 0 4px 28px;
  font-size: var(--font-size_s);
  transition: var(--transition_hover);
}

.gnavi__floorlist,
.gnavi__program,
.gnavi__ticket,
.gnavi__access {
  margin-top: 16px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px;
  font-weight: 600;
}

.gnavi__floorlist {
  background-image: url(../img/navi-floor-wh.svg);
}

.gnavi__program {
  background-image: url(../img/navi-program-wh.svg);
}

.gnavi__ticket {
  background-image: url(../img/navi-ticket-wh.svg);
}

.gnavi__access {
  background-image: url(../img/navi-access-wh.svg);
}

@media screen and (min-width: 600px) {
  .gnavi__navi {
    flex-direction: row;
    gap: 32px;
  }

  .gnavi__navi li {
    padding: 8px 0 8px 28px;
    font-size: var(--font-size_m);
  }

  .gnavi__floorlist,
  .gnavi__program,
  .gnavi__ticket,
  .gnavi__access {
    margin-top: 32px;
  }
}

.gnavi__sns {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gnavi__sns li {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: var(--transition_button);
}

/* hover effect */

.gnavi li::before {
  content: '';
  position: absolute;
  width: calc(100% - 24px);
  height: 1px;
  background-color: var(--color_white-op1);
  bottom: 0;
  right: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--transition_hover);
}

.gnavi li:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* fadein */

.is-gnavi-open .gnavi__logo,
.is-gnavi-open li {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-gnavi-open li.d0 {
  animation-delay: 0;
}

.is-gnavi-open li.d1 {
  animation-delay: .2s;
}

.is-gnavi-open li.d2 {
  animation-delay: .4s;
}

.is-gnavi-open li.d3 {
  animation-delay: .5s;
}

.is-gnavi-open li.d4 {
  animation-delay: .6s;
}


.is-gnavi-open .gnavi__inner {
  animation-name: bg-up;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}

@keyframes bg-up {
  from {
    background-position: right 20% bottom -100px;
  }

  to {
    background-position: right 20% bottom -20px;
  }
}


/*======================================

||| webチケット

======================================*/

.webticket-btn__wrap {
  transition: var(--transition_hover);
  position: fixed;
  z-index: var(--z-index_fixed);
  right: -8px;
  bottom: -4px;
}

.webticket-btn {
  width: 68px;
  height: 68px;
  padding: 12px 0px;
  border-radius: 50%;
  background-color: var(--color_accent);
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition_hover);
}

.webticket-btn:hover {
  transform: translateY(-8px);
}

.webticket-txt {
  position: relative;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

.webticket-ttl {
  font-size: var(--font-size_xs);
  color: var(--color_main-l);
}

.webticket-ttl span {
  display: block;
  margin-top: 4px;
  font-size: var(--font-size_l);
}

.webticket-btn::after {
  position: absolute;
  left: 4px;
  top: -35px;
  width: 60px;
  height: 100px;
  content: '';
  background-image: url(../img/il-kawauso.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}

@media screen and (min-width: 600px) {

  .webticket-btn__wrap {
    bottom: 50px;
  }

  .webticket-btn {
    width: 86px;
    height: 86px;
    padding: 16px 0px;
  }

  .webticket-txt {
    line-height: 1.2;
    font-size: var(--font-size_xs);
  }

  .webticket-txt p:first-child::before {
    position: absolute;
    width: 1px;
    height: 12px;
    left: 6px;
    top: 0;
    content: '';
    background-color: var(--color_text);
    transform: rotate(-35deg);
  }

  .webticket-txt p:first-child::after {
    position: absolute;
    width: 1px;
    height: 12px;
    right: 6px;
    top: 0;
    content: '';
    background-color: var(--color_text);
    transform: rotate(35deg);
  }

  .webticket-ttl {
    font-size: var(--font-size_s);
  }

  .webticket-btn::after {
    width: 160px;
    height: 100px;
    left: 0px;
    top: 90px;
    background-image: url(../img/il-kapibara.png);
    transform: rotate(24deg);
  }
}



/*======================================

||| 共通 Header

======================================*/

.siteHeader {
  z-index: var(--z-index_header);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  transition: all var(--transition_hover);
}

.siteHeader::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 160%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(4, 38, 82, 0.5) 0%, rgba(1, 25, 56, 0) 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.is-scrolled.siteHeader::before {
  display: none;
}

.siteHeader.is-scrolled {
  background-color: #fff;
  box-shadow: 0 0 8px var(--color_black-op1);
}

.siteHeader__inner {
  position: relative;
  width: var(--width-l);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size_s);
  letter-spacing: .08em;
}

.siteHeader__logo {
  width: 206px;
  min-width: 206px;
  height: 36px;
  margin-top: 10px;
  font-size: var(--font-size_l);
  font-weight: 400;
}

.logo-main,
.siteHeader.is-scrolled .logo-wh {
  display: none;
}

.siteHeader.is-scrolled .logo-main {
  display: block;
}

.siteHeader a {
  color: #fff;
  pointer-events: auto;
}

.siteHeader.is-scrolled a {
  color: #555;
}

.headNavi {
  display: none;
}

@media screen and (min-width: 1025px) {
  .headNavi {
    display: block;
  }
}

.headNavi ul {
  min-width: 640px;
  margin-right: 60px;
  display: flex;
  justify-content: center;
}

.headNavi a {
  position: relative;
  width: 100%;
  height: 54px;
  padding-left: 56px;
  padding-right: 32px;
  display: block;
  line-height: 54px;
  font-size: var(--font-size_xs);
}

.headNavi a:hover {
  opacity: .7;
}

.headNavi__floor::before,
.headNavi__program::before,
.headNavi__access::before,
.headNavi__ticket::before {
  position: absolute;
  left: 24px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.headNavi__floor::before {
  background-image: url(../img/navi-floor-wh.svg);
}

.headNavi__program::before {
  background-image: url(../img/navi-program-wh.svg);
}

.headNavi__access::before {
  background-image: url(../img/navi-access-wh.svg);
}

.headNavi__ticket::before {
  background-image: url(../img/navi-ticket-wh.svg);
}

.siteHeader.is-scrolled .headNavi__floor::before {
  background-image: url(../img/navi-floor.svg);
}

.siteHeader.is-scrolled .headNavi__program::before {
  background-image: url(../img/navi-program.svg);
}

.siteHeader.is-scrolled .headNavi__access::before {
  background-image: url(../img/navi-access.svg);
}

.siteHeader.is-scrolled .headNavi__ticket::before {
  background-image: url(../img/navi-ticket.svg);
}

.headNavi li:not(:last-child)::after {
  position: absolute;
  display: block;
  right: 0;
  top: 30%;
  bottom: 16%;
  width: 1px;
  height: 40%;
  border-right: 1px dashed var(--color_white-op2);
  content: "";
}

.siteHeader.is-scrolled li:not(:last-child)::after {
  border-right: 1px dashed var(--color_black-op2);
}

/* fade in animation */

@media screen and (min-width: 1025px) {

  .headNavi li:nth-child(1),
  .fadeDown.siteHeader__logo {
    animation-delay: 2s;
  }

  .headNavi li:nth-child(2) {
    animation-delay: 2.2s;
  }

  .headNavi li:nth-child(3) {
    animation-delay: 2.4s;
  }

  .headNavi li:nth-child(4) {
    animation-delay: 2.6s;
  }
}


/*======================================

||| wave

======================================*/

.wave {
  position: absolute;
  width: 100%;
  height: 140px;
  bottom: 0;
  left: 0;
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}



/*======================================

||| footer

======================================*/

.footer {
  position: relative;
  overflow: hidden;
  background-color: var(--color_base);
}

.footer__bottom {
  position: absolute;
  width: 100%;
  height: 500px;
  bottom: 0;
}

.footer__bottom::before {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 12px;
  content: "";
  background-color: var(--color_main);
}

.footer__bottom>div {
  position: absolute;
  bottom: 0px;
}

.footer__bottom>.footer__figure7 {
  left: 76%;
  width: 38px;
  bottom: 300px;
}

.footer__figure3 {
  left: 28%;
  width: 50px;
}

.footer__figure4 {
  left: 50%;
  width: 70px;
}

.footer__figure1,
.footer__figure5,
.footer__figure6,
.footer__figure2 {
  display: none;
}

.footer__figure6.js-inview-up {
  transition-delay: 1.1s;
}

.footer__figure7.js-inview-up {
  transition-delay: 0.7s;
}

.footer__figure3.js-inview-up {
  transition-delay: 0.8s;
}

.footer__figure2.js-inview-up {
  transition-delay: 0.9s;
}

.footer__figure4.js-inview-up {
  transition-delay: 1s;
}

.footer__figure1.js-inview-up {
  transition-delay: 1.3s;
}

.footer__figure5.js-inview-up {
  transition-delay: 1.2s;
}

.footer__figure7.js-inview-up.inview {
  animation: footer__figure 40s linear infinite;
  ;
}

@keyframes footer__figure {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  25% {
    transform: translateX(22px) rotate(12deg);
  }

  50% {
    transform: translateY(36px) rotate(0deg);
  }

  70% {
    transform: translateX(-22px) rotate(-12deg);
  }

  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

@media screen and (min-width: 600px) {

  .footer__figure6 {
    left: 4%;
    width: 60px;
  }

  .footer__bottom>.footer__figure7 {
    left: 86%;
    bottom: 140px;
  }

  .footer__figure3 {
    left: 16%;
    width: 50px;
  }

  .footer__figure2 {
    left: 20%;
    width: 50px;
  }

  .footer__figure4 {
    left: 30%;
    width: 70px;
  }

  .footer__figure1 {
    left: 39%;
    width: 100px;
  }

  .footer__figure5 {
    left: 52%;
    width: 20px;
  }

  .footer__figure5,
  .footer__figure6 {
    display: block;
  }

}

@media screen and (min-width: 1025px) {

  .footer__figure1,
  .footer__figure2 {
    display: block;
  }
}

.footer__inner {
  position: relative;
  width: var(--width-m);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--gap-content);
  padding-bottom: calc(var(--gap-section) + 80px);
}

.footer__info {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size_s);
  flex-direction: column-reverse;
  gap: var(--gap-content);
}

.footer__info address {
  margin-top: 16px;
}

.footer__navi {
  width: 64%;
  width: 100%;
}

.footer__ttl {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color_black-op1);
}

.info_address {
  padding-left: 20px;
  background-image: url(../img/icon-mapping-b.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px;
}

address p:not(:first-child) {
  margin-top: 8px;
}

.info_tel {
  padding-left: 24px;
  background-image: url(../img/icon-tel.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 16px;
}

.info_hour span {
  margin-right: 4px;
  padding: 0 8px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 90%;
}

.footer__sns {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__sns li {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: var(--transition_button);
}

.footer__sns li:hover {
  transform: translateY(-3px);
}


.footer__navi {
  display: flex;
  justify-content: space-between;
}

.footer__navi li {
  padding-left: 18px;
  margin-bottom: 8px;
}

.fnavi__top,
.fnavi__floorlist,
.fnavi__program,
.fnavi__access,
.fnavi__ticket {
  margin-top: 16px;
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 12px;
  font-weight: 900;
}


@media screen and (min-width: 600px) {
  .footer__inner {
    width: var(--width-m);
    padding-bottom: 140px;
  }

  .footer__info {
    flex-direction: row;
    gap: 0;
  }

  .footer__info address {
    min-width: 195px;
  }

  .footer__navi {
    width: 64%;
  }

  .footer__navi {
    justify-content: flex-end;
    gap: 32px;
  }

}

@media screen and (min-width: 1025px) {
  .footer__info address {
    width: 300px;
  }
}



/*======================================

||| inview

======================================*/

.js-inview-down {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: var(--transition_fadein);
  transition-property: opacity, visibility, transform;
}

.js-inview-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: var(--transition_fadein);
  transition-property: opacity, visibility, transform;
}

.js-inview-tright {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-2rem);
  transition: var(--transition_fadein);
  transition-property: opacity, visibility, transform;
}

.js-inview-tleft {
  opacity: 0;
  visibility: hidden;
  transform: translateX(2rem);
  transition: var(--transition_fadein);
  transition-property: opacity, visibility, transform;
}

.js-inview-tright.inview,
.js-inview-tleft.inview,
.js-inview-down.inview,
.js-inview-up.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.d1 {
  transition-delay: .12s;
}

.d2 {
  transition-delay: .24s;
}

.d3 {
  transition-delay: .36s;
}

.d4 {
  transition-delay: .48s;
}

/*======================================

||| マウスストーカー

======================================*/
@media screen and (min-width: 1025px) {
  #mouse-stalker {
    pointer-events: none;
    position: fixed;
    top: -16px;
    left: 16px;
    width: 32px;
    height: 20px;
    border-radius: 50%;
    background-image: url(../img/pointer-fish.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    transform: translate(0, 0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: var(--z-index_mouse);
  }

  #mouse-stalker.is_active {
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    transition: 0.2s;
    background-color: rgba(251, 255, 16, 0.6);
    background-image: none;
  }
}

/*======================================

||| bubble effect

======================================*/

.bubble {
  position: absolute;
  border-radius: 100%;
  background-color: rgba(85, 157, 224, 0.4);
  bottom: 1px;
}