@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.8px;
}

.aaaa {
  overflow: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}
a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

img {
  vertical-align: middle;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.waves {
  width: 100%;
  height: 120px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media screen and (max-width: 680px) {
  .waves {
    height: 60px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
  h1 {
    font-size: 24px;
  }
}
figure {
  margin: 0;
  padding: 0;
}

.midashi {
  color: #152252;
  font-size: 24px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2.4px;
  border-bottom: 1px dashed #1D3794;
  padding: 10px 10px 10px 20px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .midashi {
    font-size: 20px;
  }
}
.midashi::before {
  content: "";
  background-color: #1D3794;
  width: 8px;
  height: 28px;
  position: absolute;
  left: 0px;
}

.sp {
  display: none;
}

.sp2 {
  display: none;
}
@media screen and (max-width: 840px) {
  .sp2 {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  h1 img {
    width: 180px;
  }
}
.title2 {
  padding: 200px 0;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 6px #000;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5.4px;
}
@media screen and (max-width: 640px) {
  .title2 {
    font-size: 26px;
  }
}

h1 a {
  display: inline;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
@keyframes mochimochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes guruguru {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(20px, 20px);
  }
  50% {
    transform: translate(0, 40px);
  }
  75% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0);
  }
}
.navigation-sp {
  display: none;
}

header {
  width: 100%;
  height: 76px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 16.15%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  z-index: 100;
}
header .header-wrapper {
  width: 100%;
  padding: 8px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-wrapper ul {
  width: 100%;
  display: flex;
  align-items: center;
}
header .header-wrapper ul li {
  text-align: center;
  margin-left: 45px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 500;
}
header .header-wrapper ul li a {
  color: white;
  font-size: 14px;
  line-height: 15px;
}
header .header-wrapper ul li a:hover {
  transition: 0.3s all;
  transform: translateY(5px);
}
header .header-wrapper ul li .cta {
  background: linear-gradient(90deg, #5CBAEF 0%, #2852BF 100%);
  border-radius: 23.5px;
  width: 218px;
  padding: 10px 0;
  flex-shrink: 0;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
header .header-wrapper ul li .cta p {
  position: relative;
  left: 17px;
}
header .header-wrapper ul li .cta p::before {
  content: url(../img/weblogo.svg);
  position: absolute;
  left: 20px;
  top: -8px;
}

#first-view {
  width: 100%;
  height: 100vh;
  position: relative;
}
#first-view h2 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Shippori Mincho B1";
  letter-spacing: 5.4px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.8;
  color: white;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.25);
  z-index: 10;
}
#first-view h2 br {
  display: none;
}
#first-view video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#first-view .first-view-time {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  display: flex;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 500;
  color: white;
  letter-spacing: 0.8px;
}
#first-view .first-view-time .time-wrapper {
  padding: 7px 20px;
  width: 50%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.35);
  border-right: 1px solid #d6d6d6;
}
#first-view .first-view-time .time-wrapper h4 {
  display: inline;
  position: relative;
  letter-spacing: 1px;
  font-weight: 400;
}
#first-view .first-view-time .time-wrapper h4::before {
  content: url(../img/timeicon.svg);
  position: absolute;
  top: -3px;
  left: -27px;
}
#first-view .first-view-time .time-wrapper .time-zone {
  display: flex;
  justify-content: center;
}
#first-view .first-view-time .time-wrapper .time-zone .time {
  font-size: 20px;
  line-height: 30px;
}
#first-view .first-view-time .congestion-wrapper {
  padding: 7px 20px;
  width: 50%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.35);
}
#first-view .first-view-time .congestion-wrapper h4 {
  display: inline;
  position: relative;
  letter-spacing: 1.2px;
  font-weight: 400;
}
#first-view .first-view-time .congestion-wrapper h4::before {
  content: url(../img/konzatuicon.svg);
  position: absolute;
  top: -3px;
  left: -27px;
}
#first-view .first-view-time .congestion-wrapper .time {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 720px) {
  #first-view h2 {
    font-size: 28px;
    padding: 0 20px;
    top: 40%;
    left: 52%;
  }
  #first-view h2 br {
    display: block;
  }
  #first-view .first-view-time {
    flex-direction: column;
    bottom: 0;
    height: 160px;
    justify-content: end;
  }
  #first-view .first-view-time .time-wrapper {
    width: 100%;
    border: 0;
    background-color: rgba(0, 0, 0, 0.15);
  }
  #first-view .first-view-time .time-wrapper .time {
    font-size: 16px;
    line-height: 30px;
  }
  #first-view .first-view-time .congestion-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #first-view .first-view-time .congestion-wrapper .time {
    font-size: 16px;
    line-height: 30px;
  }
}

#news {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background: url(../img/newsback.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  filter: saturate(120%);
  position: relative;
  padding-bottom: 40px;
}
#news .news-container-top {
  margin: 0 auto;
  max-width: 850px;
  height: 60px;
  border-radius: 20px 20px 0px 0px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(12, 14, 69, 0.5);
  text-align: center;
}
#news .news-container-top .news-midashi {
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  color: white;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 55px;
}
#news .news-container-top .news-midashi img {
  padding-right: 10px;
}
#news .news-container-bottom {
  margin: 0 auto;
  max-width: 850px;
  border-radius: 0px 0px 20px 20px;
  background: rgba(255, 255, 255, 0.8);
}
#news .news-container-bottom dl {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 75px 50px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
#news .news-container-bottom dl dt {
  width: 30%;
  color: #5E5E5E;
  padding: 20px 30px;
  border-bottom: 1px dashed #5E5E5E;
}
#news .news-container-bottom dl dd {
  width: 70%;
  padding: 20px 0;
  border-bottom: 1px dashed #5E5E5E;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#news .news-container-bottom dl dd a {
  width: 100%;
}
#news .news-container-bottom dl dd::after {
  content: url(../img/vecter.svg);
  position: absolute;
  right: 30px;
  top: 33%;
}
#news .news-btn {
  width: 335px;
  color: white;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 10px 0;
  margin: 50px auto 100px;
  display: block;
  text-align: center;
  border: 2px solid #FFF;
  background: linear-gradient(0deg, rgba(13, 12, 69, 0.4) 0%, rgba(13, 12, 69, 0.4) 100%), linear-gradient(90deg, rgba(35, 136, 192, 0.55) 0.21%, rgba(57, 65, 112, 0.55) 99.79%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
#news .news-btn::after {
  content: url(../img/pcbutton.svg);
  position: absolute;
  right: 30px;
  top: 13px;
}
#news .news-img {
  width: 100%;
}
#news .news-img svg {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  filter: saturate(80%);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  #news .news-img svg {
    height: 40px;
  }
}
@media screen and (max-width: 800px) {
  #news .news-container-top {
    height: 50px;
  }
  #news .news-container-top .news-midashi {
    font-size: 18px;
    line-height: 2.5;
  }
  #news .news-container-top img {
    padding-right: 10px;
    width: 35px;
  }
  #news .news-container-bottom dl {
    flex-direction: column;
    padding: 0 20px 40px;
  }
  #news .news-container-bottom dl dt {
    font-size: 12px;
    width: 100%;
    border: 0;
    padding: 20px 0 6px 20px;
  }
  #news .news-container-bottom dl dd {
    font-size: 14px;
    width: 100%;
    padding: 0 50px 20px 20px;
  }
  #news .news-container-bottom dl dd::after {
    top: 2px;
  }
  #news .news-btn {
    font-size: 16px;
    padding: 6px 0;
  }
  #news .news-btn::after {
    content: url(../img/spbutton.svg);
    top: 8px;
  }
}

