@charset "UTF-8";

/* =============================================================
  top.css
 =============================================================== */

@media screen and (max-width: 768px) {
  #top #header {
    height: 155px;
  }

  #top #header.active {
    height: 60px;
  }

  #top .header__container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  #top #header.active .header__container {
    flex-direction: row;
    gap: 0;
  }

  .header__logo img {
    width: 315px;
    max-width: 100%;
  }

  #top #header.active .header__logo img {
    width: 168px;
  }

  #top .header__right {
    margin-left: auto;
    position: relative;
  }

  #top .slogan {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  #top #header.active .slogan {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
}

/* mv
---------------------------------------------------------------- */
#mv {
  position: relative;
  margin-bottom: 30px;
}

.mv__container {
  position: relative;
  width: 100vw;
  aspect-ratio: 64 / 25;
  overflow: hidden;
}

.mv__container img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#sky {
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#clouds {
  z-index: 10;
}

#stars {
  z-index: 15;
}

#cityscape {
  z-index: 20;
}

#cars-left-to-right {
  z-index: 25;
}

#cars-right-to-left {
  z-index: 30;
}

#arena {
  z-index: 35;
}

@media screen and (max-width: 768px) {
  #mv {
    margin-bottom: 10px;
  }

  .mv__container {
    aspect-ratio: 375 / 737;
  }

  #clouds {
    bottom: auto;
    left: -15px;
  }

  #arena {
    z-index: 20;
  }

  #cars-left-to-right {
    z-index: 25;
  }

  #cars-right-to-left {
    z-index: 30;
  }

  #trees {
    z-index: 35;
  }
}

/* mv__event
---------------------------------------------------------------- */
.mv__event {
  aspect-ratio: 1109 / 629;
  background: url(../images/bord_pc.png) no-repeat;
  background-size: contain;
  left: 50%;
  max-width: 1109px;
  position: absolute;
  top: -6.8%;
  translate: -50% 0;
  width: 59.2%;
  z-index: 40;
}

.mv__event a {
  height: 55.4%;
  bottom: 5%;
  left: 2.9%;
  max-height: 350px;
  margin: 0 auto;
  display: block;
  position: absolute;
  width: 94%;
}

.mv__event__container {
  padding: 2.9% 4.8%;
  height: 100%;
  width: 100%;
  background: var(--black);
  color: var(--white);
}

.event__banner {
  display: flex;
  height: 100%;
  gap: 5.6%;
  justify-content: space-between;
}

.event__textbox {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  /* overflow-wrap: anywhere; */
}

.event__textbox::-webkit-scrollbar {
  width: 5px;
}

.event__textbox::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.event__textbox::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.event__textbox::-webkit-scrollbar-track {
  background: #000;
  border-radius: 4px;
}

.event__date {
  align-items: center;
  background: #898989;
  color: var(--white);
  display: flex;
  font-family: var(--font-gugi);
  gap: 12px;
  justify-content: center;
  line-height: 1;
  max-width: 135px;
  margin: 1.2% 0 2.5%;
  padding: 2.7% 0 1.1%;
}

.event__date.saturday {
  background: #4478ff;
}

.event__date.sunday,
.event__date.nationalHoliday {
  background: #e23d57;
}

.event__date p {
  font-size: 2.4rem;
}

.event__date span {
  font-size: 1.8rem;
}

.event__title {
  font-family: var(--font-zenkaku);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2.5%;
}

