@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0075c2;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 40px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
    padding: 0 16px;
  }
}
.header__logo {
  display: block;
  width: 63px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 32px;
    height: 41px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    z-index: 100;
  }
  .header--open .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-scrim {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
  }
}
.header__nav-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    width: 345px;
    max-width: 92%;
  }
}
.header__nav-item a {
  display: block;
  font: 600 1.6rem "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  color: #fff;
  line-height: 1.5em;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    height: 60px;
    padding: 0 24px;
    border: 1px solid #0e1b3d;
    background-color: #0075c2;
    font-size: 16px;
    white-space: normal;
  }
}
.header__nav-item:hover {
  opacity: 0.8;
}
.header__nav-item-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-item-icon {
    position: relative;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
  }
  .header__nav-item-icon img {
    position: absolute;
    inset: 0;
  }
}
.header__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.header__toggle-icon {
  position: absolute;
  inset: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__toggle-icon.is-hidden {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
  background-color: #1e266f;
}
.footer__logo {
  width: 63px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 32px;
    height: 41px;
  }
}

.c-point-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 512px;
  min-height: 551px;
  gap: 24px;
  padding: 20px;
  background-color: rgba(74, 153, 216, 0.8);
  -webkit-box-shadow: 8px 8px 0 #0e1b3d;
          box-shadow: 8px 8px 0 #0e1b3d;
}
@media screen and (max-width: 767px) {
  .c-point-card {
    width: 100%;
    min-height: unset;
    -webkit-box-shadow: 4px 4px 0 #0e1b3d;
            box-shadow: 4px 4px 0 #0e1b3d;
  }
}
.c-point-card__media {
  width: 100%;
  height: 320px;
}
@media screen and (max-width: 767px) {
  .c-point-card__media {
    height: 207px;
  }
}
.c-point-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
}
.c-point-card__title {
  font: 600 2.4rem "Roboto", sans-serif;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-point-card__title {
    font-size: 18px;
  }
}
.c-point-card__desc {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-point-card__desc {
    font-weight: 400;
  }
}
.c-point-card__note {
  font-size: 1.4rem;
  line-height: 2;
}
.c-point-card__badge {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 135px;
  height: 124px;
}
@media screen and (max-width: 767px) {
  .c-point-card__badge {
    left: -12px;
    top: -3px;
    width: 95px;
    height: 87px;
  }
}
.c-point-card__badge-num, .c-point-card__badge-label {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif;
  color: #fff;
  white-space: nowrap;
}
.c-point-card__badge-num {
  top: 26.42%;
  right: 28.83%;
  bottom: 25.19%;
  left: 37.1%;
  font-weight: 700;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .c-point-card__badge-num {
    top: 35.63%;
    right: 32.63%;
    bottom: 22.99%;
    left: 37.89%;
    font-size: 24px;
  }
}
.c-point-card__badge-label {
  top: 16.74%;
  right: 31.79%;
  bottom: 63.9%;
  left: 40.8%;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-point-card__badge-label {
    top: 16.09%;
    right: 28.42%;
    bottom: 56.32%;
    left: 32.63%;
    font-size: 14px;
  }
}

.c-btn-cta {
  width: 100%;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    width: unset;
    margin-top: 100px;
  }
}
.c-btn-cta__bubble {
  position: absolute;
  left: -68px;
  bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 374px;
  height: 182px;
  padding: 35px 0 52px 15px;
  background: url("/files/user/static/asset/2627-blowindsfes/public/icons/cta-bubble.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__bubble {
    left: 10px;
    top: -107px;
    width: 333px;
    height: 117px;
    padding: 13px 20px 30px;
    background: url("/files/user/static/asset/2627-blowindsfes/public/icons/cta-bubble-sp.svg") no-repeat center/cover;
  }
}
.c-btn-cta__bubble-logo {
  width: 63px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__bubble-logo {
    width: 35px;
    height: 46px;
  }
}
.c-btn-cta__bubble-text {
  width: 280px;
  color: #0e1b3d;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__bubble-text {
    font-size: 14px;
  }
}
.c-btn-cta__pill {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 16px 48px;
  border: 4px solid #0e1b3d;
  border-radius: 84px;
  background-color: #ee8df3;
  -webkit-box-shadow: 8px 8px 0 #0e1b3d;
          box-shadow: 8px 8px 0 #0e1b3d;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__pill {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    width: 345px;
    padding: 8px 24px 8px 40px;
    -webkit-box-shadow: 4px 4px 0 #0e1b3d;
            box-shadow: 4px 4px 0 #0e1b3d;
  }
}
.c-btn-cta__pill:hover {
  background-color: #8a38f5;
}
.c-btn-cta__pill:hover .c-btn-cta__text-en,
.c-btn-cta__pill:hover .c-btn-cta__text-ja {
  color: #fff;
}
.c-btn-cta__pill:hover .c-btn-cta__icon {
  background: #fff url("/files/user/static/asset/2627-blowindsfes/public/icons/cta-arrow-dark.svg") center/40px no-repeat;
}
.c-btn-cta__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #0e1b3d;
}
.c-btn-cta__text-en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__text-en {
    font-size: 24px;
  }
}
.c-btn-cta__text-ja {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__text-ja {
    font-size: 16px;
  }
}
.c-btn-cta__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #0e1b3d url("/files/user/static/asset/2627-blowindsfes/public/icons/cta-arrow.svg") center/40px no-repeat;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__icon {
    width: 40px;
    height: 40px;
  }
}
.c-btn-cta__icon img {
  position: absolute;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__icon img {
    width: 14px;
    height: 14px;
  }
}