#pickup {
  width: 100%;
  height: 100%;
}
#pickup .pickup-img {
  width: 100%;
  height: 100%;
  background: url(../img/pickupback.png) no-repeat bottom;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
#pickup .pickup-img::after {
  content: url(../img/osakana.svg);
  position: absolute;
  right: 0;
  top: 10%;
}
#pickup .pickup-img::before {
  content: url(../img/osakana2.svg);
  position: absolute;
  left: 0;
  bottom: 8%;
}
#pickup .pickup-img .pickup-midashi {
  color: #FFF;
  margin-bottom: 60px;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
  position: relative;
}
#pickup .pickup-img .pickup-midashi::before {
  content: url(../img/pickupribon.svg);
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
#pickup .pickup-img .autoplay img {
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  #pickup .pickup-img {
    padding: 60px 0;
  }
  #pickup .pickup-img .pickup-midashi {
    font-size: 20px;
    margin-bottom: 40px;
  }
  #pickup .pickup-img .pickup-midashi::before {
    content: url(../img/pickupribonsp.svg);
    top: -2px;
  }
}

#aquarium {
  width: 100%;
  height: 100%;
  background: url(../img/aquarium.png) no-repeat;
  background-size: cover;
}
#aquarium .aquarium-img-top .pickup-bottom {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
#aquarium .aquarium-img-top .aquarium-midashi {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  position: relative;
  margin-top: 30px;
}
#aquarium .aquarium-img-top .aquarium-midashi::before {
  content: url(../img/aquariumribon.svg);
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
}
#aquarium .aquarium-img-top p {
  color: #FFF;
  margin: 60px 0 80px;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.2px;
}
#aquarium .aquarium-img-top .aquarium-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  height: 500px;
  position: relative;
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text {
  width: 55%;
  z-index: 2;
  position: absolute;
  top: 120px;
  margin-left: 30px;
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text h4 {
  color: #FFF;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: justify;
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text h4::before {
  content: url(../img/bikkuri.svg);
  width: 50px;
  height: 100%;
  position: absolute;
  top: -60px;
  left: 10px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text h4::before {
    content: none;
  }
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text p {
  color: #FFF;
  text-align: justify;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 1.44px;
  margin-top: 30px;
  position: relative;
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text p::after {
  content: url(../img/sakana.png);
  position: absolute;
  left: -180px;
  top: 180px;
  animation: fuwafuwa 2s infinite;
}
#aquarium .aquarium-img-top .aquarium-flex .aquarium-text .sea-text::before {
  content: url(../img/bikkuri.svg);
  width: 50px;
  height: 100%;
  position: absolute;
  top: -65px;
  left: 35px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text .sea-text::before {
    content: none;
  }
}
@media screen and (max-width: 900px) {
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text .sea-text br {
    display: none;
  }
}
#aquarium .aquarium-img-top .aquarium-flex figure {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 35%;
  animation: guruguru 10s linear infinite;
  animation-direction: reverse;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  height: 500px;
  position: relative;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text {
  width: 55%;
  position: absolute;
  top: 150px;
  left: 50%;
  z-index: 2;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text h4 {
  color: #FFF;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: justify;
  margin-right: 30px;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text h4::before {
  content: url(../img/bikkuri.svg);
  width: 50px;
  height: 100%;
  position: absolute;
  top: -90px;
  left: 58%;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text h4::before {
    content: none;
  }
}
#aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text p {
  color: #FFF;
  text-align: justify;
  text-shadow: 0px 0px 6px rgba(27, 97, 119, 0.75);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 1.44px;
  margin-top: 30px;
  margin-right: 30px;
  position: relative;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text p::after {
  content: url(../img/kurage.png);
  position: absolute;
  top: 180px;
  right: -100px;
  animation: fuwafuwa 2s infinite;
}
#aquarium .aquarium-img-top .aquarium-flex-reverse figure {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -20px;
  animation: guruguru 10s linear infinite;
}
#aquarium .aquarium-img-bottom {
  width: 100%;
}
#aquarium .aquarium-img-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 700px) {
  #aquarium .aquarium-img-top {
    padding-bottom: 100px;
  }
  #aquarium .aquarium-img-top .aquarium-midashi {
    font-size: 20px;
    margin-top: 80px;
  }
  #aquarium .aquarium-img-top .aquarium-midashi::before {
    content: url(../img/aquariumribonsp.svg);
    top: -7px;
  }
  #aquarium .aquarium-img-top p {
    font-size: 16px;
    letter-spacing: 1.7px;
    margin-bottom: 60px;
    margin-top: 60px;
  }
  #aquarium .aquarium-img-top .aquarium-flex {
    flex-direction: column;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text {
    width: 100%;
    margin: 0;
    position: static;
    order: 2;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text h4 {
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.9px;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text h4::before {
    content: none;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text p {
    margin-left: 0;
    padding: 0;
    font-size: 16px;
    margin-top: 20px;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text p::after {
    position: absolute;
    left: -80px;
    top: -260px;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text .sea-text br {
    display: none;
  }
  #aquarium .aquarium-img-top .aquarium-flex .aquarium-text .sea-text::before {
    content: none;
  }
  #aquarium .aquarium-img-top .aquarium-flex figure {
    width: 100%;
    height: 100%;
    position: static;
  }
  #aquarium .aquarium-img-top .aquarium-flex figure img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse {
    flex-direction: column;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text {
    width: 100%;
    margin: 0;
    position: static;
    order: 2;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text h4 {
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.9px;
    margin: 0;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text h4::before {
    content: none;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text p {
    margin-right: 0;
    padding: 0;
    font-size: 16px;
    margin-top: 20px;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse .aquarium-text p::after {
    top: -130px;
    right: -50px;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse figure {
    width: 100%;
    height: 100%;
    position: static;
  }
  #aquarium .aquarium-img-top .aquarium-flex-reverse figure img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }
}

#sns {
  width: 100%;
  height: 100%;
  background: url(../img/snsback.png) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
#sns .sns-midashi {
  color: #FFF;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 70px;
}
#sns .sns-midashi::before {
  content: url(../img/snsribon.svg);
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
#sns .sns-midashi::after {
  content: url(../img/kai.png);
  position: absolute;
  right: -20px;
  top: -70px;
  animation: fuwafuwa 2s infinite;
}
#sns .sns-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: scroll;
}
#sns .sns-flex li {
  margin-right: 30px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 6px 0px rgba(0, 0, 0, 0.25) inset;
}
#sns .sns-flex li:last-child {
  margin-right: 0;
}
#sns .sns-flex li img {
  margin-right: 6px;
  padding-bottom: 5px;
}
#sns .sns-flex li p {
  padding: 10px 0;
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  background: #2A9AD9;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 6px 0px rgba(0, 0, 0, 0.25) inset;
}
#sns .sns-flex li .sns-link {
  width: 300px;
  height: 380px;
  overflow: scroll scroll;
  background-color: white;
}
@media screen and (max-width: 700px) {
  #sns .sns-midashi {
    font-size: 20px;
  }
  #sns .sns-midashi::before {
    content: url(../img/snsribonsp.svg);
    top: -8px;
  }
  #sns .sns-midashi::after {
    right: -10px;
    top: -90px;
  }
}

