@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic:wght@700&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-blue: #4dbaff;
  --content-color-gold: #704e1c;
  --content-color-red: #ca1122;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-zen: "Zen Maru Gothic", sans-serif;
  --content-hover-speed: 0.3s;
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.is-sp,
.is-tb {
  display: none;
}
.is-pc.is-tb {
  display: block;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main * {
  box-sizing: border-box;
}
.inner {
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a {
  transition: var(--content-hover-speed);
}
img {
  height: auto;
}
.note-list > li,
.note-txt {
  display: block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
#js-ui-static-breadcrumb {
  background: #fff;
}

/***** MV・ナビ *****/
.title-container {
  width: 100%;
  background:
    url(../img/mvbg_pc.jpg) no-repeat center top / auto,
    #fff;
  padding: 40px 0 96px;
  .inner {
    display: grid;
    .title-logo {
      width: 570px;
      margin: auto;
      text-align: center;
    }
  }
  .nav-wrapper {
    background: rgba(77 186 255 / 70%);
    margin: 64px auto;
    .inner {
      display: grid;
      grid-template-columns: 1fr 125px;
      .nav-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-left: var(--content-border-1) #fff;
        li {
          border-right: var(--content-border-1) #fff;
          a {
            display: flex;
            height: 100%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 8px 0 24px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            position: relative;
            &:hover {
              background: var(--content-color-blue);
            }
            &::after {
              content: "";
              mask: var(--bg-img-setting) url(/cmn/icon2/expand_more.svg);
              background: var(--content-color-base);
              width: 24px;
              height: 24px;
              position: absolute;
              right: 0;
              bottom: 0;
              left: 0;
              margin: auto;
            }
          }
        }
      }
      .display_selected {
        background: var(--content-color-gold);
        width: 125px;
        height: 100%;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center;
        position: relative;
        cursor: pointer;
        &::before {
          content: "出発地";
          display: block;
          font-size: 12px;
        }
        &::after {
          content: "";
          background: var(--bg-img-setting) url(../img/arrow.svg);
          width: 12px;
          height: 9px;
          position: absolute;
          right: 0;
          bottom: 4px;
          left: 0;
          margin: auto;
        }
      }

      .dep-select-zone {
        display: none;
        width: 125px;
        position: absolute;
        z-index: 30;
        border-top: none;
        background: #fff;
        border: 1px solid var(--content-color-gold);
        .dep-select li {
          cursor: default;
          padding: 2px 10px;
          text-align: center;
          line-height: calc(21 / 14);
          &:hover,
          .selected {
            background: var(--content-color-gold);
            color: #fff;
          }
        }
        .close-button {
          display: none;
        }
      }
    }
  }
  .intro-wrapper .inner {
    gap: 24px;
    font-family: var(--font-zen);
    text-align: center;
    .catchcopy-sub {
      font-size: 40px;
      color: var(--content-color-gold);
      display: flex;
      justify-content: center;
      gap: 10px;
      &::before,
      &::after {
        content: "/";
        display: block;
      }
      &::before {
        transform: scaleX(-1);
      }
    }
    .catchcopy-main {
      font-size: 32px;
    }
    .leadcopy {
      display: grid;
      gap: 8px;
      .is-red {
        display: block;
        color: var(--content-color-red);
      }
    }
  }
}

/***** メインコンテンツ *****/
.main-container {
  position: relative;
  &::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: url("../img/bg.jpg") no-repeat center bottom / cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.container {
  width: 100%;
  padding-block: 64px;
  .inner {
    display: grid;
    gap: 40px;
    .head-title {
      display: grid;
      gap: 16px;
      padding-top: 24px;
      background: no-repeat center top / auto 120px;
      font-family: var(--font-zen);
      font-size: 40px;
      text-align: center;
      line-height: 1;
      .title-sub {
        display: block;
        font-size: 32px;
        color: var(--content-color-gold);
      }
      &#support {
        background-image: url(../img/bg_support.png);
      }
      &#tour {
        background-image: url(../img/bg_tour.png);
      }
      &#location {
        background-image: url(../img/bg_info.png);
      }
    }
    /*** サポート ***/
    .support-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      align-items: flex-start;
      > li {
        display: grid;
        gap: 16px;
        .support-midashibox {
          display: flex;
          gap: 8px;
          &::before {
            content: "";
            background: var(--bg-img-setting);
            width: 70px;
            height: 70px;
            display: block;
          }
          .support-midashi {
            flex: 1;
            display: grid;
            gap: 8px;
            font-size: 20px;
            font-weight: bold;
            color: var(--content-color-gold);
            span {
              display: block;
              font-size: 14px;
              color: var(--content-color-base);
            }
          }
        }
        &:first-child .support-midashibox::before {
          background-image: url(../img/badge_01.png);
        }
        &:last-child .support-midashibox::before {
          background-image: url(../img/badge_02.png);
        }
        .support-items {
          display: grid;
          grid-template-columns: minmax(230px, 1fr) 1fr;
          gap: 24px;
          align-items: flex-start;
          .support-txt {
            background: #fff;
            border-radius: 28px;
            border: var(--content-border-2) var(--content-color-gold);
            padding: 14px;
            font-size: 16px;
            font-weight: bold;
            color: var(--content-color-gold);
            line-height: calc(24 / 16);
            position: relative;
            &::after {
              content: "";
              background: url(../img/stick01.svg) var(--bg-img-setting);
              width: 35px;
              height: 35px;
              position: absolute;
              top: 30px;
              right: -30px;
            }
          }
        }
        .according-area {
          display: none;
          .caution-wrapper {
            background: rgba(255 255 255 / 70%);
            padding: 8px;
            display: grid;
            gap: 8px;
            line-height: calc(21 / 14);
            .use-terms {
              font-weight: bold;
              color: var(--content-color-red);
            }
            .use-condition {
              display: grid;
              gap: 8px;
              > li {
                font-weight: bold;
              }
            }
          }
        }
        .accordion-button {
          width: 240px;
          margin: auto;
          border-radius: 32px;
          border: var(--content-border-1) #939dad;
          background: #fff;
          padding: 16px;
          text-align: center;
          cursor: pointer;
          > span {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            &::before {
              content: "";
              background: var(--bg-img-setting);
              background-image: url(../img/ico_open.svg);
              width: 14px;
              height: 14px;
              display: block;
            }
          }
          &.is-open > span::before {
            background-image: url(../img/ico_close.svg);
          }
        }
      }
    }

    /*** 商品 ***/
    .product-wrapper {
      .area00 {
        display: none;
        .item-label.benefit1::after {
          content: "";
          background-image: url(../img/ico_benefit-1.svg);
        }
        .item-label.benefit2::after {
          content: "";
          background-image: url(../img/ico_benefit-2.svg);
        }
        .item-label.both::after {
          content: "";
          background-image: url(../img/ico_benefit-both.svg);
        }
        .link-wrapper {
          display: flex;
          justify-content: center;
          gap: 24px;
          margin: 24px auto 0;
          li {
            width: min(460px, 100%);
            a {
              display: block;
              background: var(--content-color-gold);
              border-radius: 4px;
              font-size: 16px;
              font-weight: bold;
              color: #fff;
              text-align: center;
              padding-block: 16px;
            }
            &:empty {
              display: none;
            }
          }
        }
      }
    }

    /*** 会場案内 ***/
    .location-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      > li {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        gap: 8px;
        .location-item {
          display: contents;
          .location-name {
            width: 232px;
            margin: auto;
            border: var(--content-border-2);
            border-radius: 28px;
            background: #fff;
            padding: 16px;
            font-size: 26px;
            font-weight: bold;
            color: var(--content-color-gold);
            text-align: center;
            position: relative;
            &::after {
              content: "";
              background: url(../img/stick02.svg) var(--bg-img-setting);
              width: 18px;
              height: 26px;
              position: absolute;
              bottom: -20px;
              right: 40px;
            }
          }
          .location-img {
            border: var(--content-border-2) var(--content-color-blue);
          }
        }
        .location-data {
          display: contents;
          .location-address {
            font-size: 16px;
            font-weight: bold;
            display: grid;
            grid-template-columns: 16px 1fr;
            gap: 4px;
            align-items: flex-start;
            &::before {
              content: "";
              background: url(../img/ico_pin.svg) var(--bg-img-setting);
              width: 100%;
              height: 18px;
              display: block;
            }
          }
          .location-txt {
            line-height: 1.5;
          }
        }
      }
    }
    .map-wrapper {
      background: #fff;
      padding: 48px 24px 24px;
      position: relative;
      &::before {
        content: "";
        background: url(../img/badge_map.png) var(--bg-img-setting);
        width: 278px;
        height: 71px;
        position: absolute;
        top: -35px;
        right: 0;
        left: 0;
        margin: auto;
      }
      .map-content {
        display: grid;
        grid-template-columns: 338px 1fr;
        grid-template-rows: 277px 1fr;
        gap: 24px;
        .map-img01,
        .map-img02,
        .map-img03 {
          text-align: center;
        }
        .map-img01 {
          grid-column: 1 / 2;
          grid-row: 1 / 2;
        }
        .map-img02 {
          grid-column: 2 / 3;
          grid-row: 1 / 3;
        }
        .map-img03 {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
        }
      }
    }
    /*** FAQ ***/
    .faq-wrapper {
      background: #fff;
      padding: 64px 40px 40px;
      position: relative;
      &::before {
        content: "";
        background: url(../img/badge_faq.png) var(--bg-img-setting);
        width: 278px;
        height: 71px;
        position: absolute;
        top: -35px;
        right: 0;
        left: 0;
        margin: auto;
      }
      .faq-list {
        display: grid;
        gap: 16px;
        > li {
          display: flex;
          gap: 8px;
          align-items: flex-start;
          &::before {
            content: "";
            background: var(--bg-img-setting) url(../img/ico_q.svg);
            width: 34px;
            height: 26px;
            display: block;
            flex-shrink: 0;
          }
          .faq-content {
            flex: 1;
            display: grid;
            gap: 8px;
            .q-txt {
              font-size: 20px;
              font-weight: bold;
              color: #0063b0;
            }
            .a-txt {
              line-height: 1.5;
            }
          }
        }
      }
    }
    .bnr-wrapper {
      display: grid;
      gap: 16px;
      .sub-title {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
      }
      .bnr-list {
        margin: 0 auto;
      }
    }
  }
}
.container:last-child {
  .inner {
    gap: 64px;
  }
}

@media (768px <= width <= 1024px) {
  .is-pc {
    display: none;
  }
  .title-container {
    .nav-wrapper {
      > .inner {
        width: 100vw;
        .nav-list {
          border-left: none;
        }
      }
    }
  }
  .head-title#support {
    font-size: 36px;
    padding-top: 40px;
  }
  .container {
    .inner {
      .head-title {
        background: no-repeat center top / 100% auto;
      }
      .support-list {
        > li {
          display: grid;
          grid-template-rows: subgrid;
          grid-row: span 4;
          .support-midashibox {
            .support-midashi {
              font-size: 18px;
              gap: 4px;
            }
          }
          .support-items {
            grid-template-columns: auto;
            gap: 0;
            .support-img {
              width: 80%;
              margin: auto;
            }
            .support-txt {
              &::after {
                position: absolute;
                top: auto;
                right: 60px;
                bottom: -30px;
              }
            }
          }
        }
      }
      .map-wrapper {
        .map-content {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          grid-template-rows: auto;
          align-items: center;
          gap: 16px;
          .map-img02 {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
          }
          .map-img03 {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
          }
        }
      }
    }
  }
}