.event__text {
  font-family: var(--font-zenkaku);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.event__imagebox__wrap {
  width: 33%;
  max-width: 300px;
}

.event__imagebox {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.event__imagebox .event__image__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(7.5px);
}

.event__imagebox .event__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.event__imagebox:after {
  content: "";
  background: var(--white);
  width: 100%;
  height: 100%;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

/* .marquee-container {
  width: 95%;
  overflow: hidden;
}

.marquee-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marquee-text.is-scrolling {
  overflow: visible;
}

.marquee-text.is-scrolling > span {
  display: inline-block;
  vertical-align: top;
}

.marquee-text.is-scrolling > .marquee-margin {
  width: 4em;
} */

@media screen and (max-width: 1024px) {
  .event__date {
    gap: 8px;
    max-width: 100px;
  }

  .event__date p {
    font-size: 1.8rem;
  }

  .event__date span {
    font-size: 1.4rem;
  }

  .event__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .event__text {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 768px) {
  .mv__event {
    aspect-ratio: 317 / 425;
    background: url(../images/bord_sp.png) no-repeat;
    background-size: contain;
    left: auto;
    max-width: 317px;
    margin: 0 auto 20px;
    position: relative;
    top: auto;
    translate: 0;
    width: 100%;
    z-index: 1;
  }

  .mv__event a {
    bottom: 11.1%;
    left: 2.9%;
    height: 100%;
    max-height: 361px;
    width: 296px;
  }

  .mv__event__container {
    padding: 6.3% 4.7% 4.3%;
  }

  .event__banner {
    gap: 20px;
    flex-direction: column;
  }

  .event__date {
    gap: 8px;
    max-width: 95px;
    margin: 0 0 8px;
    padding: 6px 0 4px;
  }

  .event__date p {
    font-size: 1.6rem;
  }

  .event__date span {
    font-size: 1.3rem;
  }

  .event__title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 3%;
  }

  .event__text {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .event__imagebox__wrap {
    height: 150px;
    width: 150px;
    max-width: 150px;
    margin: 0 auto;
  }

  .event__imagebox {
    height: 100%;
    width: 100%;
  }

  /* .marquee-container {
    width: 97%;
  } */
}

@media screen and (max-width: 374px) {
  .mv__event {
    max-width: 280px;
  }

  .mv__event a {
    max-height: 319px;
    width: 263px;
  }
}

/* important
---------------------------------------------------------------- */
#important {
  flex: 1;
}

.important__news li {
  font-family: var(--font-kosugimaru);
  font-size: 2rem;
  line-height: 1.4;
}

.important__news li a {
  padding: 5px 0;
}

.important__news li a.important__redtext {
  color: #e00075;
}

.fa-exclamation-triangle {
  font-size: 3.1rem;
  color: #e00075;
  padding-right: 5px;
  vertical-align: middle;
}

.important__news li a .show-pc {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #important {
    margin-left: 0;
    padding-top: 19px;
  }

  .important__news li {
    font-size: 1.5rem;
  }

  .fa-exclamation-triangle {
    font-size: 1.8rem;
  }

  .important__news li a .show-pc {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  #important {
    padding-top: 27px;
  }

  .important__news li {
    font-size: 1.4rem;
  }

  .fa-2x.fa-exclamation-triangle {
    font-size: 2rem;
  }
}

/* news
---------------------------------------------------------------- */
.news__title__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__title {
  padding-left: 8px;
  width: 18.4%;
  max-width: 185px;
}

.news__title img {
  max-width: 127px;
}

.news__list {
  border-top: 2px solid var(--navy);
  margin: -11px 0 35px;
}

.news__item {
  border-bottom: 2px solid var(--navy);
  position: relative;
}

.news__item::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 14px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--navy);
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.2px) 50%;
}

.news__item::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 21px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--navy);
}

.news__item a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
}

.news__item a:hover {
  opacity: 1;
}

.news__item a:hover .news__text {
  text-decoration: underline;
}

.news__date {
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 185px;
  padding-left: 18px;
  width: 18.4%;
}

.news__category {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding: 5px;
  width: 140px;
}

.news__text {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  padding-right: 30px;
}

#news .button {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .news__title__wrap {
    align-items: flex-start;
    gap: 5px;
  }

  .news__title {
    max-width: 115px;
    width: 40%;
  }

  .news__title img {
    max-width: 86px;
  }

  .news__list {
    border-top: 1.5px solid var(--navy);
    margin: -7px 0 40px;
  }

  .news__item {
    border-bottom: 1.5px solid var(--navy);
  }

  .news__item a {
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding: 15px 40px 15px 10px;
  }

  .news__date {
    font-size: 1.3rem;
    max-width: 115px;
    padding-left: 0;
    width: 40%;
  }

  .news__category {
    font-size: 0.9rem;
    padding: 3px;
    width: 100px;
  }

  .news__text {
    flex-basis: 100%;
    font-size: 1.5rem;
    padding-right: 0;
  }

  #news .button {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 374px) {
  .news__date {
    width: 44%;
  }
}

/* contents-menu
---------------------------------------------------------------- */
#contents-menu ul {
  display: flex;
  justify-content: space-between;
}

#contents-menu .container {
  position: relative;
  overflow: hidden;
}

.contents-menu__ships #ship-left {
  position: absolute;
  bottom: 0;
  left: -40%;
}

.contents-menu__ships #ship-right {
  position: absolute;
  bottom: 10px;
  right: -32.5%;
}

#contents-menu ul li:nth-of-type(even) {
  transform: translateY(25px);
}

#contents-menu ul li a {
  display: block;
  transition: all 0.5s;
  padding-top: 20px;
}

#contents-menu ul li a:hover {
  opacity: 1;
  transform: translateY(-20px);
}

@media screen and (max-width: 1024px) {
  #contents-menu ul li {
    max-width: 110px;
  }
}

@media screen and (max-width: 768px) {
  #contents-menu .container {
    overflow: hidden;
  }

  .contents-menu__ships #ship-right {
    bottom: 20px;
    right: -60px;
    max-width: 120px;
  }

  #contents-menu ul {
    gap: 25px;
    justify-content: center;
    padding-top: 25px;
  }

  #contents-menu ul li {
    max-width: 88px;
  }

  #contents-menu ul li:nth-of-type(even) {
    transform: translateY(0);
  }

  #contents-menu ul li a:hover {
    opacity: 1;
    transform: translateY(-20px);
  }
}