#around {
  width: 100%;
  height: 100%;
  background: url(../img/aroundback.png) no-repeat 10% 10%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-top: 120px;
}
#around .sns-img-bottom {
  width: 100%;
  position: absolute;
  top: -2px;
}
#around .sns-img-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
#around .around-midashi {
  color: #152252;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 60px;
}
#around .around-midashi::before {
  content: url(../img/aroundribon.svg);
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
#around .read {
  color: #152252;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.2px;
  margin-bottom: 80px;
}
#around h4 {
  color: #152252;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2.4px;
  border-left: 8px solid #1D3794;
  padding-left: 18px;
  margin: 0 0 30px 5px;
}
#around .around-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
#around .around-flex figure {
  margin-right: 20px;
}
#around .around-flex figure img {
  width: 100%;
}
#around .around-flex .around-text {
  text-align: center;
  width: 50%;
}
#around .around-flex .around-text p {
  color: #152252;
  text-align: justify;
  font-family: Noto Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  /* 211.111% */
  letter-spacing: 1.44px;
  margin-bottom: 30px;
}
#around .around-flex .around-text .in-detail {
  width: 340px;
  height: 60px;
  border-radius: 35px;
  background: linear-gradient(90deg, #5CBAEF 0%, #2852BF 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0 auto;
}
#around .around-flex .around-text .in-detail:hover {
  border-radius: 35px;
  transition: all 0.3s;
  box-shadow: 0 0 0 0;
}
#around .around-flex .around-text .in-detail ::after {
  content: url(../img/pcbutton.svg);
  position: absolute;
  top: 10px;
  right: 30px;
}
#around .around-flex .around-text .in-detail p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  line-height: 60px;
}
#around .reverse figure {
  order: 2;
  margin-left: 20px;
  margin-right: 0;
}
#around .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
#around .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#around .footer-img .wave1 {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
}
#around .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 700px) {
  #around .around-midashi {
    font-size: 20px;
  }
  #around .around-midashi::before {
    content: url(../img/aroundribonsp.svg);
    top: -2px;
  }
  #around .read {
    font-size: 16px;
    letter-spacing: 1.7px;
    margin-bottom: 60px;
  }
  #around h4 {
    font-size: 20px;
    line-height: 28px;
  }
  #around .around-flex {
    flex-direction: column;
  }
  #around .around-flex figure {
    margin-right: 0;
    margin-bottom: 20px;
  }
  #around .around-flex figure img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
  #around .around-flex .around-text {
    width: 100%;
  }
  #around .around-flex .around-text p {
    font-size: 14px;
    line-height: 26px;
  }
  #around .reverse {
    flex-direction: column;
  }
  #around .reverse figure {
    margin-left: 0;
    margin-bottom: 20px;
    order: 0;
  }
  #around .reverse figure img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
}

footer {
  padding: 40px 0 60px;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(180deg, #074199 13.54%, #1E1D3A 100%);
}
footer .pc-top {
  position: absolute;
  right: 8%;
  top: 0;
}
footer .pc-top img {
  animation: yurayura 2s linear infinite;
}
footer .sp-top {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -50px;
  z-index: 5;
}
footer .sp-top img {
  animation: yurayura 2s linear infinite;
}
footer .footer-nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;
}
footer .footer-nav ul li {
  padding: 0 30px;
  border-right: 1px solid white;
}
footer .footer-nav ul li:last-child {
  border: none;
}
footer .footer-nav ul li a {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 680px) {
  footer .footer-nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
  }
  footer .footer-nav ul li {
    margin-top: 20px;
    border: 0;
    padding: 0 15px;
  }
}
footer h1 {
  margin-bottom: 30px;
}
footer p {
  color: white;
}

@media screen and (max-width: 1050px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .navigation-pc {
    display: none;
  }
  .navigation-sp {
    width: 100%;
    height: 100%;
    display: none;
    background: linear-gradient(188deg, rgba(18, 15, 107, 0.9) 13.39%, rgba(18, 88, 193, 0.9) 87.96%);
    position: relative;
    z-index: 999;
  }
  .navigation-sp ul {
    display: none;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: url(../img/awa.png);
    animation: awa 100s linear both infinite;
  }
  @keyframes awa {
    0% {
      background-position-y: bottom;
    }
    100% {
      background-position-y: -1163px;
    }
  }
  .navigation-sp ul li {
    width: 100%;
    font-size: 20px;
  }
  .navigation-sp ul li .hamburger-list {
    display: flex;
    align-items: center;
    padding: 16px 30px;
    border-bottom: 1px dashed rgb(111, 111, 111);
    font-size: 20px;
    max-width: 335px;
    margin: 0 auto;
    position: relative;
  }
  .navigation-sp ul li .hamburger-list::after {
    content: url(../img/pcbutton.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
  .navigation-sp ul li .hamburger-list img {
    width: 15%;
  }
  .navigation-sp ul li .hamburger-list p {
    text-align: start;
    width: 85%;
    font-size: 18px;
    line-height: 20px;
    padding-left: 55px;
  }
  .navigation-sp ul li .cta-sp {
    padding: 20px 30px;
    color: #fff;
    max-width: 250px;
    font-size: 20px;
    font-weight: 400;
    margin: 50px auto 0;
    border-radius: 35px;
    border: 2px solid #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  .navigation-sp ul li .cta-sp:hover {
    background-color: #ffffff;
    color: #1D3794;
    font-weight: 700;
    transition: 0.3s all ease;
  }
  .hamburger {
    width: 76px;
    height: 76px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s all;
  }
  .hamburger span {
    width: 30px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 23px;
  }
  .hamburger span:nth-child(1) {
    top: 25px;
    transition: all 0.3s;
  }
  .hamburger span:nth-child(2) {
    top: 35px;
    transition: all 0.3s;
  }
  .hamburger span:nth-child(3) {
    top: 45px;
    transition: all 0.3s;
  }
  .hamburger .short {
    width: 20px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    transition: all 0.3s;
    top: 38px;
    left: 18px;
    width: 40px;
    background-color: #152252;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.3s;
    top: 38px;
    left: 18px;
    width: 40px;
    background-color: #152252;
  }
  .hamburger.active {
    background-color: #fff;
    transition: 0.3s all;
  }
  header .header-wrapper {
    padding: 0;
    flex-direction: column;
  }
  header .header-wrapper ul {
    padding-top: 100px;
  }
  header .header-wrapper ul li {
    margin: 0 auto;
  }
  header .header-wrapper ul li .cta {
    margin: 40px auto 0;
  }
  header .header-wrapper .logo {
    position: absolute;
    top: 18%;
    z-index: 1000;
  }
}
#ticket {
  width: 100%;
  height: 100%;
  background: url(../img/webreverse.png) no-repeat center bottom;
  background-size: cover;
  filter: saturate(120%);
  z-index: 1;
}
#ticket .ticket-bg {
  width: 100%;
  height: 100%;
  background: url(../img/webback.png) no-repeat 30% bottom;
  background-size: cover;
}

#ticket-content {
  width: 100%;
  background: url(../img/webcont.png) no-repeat center;
  background-size: cover;
  filter: saturate(120%);
  padding-bottom: 100px;
}
#ticket-content .ticket-pan {
  display: flex;
  padding: 26px 0 50px;
}
#ticket-content .ticket-pan a,
#ticket-content .ticket-pan p {
  margin-right: 20px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#ticket-content .ticket-wrapper {
  width: 100%;
  max-width: 850px;
  height: 100%;
  flex-shrink: 0;
  margin: 0 auto;
  padding: 20px 0;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}