.c-btn-detail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 345px;
  padding: 8px 24px 8px 40px;
  border: 2px solid #0e1b3d;
  border-radius: 84px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn-detail {
    width: 320px;
  }
}
.c-btn-detail__text {
  color: #0e1b3d;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-btn-detail__text {
    font-size: 16px;
  }
}
.c-btn-detail__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0e1b3d;
}
@media screen and (max-width: 767px) {
  .c-btn-detail__icon {
    width: 24px;
    height: 24px;
  }
}
.c-btn-detail__icon img {
  position: absolute;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .c-btn-detail__icon img {
    width: 7px;
    height: 7px;
  }
}

.c-zoom-btn {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.c-zoom-btn__icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
}

.c-image-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 4%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.c-image-modal--open {
  visibility: visible;
  opacity: 1;
}
.c-image-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 27, 61, 0.85);
}
.c-image-modal__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 4%;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.c-image-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

.mv__image, .mv__image-sp {
  width: 100%;
}
.mv__image {
  aspect-ratio: 1920/1080;
}
.mv__image-sp {
  aspect-ratio: 1080/1350;
}

.point {
  overflow: hidden;
  background-color: #0075c2;
  margin-top: -5px;
  position: relative;
}
.point::before {
  content: "";
  width: 100%;
  background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-pc.png") center top/100% 100% no-repeat;
  background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-pc.png") type('image/png'));
  background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-pc.png") type('image/png'));
  aspect-ratio: 1920/1288;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .point::before {
    background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-sp.png") center top/100% 100% no-repeat;
    background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-sp.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-sp.png") type('image/png'));
    background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-sp.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-sp.png") type('image/png'));
    aspect-ratio: 375/644;
  }
}
.point::after {
  content: "";
  width: 100%;
  background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-pc.png") center top/100% 100% no-repeat;
  background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-pc.png") type('image/png'));
  background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-pc.png") type('image/png'));
  aspect-ratio: 1920/926;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .point::after {
    background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-sp.png") center bottom/100% 100% no-repeat;
    background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-sp.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-sp.png") type('image/png'));
    background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-sp.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-bg-bottom-sp.png") type('image/png'));
    aspect-ratio: 375/304;
  }
}
.point__festival {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 80px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .point__festival {
    gap: 16px;
    padding: 80px 0 40px;
    margin-bottom: 0;
  }
}
.point__festival::before, .point__festival::after {
  content: "";
  width: 361px;
  height: 299px;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point__festival::before, .point__festival::after {
    width: 112px;
    height: 93px;
  }
}
.point__festival::before {
  background: url("/files/user/static/asset/2627-blowindsfes/public/icons/lantern-left.svg") center/cover no-repeat;
  left: 0;
}
.point__festival::after {
  background: url("/files/user/static/asset/2627-blowindsfes/public/icons/lantern-right.svg") center/cover no-repeat;
  right: 0;
}
.point__festival-bg {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.point__intro {
  position: relative;
  z-index: 1;
  width: 800px;
  max-width: 90%;
}
.point__body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .point__body {
    gap: 24px;
    padding-bottom: 74px;
  }
}
.point__deco {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1345;
  position: absolute;
  top: 23%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .point__deco {
    aspect-ratio: 372/772;
    top: 11.3%;
  }
}
.point__heading {
  width: 800px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .point__heading {
    width: 277px;
  }
}
.point__cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 16%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .point__cards {
    max-width: 100%;
  }
}
.point__cards {
  max-width: calc(1200px + 8%);
}
@media screen and (max-width: 767px) {
  .point__cards {
    gap: 24px;
  }
}
.point__cards-deco {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.point__cards-deco--01 {
  left: 1123px;
  top: 369px;
  width: 437px;
  height: 315px;
}
.point__cards-deco--02 {
  left: 77px;
  top: 853px;
  width: 437px;
  height: 315px;
}
.point__cards-deco--03 {
  left: 1123px;
  top: 1399px;
  width: 437px;
  height: 315px;
}
.point__cards-deco--01-sp {
  left: 144px;
  top: 277px;
  width: 217px;
  height: 143px;
}
.point__cards-deco--02-sp {
  left: 206px;
  top: 906px;
  width: 217px;
  height: 143px;
}
.point__card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .point__card-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.point__card-group--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .point__card-group--right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.point__special-live {
  position: relative;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.point__special-live-back-deco {
  width: 222px;
  aspect-ratio: 222/256;
  position: absolute;
  left: -20%;
  top: 39px;
  z-index: 0;
  pointer-events: none;
}
.point__special-live-container {
  width: 100%;
  max-width: 1200px;
  height: 486px;
  background: #8351c9 url("/files/user/static/asset/2627-blowindsfes/public/img/special-live-bg-pc.jpg") center/cover no-repeat;
  background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/special-live-bg-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/special-live-bg-pc.jpg") type('image/jpeg'));
  background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/special-live-bg-pc.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/special-live-bg-pc.jpg") type('image/jpeg'));
  -webkit-box-shadow: 16px 16px 0 #0e1b3d;
          box-shadow: 16px 16px 0 #0e1b3d;
  -webkit-transform: skew(-9deg) translateX(-55px);
          transform: skew(-9deg) translateX(-55px);
  margin-block: 40px 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1152px) {
  .point__special-live-container {
    height: auto;
    max-width: 90%;
    -webkit-transform: skew(-9deg) translateX(0);
            transform: skew(-9deg) translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .point__special-live-container {
    max-width: 335px;
    -webkit-box-shadow: 8px 8px 0 #0e1b3d;
            box-shadow: 8px 8px 0 #0e1b3d;
    -webkit-transform: skew(-2deg) translateX(0);
            transform: skew(-2deg) translateX(0);
    margin-block: 30px 0;
  }
}
.point__special-live-container::before {
  content: "";
  width: 202px;
  height: 201px;
  background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-firework.png") center/cover no-repeat;
  background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-firework.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-firework.png") type('image/png'));
  background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-firework.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-firework.png") type('image/png'));
  position: absolute;
  top: -30px;
  right: -16px;
  -webkit-transform: skew(9deg);
          transform: skew(9deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point__special-live-container::before {
    width: 100px;
    height: 100px;
    top: 19px;
    right: -40px;
    -webkit-transform: skew(2deg);
            transform: skew(2deg);
  }
}
.point__special-live-container::after {
  content: "";
  width: 154px;
  height: 156px;
  background: url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-dot-petal.png") center/cover no-repeat;
  background-image: -webkit-image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-dot-petal.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-dot-petal.png") type('image/png'));
  background-image: image-set(url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-dot-petal.webp") type('image/webp'), url("/files/user/static/asset/2627-blowindsfes/public/img/point-deco-dot-petal.png") type('image/png'));
  position: absolute;
  left: 0;
  bottom: -15px;
  -webkit-transform: skew(9deg);
          transform: skew(9deg);
}
@media screen and (max-width: 767px) {
  .point__special-live-container::after {
    width: 70px;
    height: 71px;
    left: -21px;
    bottom: -24px;
    -webkit-transform: skew(2deg);
            transform: skew(2deg);
  }
}
.point__special-live-container > * {
  -webkit-transform: skew(9deg);
          transform: skew(9deg);
}
@media screen and (max-width: 767px) {
  .point__special-live-container > * {
    -webkit-transform: skew(2deg);
            transform: skew(2deg);
  }
}
.point__special-live-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  padding: 96px clamp(80px, 8.5%, 116px) 10px;
}
@media screen and (max-width: 1152px) {
  .point__special-live-inner {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .point__special-live-inner {
    gap: 24px;
    padding: 100px 14px 40px;
  }
}
.point__special-live-heading {
  width: 548px;
  height: 70px;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__special-live-heading {
    width: 251px;
    height: 105px;
  }
}
.point__special-live-artist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 968px;
  margin-inline: auto;
}
@media screen and (max-width: 1152px) {
  .point__special-live-artist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .point__special-live-artist {
    max-width: 307px;
    gap: 12px;
  }
}
.point__special-live-artist-media {
  width: 100%;
  max-width: 591px;
  aspect-ratio: 591/343;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .point__special-live-artist-media {
    max-width: 277px;
    aspect-ratio: 277/161;
  }
}
.point__special-live-artist-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 767px) {
  .point__special-live-artist-body {
    gap: 12px;
  }
}
.point__special-live-artist-heading {
  width: 100%;
  max-width: 237px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .point__special-live-artist-heading {
    max-width: 113px;
  }
}
.point__special-live-artist-desc {
  width: 289px;
  max-width: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.point__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 808px;
}

.timetable {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-color: #0075c2;
}
@media screen and (max-width: 767px) {
  .timetable {
    padding: 40px 4%;
  }
}
.timetable::before {
  content: "";
  width: 367px;
  height: 355px;
  background: url("/files/user/static/asset/2627-blowindsfes/public/icons/timetable-deco-02.svg") center/cover no-repeat;
  position: absolute;
  right: -51px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .timetable::before {
    width: 122px;
    height: 118px;
    bottom: 0;
  }
}
.timetable__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 890px;
}
@media screen and (max-width: 767px) {
  .timetable__bg {
    height: auto;
  }
}
.timetable__badge {
  position: absolute;
  z-index: 1;
  width: 432px;
  height: 248px;
}
@media screen and (max-width: 767px) {
  .timetable__badge {
    width: 118px;
    height: 68px;
  }
}
.timetable__badge--01 {
  right: -3%;
  top: 28%;
}
@media screen and (max-width: 767px) {
  .timetable__badge--01 {
    right: 0;
    top: 7%;
  }
}
.timetable__badge--02 {
  left: 0;
  top: 45%;
}
.timetable__confetti {
  position: absolute;
  z-index: 1;
}
.timetable__confetti--01 {
  right: 0;
  top: 82%;
  width: 367px;
}
.timetable__confetti--02 {
  left: 0;
  top: 96%;
  width: 418px;
}
.timetable__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .timetable__inner {
    gap: 24px;
  }
}
.timetable__heading {
  width: 660px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .timetable__heading {
    width: 277px;
  }
}
.timetable__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  background-color: #1e266f;
}
@media screen and (max-width: 767px) {
  .timetable__table {
    gap: 8px;
  }
}
.timetable__table-border {
  width: 100%;
  height: 44px;
  background-image: repeating-conic-gradient(#1f2e7a 0% 25%, #fff 0% 50%);
  background-size: 44px 44px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .timetable__table-border {
    height: 13px;
    background-size: 13px 13px;
  }
}
.timetable__table-image {
  position: relative;
  width: 100%;
  max-width: calc(100% - 60px);
}
@media screen and (max-width: 767px) {
  .timetable__table-image {
    max-width: 91.47%;
  }
}

.map {
  position: relative;
  overflow: hidden;
  padding: 40px 0 113px;
  background-color: #0075c2;
}
@media screen and (max-width: 767px) {
  .map {
    padding: 0 4% 40px;
  }
}
.map::before {
  content: "";
  width: 418px;
  height: 357px;
  background: url("/files/user/static/asset/2627-blowindsfes/public/icons/timetable-deco-03.svg") center/cover no-repeat;
  position: absolute;
  top: 22%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .map::before {
    width: 75px;
    height: 64px;
    top: 52%;
  }
}
.map__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 628px;
}
@media screen and (max-width: 767px) {
  .map__bg {
    height: auto;
  }
}
.map__confetti {
  position: absolute;
  z-index: 1;
  right: 48px;
  top: 46%;
  width: 232px;
}
.map__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .map__inner {
    gap: 24px;
    margin-bottom: 24px;
  }
}
.map__heading {
  width: 279px;
}
@media screen and (max-width: 767px) {
  .map__heading {
    width: 104px;
  }
}
.map__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  background-color: #1e266f;
}
@media screen and (max-width: 767px) {
  .map__frame {
    gap: 8px;
    background-color: #0e1b3d;
  }
}
.map__frame-border {
  width: 100%;
  height: 44px;
  background-image: repeating-conic-gradient(#1f2e7a 0% 25%, #fff 0% 50%);
  background-size: 44px 44px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .map__frame-border {
    height: 13px;
    background-size: 13px 13px;
  }
}
.map__frame-image {
  position: relative;
  width: 100%;
  max-width: calc(100% - 60px);
}
@media screen and (max-width: 767px) {
  .map__frame-image {
    max-width: 91.47%;
  }
}
.map__cta {
  width: 100%;
  max-width: 808px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.is-modal-open {
  overflow: hidden;
}
