/* =================================================
   root
================================================= */
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #00a9c9;
  --color-red: #ab0000;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.15), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}


/* =================================================
   module
================================================= */
.mt15 {
  margin-block-start: 15px;
}

.mt30 {
  margin-block-start: 30px;
}

/* =================================================
   scroll
================================================= */
.scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

/* =================================================
   secCmnTit
================================================= */
.secCmnTit {
  position: relative;
  inline-size: 100%;
  block-size: 100px;
  display: flex;
  align-items: center;
  background-size: cover;
  background: url(../img/event/bgCmnTit.webp) center no-repeat;
  margin-block-start: 32px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    inline-size: 100%;
    block-size: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }

  & .wrapper {
    padding-block-start: 0 !important;

    & .titJpn {
      font-size: 36px;
      letter-spacing: 2px;
      margin: 0;
      color: #fff;
    }

    & .titEng {
      color: #fff;
      font-size: 20px;

      &::after {
        background: none;
      }
    }
  }
}

@media (max-width: 767px) {
  .secCmnTit {
    margin-block-start: 45px;
  }
}


/* =================================================
   secHeading
================================================= */
.secHeading {
  padding-block: 0;

  & h2 {
    line-height: 1;
    letter-spacing: 2px;
    font-size: 30px;
    border-block: solid 1px #444444;
    padding-block: 20px;
    font-weight: bold;
  }

  & h3 {
    line-height: 1;
    letter-spacing: 2px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 3px solid #888888;

    & span {
      display: inline-block;
      position: relative;
      padding: 0 0 10px;

      &::before {
        position: absolute;
        bottom: -3px;
        left: 0;
        inline-size: 100%;
        block-size: 3px;
        background-color: var(--color-theme);
        content: '';
      }
    }
  }
}

@media (max-width: 767px) {
  .secHeading {
    padding-block: 0;

    & h2 {
      font-size: 24px;
    }

    & h3 {
      font-size: 20px;
    }
  }
}

/* =================================================
   outLine
================================================= */
.outLine {
  background: #efefef;

  & .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0;

    & .txtArea {
      inline-size: 45%;

      & ul {
        background: #ffffff;
        padding: 10px;
        margin-block: 30px 0;

        & li {
          position: relative;
          padding-inline-start: 35px;
          margin-block-end: 15px;

          &::before {
            content: '';
            display: inline-block;
            position: absolute;
            top: 0;
            left: 0;
            inline-size: 30px;
            block-size: 30px;
            background: url(../img/event/check_circle.webp) center / cover no-repeat;
          }

          &:last-of-type {
            margin-block-end: 0;
          }
        }
      }

      & .comment {
        color: var(--color-red);
      }

      & .privilege {
        margin: 30px 0 0;

        & img {
          max-inline-size: 100%;
        }

        & .link a {
          position: relative;
          color: var(--color-base);
          background: #444444;
          font-weight: bold;
          display: flex;
          justify-content: space-around;
          align-items: center;
          padding: 10px 50px;
          text-decoration: none;
          transition: 0.3s ease-in-out;
          margin-block-start: 10px;
          inline-size: 100%;
          margin: 30px auto 0;

          &:hover {
            &::after {
              right: 10px;
            }
          }

          &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: right 0.3s;
            width: 10px;
            height: 10px;
            border-top: solid 2px currentColor;
            border-right: solid 2px currentColor;
            transform: translateY(-50%) rotate(45deg);
          }
        }
      }
    }

    & .imgArea {
      position: relative;
      inline-size: calc(100% - 50%);
    }
  }
}


@media (max-width: 767px) {
  .outLine {

    & .inner {
      flex-direction: column-reverse;
      padding: 30px 0;

      & .txtArea {
        inline-size: 100%;
        margin-block: 30px 0
      }

      & .imgArea {
        position: relative;
        inline-size: 100%;
      }
    }
  }
}

/* =================================================
   secInfo
================================================= */
.secInfo {
  margin-block: 40px 100px;

  & .inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;

    & .item {
      inline-size: calc(100% / 2 - 15px);

      & .privilege {
        margin: 30px 0 0;

        & img {
          max-inline-size: 100%;
        }
      }

      & iframe {
        inline-size: 100%;
        block-size: 400px;
        aspect-ratio: 16 / 9;
        margin: 30px 0 0;
      }
    }
  }
}


@media screen and (max-width:767px) {
  .secInfo {
    margin-block: 30px 50px;

    & .inner {
      flex-direction: column;
      gap: 30px;

      & .item {
        inline-size: 100%;
      }
    }
  }
}



/* =================================================
   spMenu
================================================= */
.spMenu {
  display: none;
}

@media screen and (max-width:767px) {
  .spMenu {
    display: block;
    position: fixed;
    top: auto;
    bottom: 0;
    inline-size: 100%;
    block-size: 60px;
    z-index: 200;
    transition: .3s;

    & ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 60px;
      gap: 1px;
      background-color: #fff;
      border-top: 1px solid #fff;

      & li {
        inline-size: 100%;
        block-size: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        inline-size: 100%;
        block-size: 100%;
        font-weight: bold;
        text-align: center;
        color: #fff;
        background-color: var(--color-red);

        &:hover {
          text-decoration: none;
        }
      }
    }
  }
}