#ticket-content .ticket-wrapper .ticket-container {
  width: 100%;
  height: 100%;
  padding: 6px 0;
  border-radius: 10px 10px 0px 0px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(12, 14, 69, 0.5);
}
#ticket-content .ticket-wrapper .ticket-container .ticket-top {
  color: #FFF;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 680px) {
  #ticket-content .ticket-wrapper .ticket-container .ticket-top {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
#ticket-content .ticket-wrapper .ticket-container-bottom {
  width: 100%;
  height: 100%;
  padding: 30px 40px 10px 60px;
  border-radius: 0px 0px 10px 10px;
  background: rgba(255, 255, 255, 0.8);
}
#ticket-content .ticket-wrapper .ticket-container-bottom p {
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 200% */
  letter-spacing: 0.64px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 680px) {
  #ticket-content .ticket-wrapper .ticket-container-bottom p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
#ticket-content .ticket-wrapper .ticket-container-bottom p::before {
  content: "●";
  position: absolute;
  left: -20px;
}

#ticket-monney .ticket-monney-wrapper {
  margin: 60px 0 80px;
}
#ticket-monney .ticket-monney-wrapper .ticket-monney-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-self: center;
  margin-right: 50px;
  padding-top: 40px;
  width: 100%;
}
#ticket-monney .ticket-monney-wrapper .ticket-monney-flex li img {
  width: 100%;
  min-width: 300px;
}

#ticket-buy {
  background: linear-gradient(180deg, rgba(213, 238, 249, 0) 0%, #C9E9FB 100%);
}
#ticket-buy .ticket-buy-wrapper {
  margin-bottom: 100px;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width: 740px) {
  #ticket-buy .ticket-buy-wrapper .ticket-buy-flex {
    flex-direction: column;
  }
  #ticket-buy .ticket-buy-wrapper .ticket-buy-flex figure {
    max-width: 500px;
  }
  #ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text {
    margin-top: 30px;
    padding-left: 0 !important;
  }
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex figure {
  width: 100%;
  height: 100%;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex figure img {
  width: 100%;
  min-width: 300px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25));
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text {
  width: 100%;
  padding-left: 40px;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text p {
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 200% */
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  #ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text p {
    font-size: 14px;
    line-height: 26px;
  }
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text .in-detail {
  min-width: 300px;
  max-width: 500px;
  width: 100%;
  height: 60px;
  border-radius: 35px;
  background: linear-gradient(90deg, #5CBAEF 0%, #2852BF 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0 auto;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text .in-detail:hover {
  border-radius: 35px;
  transition: all 0.3s;
  box-shadow: 0 0 0 0;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text .in-detail ::after {
  content: url(../img/pcbutton.svg);
  position: absolute;
  top: 10px;
  right: 30px;
}
#ticket-buy .ticket-buy-wrapper .ticket-buy-flex .buy-text .in-detail p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  position: relative;
  line-height: 60px;
}
#ticket-buy .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#ticket-buy .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#ticket-buy .footer-img .wave1 {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
}
#ticket-buy .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#access {
  width: 100%;
  height: 100%;
  background: url(../img/accessback.png) no-repeat 60% bottom;
  background-size: cover;
}

#access-bg {
  width: 100%;
  height: 100%;
  background-color: white;
}
#access-bg .access-pan {
  display: flex;
  padding: 26px 0 60px;
}
#access-bg .access-pan a,
#access-bg .access-pan p {
  margin-right: 20px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#access-wrapper {
  width: 100%;
  height: 100%;
}
#access-wrapper .access-container {
  margin-bottom: 70px;
}
#access-wrapper .access-container .access-flex {
  margin-top: 40px;
  display: flex;
}
#access-wrapper .access-container .access-flex .access-text {
  width: 100%;
}
#access-wrapper .access-container .access-flex .access-text p {
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 200% */
  letter-spacing: 0.8px;
  margin-bottom: 40px;
}
#access-wrapper .access-container .access-flex .access-text dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
#access-wrapper .access-container .access-flex .access-text dt {
  width: 35%;
  background: rgba(29, 55, 148, 0.9);
  color: #FFF;
  padding: 10px 20px;
}
#access-wrapper .access-container .access-flex .access-text dt:nth-child(1) {
  border-radius: 6px 0px 0px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
#access-wrapper .access-container .access-flex .access-text dt:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
#access-wrapper .access-container .access-flex .access-text dt:nth-child(5) {
  border-radius: 0px 0px 0px 6px;
}
#access-wrapper .access-container .access-flex .access-text dd {
  width: 65%;
  padding: 10px 20px;
  background: rgba(228, 228, 228, 0.8);
}
#access-wrapper .access-container .access-flex .access-text dd:nth-child(4) {
  background: rgba(246, 246, 246, 0.8);
}
#access-wrapper .access-container .access-flex .access-text dd:nth-child(6) {
  border-radius: 0px 0px 6px 0px;
}
#access-wrapper .access-container .access-flex .access-text dd:nth-child(2) {
  border-radius: 0px 6px 0px 0px;
}
@media screen and (max-width: 800px) {
  #access-wrapper .access-container .access-flex .access-text dl {
    max-width: 500px;
    margin-bottom: 30px;
  }
  #access-wrapper .access-container .access-flex .access-text dt,
  #access-wrapper .access-container .access-flex .access-text dd {
    font-size: 14px;
  }
}
#access-wrapper .access-container .access-flex iframe {
  width: 100%;
  height: 350px;
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  #access-wrapper .access-container .access-flex iframe {
    margin: 0;
  }
}
@media screen and (max-width: 800px) {
  #access-wrapper .access-container .access-flex {
    flex-direction: column;
    margin-top: 30px;
  }
  #access-wrapper .access-container .access-flex .access-text p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

#congestion-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(213, 238, 249, 0) 0%, #C9E9FB 100%);
}
#congestion-wrapper .congestion-container {
  margin-bottom: 120px;
}
@media screen and (max-width: 680px) {
  #congestion-wrapper .congestion-container {
    margin-bottom: 80px;
  }
}
#congestion-wrapper .congestion-container p {
  margin: 40px 0;
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 200% */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 800px) {
  #congestion-wrapper .congestion-container p {
    font-size: 14px;
    line-height: 26px;
    margin: 30px 0;
  }
}
#congestion-wrapper .congestion-container .in-detail {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: 60px;
  border-radius: 35px;
  background: linear-gradient(90deg, #5CBAEF 0%, #2852BF 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0 auto;
}
#congestion-wrapper .congestion-container .in-detail:hover {
  border-radius: 35px;
  transition: all 0.3s;
  box-shadow: 0 0 0 0;
}
#congestion-wrapper .congestion-container .in-detail ::after {
  content: url(../img/pcbutton.svg);
  position: absolute;
  top: 10px;
  right: 30px;
}
#congestion-wrapper .congestion-container .in-detail p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  position: relative;
  line-height: 60px;
}
#congestion-wrapper .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#congestion-wrapper .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#congestion-wrapper .footer-img .wave1 {
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#congestion-wrapper .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#concept {
  width: 100%;
  height: 100%;
  background-color: #1B1A34;
  z-index: 1;
}
#concept .concept-bg {
  width: 100%;
  height: 100%;
  background: url(../img/conceptback.png) no-repeat center bottom;
  background-size: cover;
}