/* floor-slider
---------------------------------------------------------------- */
#floor-slider {
  position: relative;
  margin-top: -40px;
}

.floor-slider__top {
  background: url(../images/wave_blue.png) repeat-x;
  height: 21px;
}

.floor-slider__container {
  background: #a7f4ff;
  margin-top: -2px;
  padding: 3.2% 0;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

#floor-slider .swiper-slide {
  aspect-ratio: 420 / 280;
  border-radius: 40px;
  overflow: hidden;
}

.swiper-slide img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-b {
  display: none;
}

.floor-slider__bottom {
  background: url(../images/wave_white.png) repeat-x;
  height: 21px;
  margin-top: -19px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .floor-slider__top {
    background-size: 68px;
    height: 10px;
  }

  .floor-slider__container {
    padding: 8% 0 6%;
  }

  #floor-slider .swiper-slide {
    aspect-ratio: 125 / 90;
    border-radius: 20px;
  }

  .swiper-a {
    margin-bottom: 10px;
  }

  .swiper-b {
    display: block;
  }

  .floor-slider__bottom {
    margin-top: -8px;
    background-size: 68px;
    height: 10px;
  }
}

/* sponsorship
---------------------------------------------------------------- */
#sponsorship {
  padding: 60px 0 0;
  min-height: 555px;
  text-align: center;
  position: relative;
}

.sponsorship-container {
  max-width: 1109px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.sponsorship-bg {
  width: 100vw;
  height: 100%;
  position: relative;
}

#clouds-02 {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.sponsorship__boxes {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 120px;
}

.sponsorship__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sponsorship__title {
  margin-bottom: 65px;
}

.sponsorship__boxtitle {
  background:
    url(../images/sponsorship_img01.png), url(../images/sponsorship_img02.png);
  background-repeat: no-repeat, no-repeat;
  background-position:
    left center,
    right center;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 0 40px;
}

.sponsorship__imagebox {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.satokogyo {
  max-width: 285px;
}

.suntory {
  max-width: 260px;
}

.cocacola {
  max-width: 235px;
}

@media screen and (max-width: 1024px) {
  .sponsorship-container {
    max-width: 720px;
  }

  .sponsorship__boxes {
    gap: 80px;
  }

  .sponsorship__imagebox {
    gap: 40px;
  }

  .satokogyo {
    max-width: 195px;
  }

  .suntory {
    max-width: 160px;
  }

  .cocacola {
    max-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  #sponsorship {
    padding: 40px 0 0;
    min-height: auto;
  }

  .sponsorship-container {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
    max-width: 668px;
    margin: 0 auto;
    padding: 0 5.4%;
  }

  .sponsorship__title {
    margin-bottom: 40px;
  }

  .sponsorship__title img {
    margin: 0 auto;
  }

  .sponsorship__boxes {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 45px;
  }

  .sponsorship__boxtitle {
    background-size:
      7px 16px,
      7px 16px;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0 30px;
  }

  .sponsorship__box {
    gap: 20px;
  }

  .sponsorship__imagebox {
    flex-direction: column;
    gap: 25px;
  }

  .satokogyo {
    max-width: 234px;
  }

  .suntory {
    max-width: 204px;
  }

  .cocacola {
    max-width: 190px;
  }
}

/* recommend
---------------------------------------------------------------- */
.recommend-bg img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.recommend-container {
  background: var(--pastel-green);
  padding-bottom: 10px;
  position: relative;
}

.recommend__title {
  display: inline-block;
  position: absolute;
  top: -165px;
  right: 20%;
  z-index: 5;
}

#recommend .swiper {
  margin-bottom: 50px;
}

#recommend .swiper-slide {
  aspect-ratio: 320/ 200;
}

.swiper-d {
  display: none;
}

#recommend .button .icon {
  width: 53px;
  height: 55px;
  mask-image: url("../images/icon_hotel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--navy);
  margin-left: -2em;
  transition: all 0.5s;
}

#recommend .button a:hover .icon {
  background-color: var(--white);
}

#top #footer {
  padding: 0 0 70px;
}

@media screen and (max-width: 768px) {
  .recommend-bg img {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .recommend__title {
    top: -135px;
    right: auto;
    left: 8%;
    max-width: 235px;
  }

  #recommend .swiper {
    margin-bottom: 25px;
  }

  #recommend .swiper-slide {
    aspect-ratio: 125/ 90;
  }

  #recommend .swiper-c {
    margin-bottom: 0;
  }

  #recommend .swiper-d {
    display: block;
  }

  #recommend .button .icon {
    width: 41px;
    height: 43px;
  }

  #top #footer {
    padding: 30px 0 130px;
  }
}