/* =================================================
   swiper
================================================= */
[class*=swiper]:focus {
  outline: none;
}

.swiper-area {
  position: relative;

  & a {
    text-decoration: none;
  }

  & .slide-media {
    position: relative;
    overflow: hidden;
    padding-top: 62.5%;
    border-radius: 5px;
    background: #ffffff;

    & img {
      position: absolute;
      top: 0;
      left: 0;
      inline-size: 100%;
      block-size: 100%;
      object-fit: cover;
    }
  }

  & .slide-content {
    padding: 15px 0 0;

    & .title {
      font-size: 24px;
      font-weight: bold;
      color: #444444;
      line-height: 1;
    }

    & .point {
      inline-size: 100%;
      margin-block-start: 30px;

      & h4 {
        position: relative;
        font-size: 20px;
        font-weight: bold;
        padding-inline-start: 35px;
        line-height: 1.5;

        &::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 0;
          left: 0;
          inline-size: 30px;
          block-size: 30px;
          background: url(../img/event/recommend.webp) center / cover no-repeat;
        }
      }

      & ol {
        margin-block-start: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px 20px;
        padding: 10px;
        background: #ffffff;

        & li {
          inline-size: calc(100% / 2 - 10px);
          padding-inline-start: 1.8em;
          text-indent: -1.8em;
          counter-increment: num;

          &::before {
            inline-size: 1.5rem;
            block-size: 1.5rem;
            line-height: 1.5;
            text-indent: 0;
            text-align: center;
            display: inline-block;
            margin-inline-end: .2em;
            background: var(--color-theme);
            color: #fff;
            border-radius: 50%;
            content: counter(num);
            transform: scale(.8);
          }
        }
      }
    }

    & .gift {
      inline-size: 100%;
      margin-block-start: 30px;

      & h4 {
        position: relative;
        font-size: 20px;
        font-weight: bold;
        padding-inline-start: 35px;
        line-height: 1.5;

        &::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 0;
          left: 0;
          inline-size: 30px;
          block-size: 30px;
          background: url(../img/event/gift.webp) center / cover no-repeat;
        }
      }

      & img {
        margin-block-start: 15px;
        inline-size: 100%;
      }
    }

    & .flex {
      display: inline-flex;
      align-items: flex-start;
      justify-content: space-between;
      inline-size: 100%;
      margin-block: 30px 0;
    }

    & .detailsLink a {
      position: relative;
      color: var(--color-base);
      background: #444444;
      font-weight: bold;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 50px;
      text-decoration: none;
      transition: 0.3s ease-in-out;
      margin-block-start: 10px;
      inline-size: 300px;

      &:hover {
        &::after {
          right: 10px;
        }
      }

      &::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 20%;
        left: 15px;
        inline-size: 30px;
        block-size: 30px;
        background: url(../img/event/house.webp) center / cover no-repeat;
      }

      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        width: 10px;
        height: 10px;
        border-top: solid 2px currentColor;
        border-right: solid 2px currentColor;
        transform: translateY(-50%) rotate(45deg);
      }
    }

    & .reserveLink a {
      position: relative;
      color: var(--color-base);
      background: var(--color-red);
      font-weight: bold;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 50px;
      text-decoration: none;
      transition: 0.3s ease-in-out;
      margin-block-start: 10px;
      inline-size: 300px;

      &:hover {
        &::after {
          right: 10px;
        }
      }

      &::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 20%;
        left: 15px;
        inline-size: 30px;
        block-size: 30px;
        background: url(../img/event/event_reservation.webp) center / cover no-repeat;
      }

      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        width: 10px;
        height: 10px;
        border-top: solid 2px currentColor;
        border-right: solid 2px currentColor;
        transform: translateY(-50%) rotate(45deg);
      }
    }
  }
}


@media (max-width: 767px) {
  .swiper-area {
    position: relative;

    & a {
      text-decoration: none;
    }

    & .slide-media {
      position: relative;
      overflow: hidden;
      padding-top: 62.5%;
      border-radius: 5px;

      & img {
        position: absolute;
        top: 0;
        left: 0;
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
      }
    }

    & .slide-content {
      padding: 15px 0 0;

      & .title {
        font-size: 20px;
      }

      & .point {
        inline-size: 100%;
        margin-block-start: 30px;

        & h4 {
          font-size: 18px;
        }

        & ol {
          flex-direction: column;
          flex-wrap: nowrap;
          gap: 10px;

          & li {
            inline-size: 100%;
            padding-inline-start: 2em;
            text-indent: -2em;

            &::before {
              line-height: 1.8;
            }
          }
        }
      }

      & .flex {
        flex-direction: column;
      }
    }
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  display: grid;
  place-content: center;
  inline-size: 35px !important;
  block-size: 35px !important;
  cursor: pointer;
  z-index: 1;
  top: 20% !important;
}

@media (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    top: 12% !important;
  }
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.swiper-button-prev::after,
.swiper-button-next::after {
  inline-size: 1rem;
  block-size: 1rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}


.swiper-pagination {
  position: unset !important;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin: 30px 0 0;
  text-align: center;
  z-index: 0;
}

.swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}





.swiper-button-prev::before,
.swiper-button-next::before {
  background-color: var(--color-theme);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  border-color: #fff;
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}