#concept-content {
  width: 100%;
  background: url(../img/conceptcontback.png) no-repeat center;
  background-size: cover;
  padding-bottom: 100px;
}
#concept-content .concept-pan {
  display: flex;
  padding: 26px 0 50px;
}
#concept-content .concept-pan a,
#concept-content .concept-pan p {
  margin-right: 20px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#concept-content .concept-text {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 100px 0 90px;
  position: relative;
}
#concept-content .concept-text::before {
  content: url(../img/mana.png);
  transform: rotate(-8deg);
  position: absolute;
  left: -60px;
  top: 50px;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 600px) {
  #concept-content .concept-text::before {
    top: -50px;
    left: -40px;
  }
}
#concept-content .concept-text::after {
  content: url(../img/ashika.png);
  transform: rotate(20deg);
  position: absolute;
  right: -60px;
  top: 50px;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 600px) {
  #concept-content .concept-text::after {
    top: 460px;
    right: -30px;
  }
}
#concept-content .concept-text h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.2px;
  margin-bottom: 90px;
  position: relative;
}
#concept-content .concept-text h3::before {
  content: url(../img/bottomborderpc.svg);
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}
#concept-content .concept-text p {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  #concept-content .concept-text {
    margin-bottom: 60px;
  }
  #concept-content .concept-text h3 {
    font-size: 20px;
    letter-spacing: 2.8px;
  }
  #concept-content .concept-text h3::before {
    content: url(../img/bottombordersp.svg);
    bottom: -30px;
  }
  #concept-content .concept-text p {
    font-size: 14px;
  }
}

#concept-zone {
  width: 100%;
  height: 100%;
  background: url(../img/frame.png) top center;
  background-size: contain;
  position: relative;
  z-index: -2;
}
#concept-zone .concept-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#concept-zone .concept-container {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 840px) {
  #concept-zone .concept-container {
    padding: 860px 0 720px;
  }
}
#concept-zone .concept-container .pc1 {
  position: absolute;
  top: 120px;
  right: 58%;
  transform: rotate(-10deg);
  width: 40%;
}
#concept-zone .concept-container .pc2 {
  position: absolute;
  top: 430px;
  right: 20%;
  width: 25%;
}
#concept-zone .concept-container .pc3 {
  position: absolute;
  top: 900px;
  right: -10%;
  width: 33%;
}
#concept-zone .concept-container .pc4 {
  position: absolute;
  top: 1080px;
  right: 82%;
  width: 25%;
}
#concept-zone .concept-container .pc5 {
  position: absolute;
  top: 800px;
  right: 55%;
  width: 18%;
}
#concept-zone .concept-container .sp1 {
  position: absolute;
  top: 100px;
  left: 30px;
  transform: rotate(-10deg);
}
#concept-zone .concept-container .sp2 {
  position: absolute;
  top: 300px;
  left: 50%;
}
#concept-zone .concept-container .sp3 {
  max-width: 800px;
  position: absolute;
  top: 500px;
  right: -80px;
}
#concept-zone .concept-container .sp4 {
  position: absolute;
  top: 700px;
  left: 0;
}
#concept-zone .concept-container .sp5 {
  position: absolute;
  top: 1060px;
  left: 74%;
}
#concept-zone .concept-container .concept-title-pc {
  color: #152252;
  padding: 1260px 0 990px;
  text-align: center;
  color: #152252;
  font-family: "Shippori Mincho B1";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  /* 250% */
  letter-spacing: 4.2px;
}
@media screen and (max-width: 840px) {
  #concept-zone .concept-container .concept-title-pc {
    display: none;
  }
}
#concept-zone .concept-container .text-flex {
  display: none;
}
#concept-zone .concept-container .text-flex .concept-title-sp {
  color: #152252;
  writing-mode: vertical-lr;
  padding: 0;
  display: inline-block;
  font-family: "Shippori Mincho B1";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 3;
  letter-spacing: 6px;
  margin: 0 auto;
  height: 550px;
  text-align: start;
}
#concept-zone .concept-container .text-flex .concept-title-sp2 {
  color: #152252;
  writing-mode: vertical-lr;
  padding: 0;
  display: inline-block;
  font-family: "Shippori Mincho B1";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 3;
  letter-spacing: 6px;
  margin: 0 auto;
  height: 550px;
  text-align: end;
}
@media screen and (max-width: 840px) {
  #concept-zone .concept-container .text-flex {
    display: block;
  }
}
#concept-zone .concept-container .pc6 {
  position: absolute;
  top: 1450px;
  right: 3%;
  transform: rotate(15deg);
  width: 27%;
}
#concept-zone .concept-container .pc7 {
  position: absolute;
  top: 1630px;
  right: 57%;
  width: 34%;
}
#concept-zone .concept-container .pc8 {
  position: absolute;
  top: 2000px;
  right: 22%;
  width: 16%;
}
#concept-zone .concept-container .sp6 {
  position: absolute;
  top: 1500px;
  left: 5%;
}
#concept-zone .concept-container .sp7 {
  position: absolute;
  top: 1750px;
  left: 62%;
}
#concept-zone .concept-container .sp8 {
  position: absolute;
  top: 1920px;
  left: 35%;
}
@media screen and (max-width: 640px) {
  #concept-zone .concept-container .pcpc {
    display: none;
  }
}
#concept-zone .concept-container .spsp {
  display: none;
}
@media screen and (max-width: 640px) {
  #concept-zone .concept-container .spsp {
    display: block;
  }
}
#concept-zone .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#concept-zone .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#concept-zone .footer-img .wave1 {
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#concept-zone .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.aaa {
  position: relative;
  top: -1px;
}

#exhibit {
  width: 100%;
  height: 100%;
  background-color: #1B1A34;
  z-index: 1;
}
#exhibit .exhibit-bg {
  width: 100%;
  height: 100%;
  background: url(../img/josetuback.png) no-repeat 70% bottom;
  background-size: cover;
}

#exhibit-content {
  width: 100%;
  background: url(../img/josetucont.png) no-repeat top;
  background-size: cover;
  padding-bottom: 120px;
}
#exhibit-content .exhibit-pan {
  display: flex;
  padding: 26px 0 50px;
}
#exhibit-content .exhibit-pan a,
#exhibit-content .exhibit-pan p {
  margin-right: 20px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#exhibit-content .exhibit-text {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 100px 0 90px;
  position: relative;
}
#exhibit-content .exhibit-text::before {
  content: url(../img/shachi.png);
  transform: rotate(-30deg);
  position: absolute;
  left: -115px;
  top: -110px;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 600px) {
  #exhibit-content .exhibit-text::before {
    top: -100px;
    left: -100px;
  }
}
#exhibit-content .exhibit-text::after {
  content: url(../img/seiuchi.png);
  transform: rotate(20deg);
  position: absolute;
  right: -90px;
  top: -80px;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 600px) {
  #exhibit-content .exhibit-text::after {
    top: 200px;
    right: -80px;
  }
}
#exhibit-content .exhibit-text h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.2px;
  margin-bottom: 80px;
  position: relative;
}
#exhibit-content .exhibit-text h3::before {
  content: url(../img/bottomborderpc.svg);
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-52%);
}
#exhibit-content .exhibit-text p {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  #exhibit-content .exhibit-text {
    margin-bottom: 60px;
  }
  #exhibit-content .exhibit-text h3 {
    font-size: 20px;
    letter-spacing: 2.8px;
    margin-bottom: 60px;
  }
  #exhibit-content .exhibit-text h3::before {
    content: url(../img/bottombordersp.svg);
    bottom: -25px;
  }
  #exhibit-content .exhibit-text p {
    font-size: 14px;
  }
}

#exhibit-zone {
  width: 100%;
  height: 100%;
  background: url(../img/midokoroback.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: -2;
}
#exhibit-zone::before {
  content: url(../img/sakana2.svg);
  position: absolute;
  top: 1100px;
  left: 10%;
  animation: fuwafuwa 2s infinite;
}
#exhibit-zone::after {
  content: url(../img/sakana1.svg);
  position: absolute;
  top: 750px;
  right: 10%;
  animation: fuwafuwa 2s infinite;
}
#exhibit-zone .exhibit-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#exhibit-zone .exhibit-midashi {
  color: #152252;
  margin-bottom: 60px;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
  position: relative;
  margin-top: 40px;
}
#exhibit-zone .exhibit-midashi::before {
  content: url(../img/joseturibon.svg);
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
@media screen and (max-width: 840px) {
  #exhibit-zone .exhibit-midashi {
    font-size: 20px;
    letter-spacing: 2.8px;
    margin-top: 60px;
  }
  #exhibit-zone .exhibit-midashi::before {
    content: url(../img/joseturibonsp.svg);
    top: 0;
  }
}
#exhibit-zone .scroll {
  width: 100%;
  text-align: center;
  position: relative;
}
#exhibit-zone .scroll::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #152252;
  position: absolute;
  top: 30px;
  left: calc(50% - 5px);
  animation: scroll-anime 1.6s ease-in-out infinite;
  animation: scroll-anime2 1.6s ease-in-out infinite;
}
#exhibit-zone .scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #152252;
  position: absolute;
  top: 36px;
  left: calc(50% - 1px);
  border-radius: 2px;
}
@keyframes scroll-anime2 {
  0% {
    top: 30px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    top: 90px;
  }
}
#exhibit-zone .midokoro1 {
  width: 100%;
  height: 120vh;
  background: url(../img/midokoro1.png) no-repeat 70%;
  background-size: cover;
  margin-top: 1200px;
  text-align: center;
  padding: 160px 0 0 100px;
  box-shadow: 0 0 50px rgba(64, 135, 173, 0) inset;
  position: relative;
}
#exhibit-zone .midokoro1::before {
  content: url(../img/azarashi.svg);
  position: absolute;
  top: 1600px;
  left: 10%;
  animation: fuwafuwa 2s infinite;
}
#exhibit-zone .midokoro1::after {
  content: url(../img/iruka.svg);
  position: absolute;
  top: 1250px;
  right: 10%;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro1 {
    height: 100vh;
    padding: 10%;
  }
}
#exhibit-zone .midokoro1 .text-container {
  background: rgba(29, 56, 98, 0.5);
  padding: 60px;
  border-radius: 20px;
  width: 570px;
  position: relative;
  animation: guruguru 10s linear infinite;
}
#exhibit-zone .midokoro1 .text-container::before {
  content: url(../img/midokoroborder.svg);
  position: absolute;
  top: 20px;
  left: 20px;
}
#exhibit-zone .midokoro1 .text-container h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  margin-bottom: 10px;
  position: relative;
}
#exhibit-zone .midokoro1 .text-container h3::before {
  content: url(../img/hidari.svg);
  position: absolute;
  left: 50px;
  top: 8px;
}
#exhibit-zone .midokoro1 .text-container h3::after {
  content: url(../img/migi.svg);
  position: absolute;
  right: 55px;
  top: 8px;
}
#exhibit-zone .midokoro1 .text-container p {
  color: #FFF;
  text-align: justify;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  /* 211.111% */
  letter-spacing: 1.44px;
  margin-bottom: 20px;
}
#exhibit-zone .midokoro1 .text-container .img-flex {
  display: flex;
  justify-content: space-between;
}
#exhibit-zone .midokoro1 .text-container .sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro1 .text-container {
    width: 320px;
    padding: 40px;
  }
  #exhibit-zone .midokoro1 .text-container::before {
    content: url(../img/midokorobordersp.svg);
    position: absolute;
    top: -10px;
    left: -10px;
  }
  #exhibit-zone .midokoro1 .text-container h3 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  #exhibit-zone .midokoro1 .text-container h3::before {
    content: url(../img/hidarisp.svg);
    left: 0;
    top: 0;
  }
  #exhibit-zone .midokoro1 .text-container h3::after {
    content: url(../img/migisp.svg);
    right: 0;
    top: 0;
  }
  #exhibit-zone .midokoro1 .text-container p {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 185.714% */
    letter-spacing: 1.12px;
  }
  #exhibit-zone .midokoro1 .text-container .img-flex {
    width: 100%;
    justify-content: center;
  }
  #exhibit-zone .midokoro1 .text-container .pc {
    display: none;
  }
  #exhibit-zone .midokoro1 .text-container .sp {
    display: flex;
    justify-content: space-between;
  }
}
#exhibit-zone .wrapper .scroll {
  margin-top: 40px;
  color: #152252;
}
#exhibit-zone .wrapper .scroll::before {
  background-color: #152252;
}
#exhibit-zone .wrapper .scroll::after {
  background-color: #152252;
}
#exhibit-zone .scroll {
  margin-top: 40px;
  color: #fff;
}
#exhibit-zone .scroll::before {
  background-color: #fff;
}
#exhibit-zone .scroll::after {
  background-color: #fff;
}
#exhibit-zone .midokoro2 {
  width: 100%;
  height: 120vh;
  background: url(../img/midokoro2.png) no-repeat center;
  background-size: cover;
  margin-top: 1200px;
  text-align: center;
  padding: 160px 0 0 100px;
  box-shadow: 0 0 50px rgba(49, 91, 119, 0) inset;
  position: relative;
}
#exhibit-zone .midokoro2::before {
  content: url(../img/umigame.svg);
  position: absolute;
  top: 1700px;
  left: 10%;
  animation: fuwafuwa 2s infinite;
}
#exhibit-zone .midokoro2::after {
  content: url(../img/same.svg);
  position: absolute;
  top: 1350px;
  right: 5%;
  animation: fuwafuwa 2s infinite;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro2 {
    height: 100vh;
    padding: 10%;
    animation: fuwafuwa 2s infinite;
  }
}
#exhibit-zone .midokoro2 .text-container {
  background: rgba(29, 56, 98, 0.5);
  padding: 60px;
  border-radius: 20px;
  width: 570px;
  position: relative;
  animation: guruguru 10s linear infinite;
}
#exhibit-zone .midokoro2 .text-container::before {
  content: url(../img/midokoroborder.svg);
  position: absolute;
  top: 20px;
  left: -20px;
}
#exhibit-zone .midokoro2 .text-container h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  margin-bottom: 10px;
  position: relative;
}
#exhibit-zone .midokoro2 .text-container h3::before {
  content: url(../img/hidari.svg);
  position: absolute;
  left: 25px;
  top: 8px;
}
#exhibit-zone .midokoro2 .text-container h3::after {
  content: url(../img/migi.svg);
  position: absolute;
  right: 32px;
  top: 8px;
}
#exhibit-zone .midokoro2 .text-container p {
  color: #FFF;
  text-align: justify;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  /* 211.111% */
  letter-spacing: 1.44px;
  margin-bottom: 20px;
}
#exhibit-zone .midokoro2 .text-container .img-flex {
  display: flex;
  justify-content: space-between;
}
#exhibit-zone .midokoro2 .text-container .sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro2 .text-container {
    width: 320px;
    padding: 40px;
  }
  #exhibit-zone .midokoro2 .text-container::before {
    content: url(../img/midokorobordersp.svg);
    position: absolute;
    top: -10px;
    left: -10px;
  }
  #exhibit-zone .midokoro2 .text-container h3 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  #exhibit-zone .midokoro2 .text-container h3::before {
    content: url(../img/hidarisp.svg);
    left: -10px;
    top: 0;
  }
  #exhibit-zone .midokoro2 .text-container h3::after {
    content: url(../img/migisp.svg);
    right: -3px;
    top: 0;
  }
  #exhibit-zone .midokoro2 .text-container p {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 185.714% */
    letter-spacing: 1.12px;
  }
  #exhibit-zone .midokoro2 .text-container .img-flex {
    width: 100%;
    justify-content: center;
  }
  #exhibit-zone .midokoro2 .text-container .pc {
    display: none;
  }
  #exhibit-zone .midokoro2 .text-container .sp {
    display: flex;
    justify-content: space-between;
  }
}
#exhibit-zone .midokoro3 {
  width: 100%;
  height: 120vh;
  background: url(../img/midokoro3.png) no-repeat 60%;
  background-size: cover;
  margin-top: 1200px;
  margin-bottom: 100px;
  text-align: center;
  padding: 160px 0 0 100px;
  box-shadow: 0 0 50px rgba(32, 34, 54, 0) inset;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro3 {
    height: 100vh;
    padding: 10%;
  }
}
#exhibit-zone .midokoro3 .text-container {
  background: rgba(29, 56, 98, 0.7);
  padding: 60px;
  border-radius: 20px;
  width: 570px;
  position: relative;
  animation: guruguru 10s linear infinite;
}
#exhibit-zone .midokoro3 .text-container::before {
  content: url(../img/midokoroborder.svg);
  position: absolute;
  top: 20px;
  left: 20px;
}
#exhibit-zone .midokoro3 .text-container h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  margin-bottom: 10px;
  position: relative;
  filter: drop-shadow(0 0 6px #000000);
}
#exhibit-zone .midokoro3 .text-container h3::before {
  content: url(../img/hidari.svg);
  position: absolute;
  left: 50px;
  top: 8px;
}
#exhibit-zone .midokoro3 .text-container h3::after {
  content: url(../img/migi.svg);
  position: absolute;
  right: 55px;
  top: 8px;
}
#exhibit-zone .midokoro3 .text-container p {
  color: #FFF;
  text-align: justify;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  /* 211.111% */
  letter-spacing: 1.44px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px #000000);
}
#exhibit-zone .midokoro3 .text-container .img-flex {
  display: flex;
  justify-content: space-between;
}
#exhibit-zone .midokoro3 .text-container .sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #exhibit-zone .midokoro3 .text-container {
    width: 320px;
    padding: 40px;
  }
  #exhibit-zone .midokoro3 .text-container::before {
    content: url(../img/midokorobordersp.svg);
    position: absolute;
    top: -10px;
    left: -10px;
  }
  #exhibit-zone .midokoro3 .text-container h3 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  #exhibit-zone .midokoro3 .text-container h3::before {
    content: url(../img/hidarisp.svg);
    left: 0;
    top: 0;
  }
  #exhibit-zone .midokoro3 .text-container h3::after {
    content: url(../img/migisp.svg);
    right: 0;
    top: 0;
  }
  #exhibit-zone .midokoro3 .text-container p {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 185.714% */
    letter-spacing: 1.12px;
  }
  #exhibit-zone .midokoro3 .text-container .img-flex {
    width: 100%;
    justify-content: center;
  }
  #exhibit-zone .midokoro3 .text-container .pc {
    display: none;
  }
  #exhibit-zone .midokoro3 .text-container .sp {
    display: flex;
    justify-content: space-between;
  }
}
#exhibit-zone .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#exhibit-zone .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#exhibit-zone .footer-img .wave1 {
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#exhibit-zone .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#event {
  width: 100%;
  height: 100%;
  background-color: #1B1A34;
  z-index: 1;
}
#event .event-bg {
  width: 100%;
  height: 100%;
  background: url(../img/eventback.png) no-repeat 50% bottom;
  background-size: cover;
}

#event-content {
  width: 100%;
  background: url(../img/eventcont.png) no-repeat center;
  background-size: cover;
  padding-bottom: 130px;
}
#event-content .event-pan {
  display: flex;
  padding: 26px 0 50px;
}
#event-content .event-pan a,
#event-content .event-pan p {
  margin-right: 20px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#event-content .event-text {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 40px 0 60px;
  position: relative;
}
#event-content .event-text::before {
  content: url(../img/timeborder.svg);
  position: absolute;
  top: 71%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#event-content .event-text h3 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 28px;
  display: inline;
}
#event-content .event-text h3::before {
  content: url(../img/timeicon.svg);
  position: absolute;
  left: -2px;
}
#event-content .event-text h4 {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.4px;
}
#event-content .event-text p {
  color: #FFF;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  padding-bottom: 25px;
}
#event-content .event-text h5 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  padding: 7px 90px;
  background-color: #458CDF;
  border-radius: 6px;
  display: inline;
}
@media screen and (max-width: 840px) {
  #event-content .event-text {
    margin-bottom: 60px;
  }
  #event-content .event-text::before {
    content: url(../img/timebordersp.svg);
  }
  #event-content .event-text h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }
  #event-content .event-text h3::before {
    top: -7px;
    left: 2px;
  }
  #event-content .event-text h4 {
    font-size: 26px;
    letter-spacing: 3;
    margin-bottom: -2px;
    margin-top: 6px;
  }
  #event-content .event-text p {
    font-size: 14px;
    padding-bottom: 16px;
  }
  #event-content .event-text h5 {
    font-size: 16px;
    padding: 5px 60px;
  }
}

#calender-zone {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #C9E9FB 0%, rgba(213, 238, 249, 0) 100%);
  padding: bottom;
}
#calender-zone .event-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
#calender-zone #today {
  color: #152252;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.6px;
  padding-left: 20px;
  margin: 80px 0 40px;
}
#calender-zone #today span {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.4px;
}
#calender-zone .calender-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#calender-zone .calender-flex .calender-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto 60px;
}
#calender-zone .calender-flex .calender-wrapper p {
  color: #152252;
  margin-bottom: 20px;
}
#calender-zone .calender-flex .calender-wrapper table {
  border-collapse: collapse;
  margin: 0 auto;
  filter: drop-shadow(0 3px 3px #cacaca);
}
#calender-zone .calender-flex .calender-wrapper td {
  border: 1px solid #cecece;
  border-collapse: collapse;
  background-color: #fff;
  font-weight: bold;
}
#calender-zone .calender-flex .calender-wrapper td a {
  display: block;
  height: 100%;
  line-height: 55px;
  color: #152252;
}
#calender-zone .calender-flex .calender-wrapper td a:hover {
  background-color: #f1ce8d;
  opacity: 1;
}
#calender-zone .calender-flex .calender-wrapper .not-day {
  color: #b4b4b4;
}
#calender-zone .calender-flex .calender-wrapper .today {
  background-color: #eb5f5f;
}
#calender-zone .calender-flex .calender-wrapper .today a {
  color: #fff;
}
#calender-zone .calender-flex .calender-wrapper .today a:hover {
  background: transparent;
}
#calender-zone .calender-flex .calender-wrapper th {
  border: 1px solid #cecece;
  border-collapse: collapse;
  color: #fff;
}
#calender-zone .calender-flex .calender-wrapper th:nth-child(1) {
  border-radius: 20px 0 0 0;
  border: 0;
}
#calender-zone .calender-flex .calender-wrapper th:nth-child(7) {
  border-radius: 0 20px 0 0;
  border: 0;
}
#calender-zone .calender-flex .calender-wrapper td,
#calender-zone .calender-flex .calender-wrapper th {
  width: 55px;
  height: 55px;
}
#calender-zone .calender-flex .calender-wrapper th {
  background: #1D3794;
}
#calender-zone .calender-flex .calender-wrapper tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
  border: 0;
}
#calender-zone .calender-flex .calender-wrapper tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
  border: 0;
}
#calender-zone .read {
  color: #152252;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 100px;
}
@media screen and (max-width: 840px) {
  #calender-zone #today {
    font-size: 26px;
  }
  #calender-zone #today span {
    font-size: 18px;
  }
  #calender-zone #today img {
    width: 25px;
  }
  #calender-zone .calender-flex {
    flex-direction: column;
  }
  #calender-zone .read {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 60px;
  }
  #calender-zone .read br {
    display: none;
  }
}

#event-zone {
  width: 100%;
  height: 100%;
  background: url(../img/eventzone.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#event-zone .event-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#event-zone .event-midashi {
  color: #152252;
  margin-bottom: 100px;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 840px) {
  #event-zone .event-midashi {
    font-size: 22px;
    margin-top: 60px;
  }
}
#event-zone .event-midashi::before {
  content: url(../img/eventribon.svg);
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
@media screen and (max-width: 840px) {
  #event-zone .event-midashi::before {
    content: url(../img/eventribonsp.svg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2px;
  }
}
#event-zone .event-container {
  margin-bottom: 60px;
  width: 100%;
}
#event-zone .event-container h4 {
  color: #152252;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2.4px;
  border-left: 8px solid #1D3794;
  padding-left: 18px;
  margin: 0 0 30px 5px;
}
#event-zone .event-container .event-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
#event-zone .event-container .event-flex figure {
  margin-right: 20px;
}
#event-zone .event-container .event-flex figure img {
  width: 100%;
}
#event-zone .event-container .event-flex .event-text {
  width: 50%;
}
#event-zone .event-container .event-flex .event-text p {
  color: #152252;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  /* 211.111% */
  letter-spacing: 1.44px;
  margin-bottom: 40px;
}
#event-zone .event-container .event-flex .event-text dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  filter: drop-shadow(0 3px 6px #c8c8c8);
}
#event-zone .event-container .event-flex .event-text dl dt {
  width: 35%;
  background: rgba(29, 55, 148, 0.9);
  color: #FFF;
  padding: 10px 20px;
}
#event-zone .event-container .event-flex .event-text dl dt:nth-child(1) {
  border-radius: 6px 0px 0px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
#event-zone .event-container .event-flex .event-text dl dt:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
#event-zone .event-container .event-flex .event-text dl dt:nth-child(5) {
  border-radius: 0px 0px 0px 6px;
}
#event-zone .event-container .event-flex .event-text dl dd {
  width: 65%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #152252;
}
#event-zone .event-container .event-flex .event-text dl dd:nth-child(4) {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px dashed rgba(29, 55, 148, 0.9);
}
#event-zone .event-container .event-flex .event-text dl dd:nth-child(6) {
  border-radius: 0px 0px 6px 0px;
}
#event-zone .event-container .event-flex .event-text dl dd:nth-child(2) {
  border-radius: 0px 6px 0px 0px;
  border-bottom: 1px dashed rgba(29, 55, 148, 0.9);
}
@media screen and (max-width: 860px) {
  #event-zone .event-container .event-flex .event-text dl dl {
    max-width: 500px;
    margin-bottom: 30px;
  }
  #event-zone .event-container .event-flex .event-text dl dt,
  #event-zone .event-container .event-flex .event-text dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 840px) {
  #event-zone .event-container .event-flex {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  #event-zone .event-container .event-flex figure {
    margin: 0;
    margin-bottom: 20px;
  }
  #event-zone .event-container .event-flex .event-text {
    width: 100%;
  }
  #event-zone .event-container .event-flex .event-text p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 26px;
    /* 185.714% */
    letter-spacing: 1.12px;
  }
}
#event-zone .reverse .event-flex figure {
  margin-left: 30px;
  margin-right: 0;
  order: 1;
}
@media screen and (max-width: 840px) {
  #event-zone .reverse .event-flex figure {
    order: 0;
    margin: 0;
    margin-bottom: 20px;
  }
}
#event-zone .reverse .event-flex figure img {
  width: 100%;
}
#event-zone .reverse .event-flex .event-text {
  width: 50%;
}
@media screen and (max-width: 840px) {
  #event-zone .reverse .event-flex .event-text {
    width: 100%;
  }
}
#event-zone .footer-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#event-zone .footer-img img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#event-zone .footer-img .wave1 {
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#event-zone .footer-img .wave2 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.fade1.active {
  visibility: visible;
  animation: fade 1s 0.1s ease-out both;
}

.fade1 {
  visibility: hidden;
}

.fade2.active {
  visibility: visible;
  animation: fade 1s 0.1s ease-out both;
}

.fade2 {
  visibility: hidden;
}

.fade3.active {
  visibility: visible;
  animation: fade 1s 0.1s ease-out both;
}

.fade3 {
  visibility: hidden;
}

.fade4.active {
  visibility: visible;
  animation: fade 1.3s 0.1s ease-out both;
}

.fade4 {
  visibility: hidden;
}

.fade5.active {
  visibility: visible;
  animation: fade 1.3s 0.1s ease-out both;
}

.fade5 {
  visibility: hidden;
}

.fade6.active {
  visibility: visible;
  animation: fade 1.3s 0.1s ease-out both;
}

.fade6 {
  visibility: hidden;
}

.fade7.active {
  visibility: visible;
  animation: fade 1s ease-out both;
}

.fade7 {
  visibility: hidden;
}

.fade8.active {
  visibility: visible;
  animation: fade 1s ease-out both;
}

.fade8 {
  visibility: hidden;
}

.fade-in1.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in1 {
  visibility: hidden;
}

.fade-in2.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in2 {
  visibility: hidden;
}

.fade-in3.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in3 {
  visibility: hidden;
}

.fade-in4.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in4 {
  visibility: hidden;
}

.fade-in5.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in5 {
  visibility: hidden;
}

.fade-in6.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in6 {
  visibility: hidden;
}

.fade-in7.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in7 {
  visibility: hidden;
}

.fade-in8.active {
  visibility: visible;
  animation: fade-in 1s 0.1s ease-out both;
}

.fade-in8 {
  visibility: hidden;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}/*# sourceMappingURL=style.css.map */