@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-pc,
.is-tb {
  display: none;
}
.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%;
  padding-bottom: calc(64vw / 3.75);
  background:
    url(../img/mvbg_sp.jpg) no-repeat center top / 100%,
    #fff;
  padding-top: calc(240vw / 3.75);
  .inner {
    width: 100vw;
    display: grid;
    .title-logo {
      margin: auto;
      text-align: center;
    }
  }
  .nav-wrapper {
    background: rgba(77 186 255 / 70%);
    .inner {
      display: grid;
      .nav-list {
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        li > a {
          display: flex;
          height: 100%;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding: calc(8vw / 3.75) 0 calc(24vw / 3.75);
          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: calc(24vw / 3.75);
            height: calc(24vw / 3.75);
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
          }
        }
        li:nth-child(odd) {
          border-right: var(--content-border-1) #fff;
        }
        li:nth-child(-n + 2) {
          border-bottom: var(--content-border-1) #fff;
        }
      }
    }
    .dep-select-nav {
      width: 100vw;
      order: 1;
      .display_selected {
        background: var(--content-color-gold);
        padding: calc(4vw / 3.75);
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: calc(4vw / 3.75);
        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;
          top: 0;
          right: calc(8vw / 3.75);
          bottom: 0;
          margin: auto;
        }
      }

      .dep-select-zone {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: all 0.5s;
        z-index: 100;
        background: rgba(0 0 0 / 80%);
        padding: calc(64vw / 3.75) calc(40vw / 3.75);
        .dep-select {
          display: grid;
          gap: calc(8vw / 3.75);
          > li {
            display: block;
            cursor: default;
            padding: calc(8vw / 3.75);
            font-size: 18px;
            font-weight: bold;
            color: #fff;
            text-align: center;
          }
        }

        .close-button {
          margin: calc(40vw / 3.75) auto;
          width: 5em;
          padding: calc(8vw / 3.75);
          border: var(--content-border-1);
          font-size: 18px;
          font-weight: bold;
          color: #fff;
          text-align: center;
        }
      }
    }
  }
}
.intro-wrapper > .inner {
  width: var(--content-width);
  margin: auto;
  padding-top: calc(40vw / 3.75);
  gap: calc(16vw / 3.75);
  font-family: var(--font-zen);
  text-align: center;
  .catchcopy-sub {
    font-size: 20px;
    color: var(--content-color-gold);
    display: flex;
    justify-content: center;
    gap: calc(8vw / 3.75);
    &::before,
    &::after {
      content: "/";
      display: block;
    }
    &::before {
      transform: scaleX(-1);
    }
  }
  .catchcopy-main {
    font-size: 24px;
  }
  .leadcopy {
    display: grid;
    gap: calc(8vw / 3.75);
    line-height: 1.5;
    .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 / 1000px,
      #86e1ff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.container {
  width: 100%;
  padding-top: calc(64vw / 3.75);
  .inner {
    display: grid;
    gap: calc(24vw / 3.75);
    .head-title {
      width: 100vw;
      margin: 0 calc(50% - 50vw);
      padding-top: calc(16vw / 3.75);
      background: no-repeat center top / 100%;
      font-family: var(--font-zen);
      font-size: 30px;
      text-align: center;
      line-height: 1.2;
      .title-sub {
        display: block;
        font-size: 18px;
        color: var(--content-color-gold);
      }
      &#support {
        background-image: url(../img/bg_support.png);
        padding-top: calc(24vw / 3.75);
      }
      &#tour {
        background-image: url(../img/bg_tour.png);
      }
      &#location {
        background-image: url(../img/bg_info.png);
      }
    }
    /*** サポート ***/
    .support-list {
      display: grid;
      gap: calc(40vw / 3.75);
      align-items: flex-start;
      > li {
        display: grid;
        gap: calc(16vw / 3.75);
        .support-midashibox {
          display: flex;
          gap: calc(8vw / 3.75);
          &::before {
            content: "";
            background: var(--bg-img-setting);
            width: calc(40vw / 3.75);
            height: calc(40vw / 3.75);
            display: block;
          }
          .support-midashi {
            flex: 1;
            font-size: 18px;
            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: 1fr 36vw;
          gap: calc(8vw / 3.75);
          align-items: flex-start;
          .support-txt {
            background: #fff;
            border-radius: 20px;
            border: var(--content-border-2) var(--content-color-gold);
            padding: calc(12vw / 3.75) calc(8vw / 3.75);
            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: calc(28vw / 3.75);
              height: calc(28vw / 3.75);
              position: absolute;
              top: calc(30vw / 3.75);
              right: calc(-20vw / 3.75);
            }
          }
        }
        .according-area {
          display: none;
          .caution-wrapper {
            background: rgba(255 255 255 / 70%);
            padding: calc(8vw / 3.75);
            display: grid;
            gap: calc(4vw / 3.75);
            line-height: calc(21 / 14);
            .use-terms {
              font-weight: bold;
              color: var(--content-color-red);
            }
            .use-condition {
              display: grid;
              gap: calc(4vw / 3.75);
              > li {
                font-weight: bold;
              }
            }
          }
        }
        .accordion-button {
          width: calc(200vw / 3.75);
          margin: auto;
          border-radius: 32px;
          border: var(--content-border-1) #939dad;
          background: #fff;
          padding: calc(8vw / 3.75);
          text-align: center;
          cursor: pointer;
          > span {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: calc(4vw / 3.75);
            &::before {
              content: "";
              background: var(--bg-img-setting);
              background-image: url(../img/ico_open.svg);
              width: calc(12vw / 3.75);
              height: calc(12vw / 3.75);
              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;
      gap: calc(24vw / 3.75);
      > li {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        gap: 0 calc(8vw / 3.75);
        .location-item {
          display: grid;
          gap: calc(8vw / 3.75);
          .location-name {
            width: 100%;
            margin: auto;
            border: var(--content-border-2);
            border-radius: 24px;
            background: #fff;
            padding: calc(8vw / 3.75);
            font-size: 18px;
            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: calc(18vw / 3.75);
              height: calc(26vw / 3.75);
              position: absolute;
              bottom: calc(-20vw / 3.75);
              right: calc(40vw / 3.75);
            }
          }
          .location-img {
            border: var(--content-border-2) var(--content-color-blue);
          }
        }

        .location-data {
          display: grid;
          gap: calc(4vw / 3.75);
          .location-address {
            font-weight: bold;
            display: grid;
            grid-template-columns: calc(12vw / 3.75) 1fr;
            gap: calc(4vw / 3.75);
            align-items: flex-start;
            &::before {
              content: "";
              background: url(../img/ico_pin.svg) var(--bg-img-setting);
              width: 100%;
              height: calc(18vw / 3.75);
              display: block;
            }
          }
          .location-txt {
            line-height: 1.5;
          }
        }
      }
    }
    .map-wrapper {
      background: #fff;
      padding: calc(32vw / 3.75) calc(16vw / 3.75) calc(16vw / 3.75);
      position: relative;
      &::before {
        content: "";
        background: url(../img/badge_map.png) var(--bg-img-setting);
        width: calc(139vw / 3.75);
        height: calc(35vw / 3.75);
        position: absolute;
        top: calc(-17.5vw / 3.75);
        right: 0;
        left: 0;
        margin: auto;
      }
      .map-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: calc(16vw / 3.75);
        align-items: center;
        .map-img01,
        .map-img02,
        .map-img03 {
          text-align: center;
        }
        .map-img01 {
          grid-column: 1 / 2;
          grid-row: 1 / 2;
        }
        .map-img02 {
          grid-column: 1 / 3;
          grid-row: 2 / 3;
        }
        .map-img03 {
          grid-column: 2 / 3;
          grid-row: 1 / 2;
        }
      }
    }
    /*** FAQ ***/
    .faq-wrapper {
      background: #fff;
      padding: calc(32vw / 3.75) calc(16vw / 3.75) calc(16vw / 3.75);
      position: relative;
      &::before {
        content: "";
        background: url(../img/badge_faq.png) var(--bg-img-setting);
        width: calc(139vw / 3.75);
        height: calc(35vw / 3.75);
        position: absolute;
        top: calc(-17.5vw / 3.75);
        right: 0;
        left: 0;
        margin: auto;
      }
      .faq-list {
        display: grid;
        gap: calc(16vw / 3.75);
        > li {
          display: flex;
          gap: calc(4vw / 3.75);
          align-items: flex-start;
          &::before {
            content: "";
            background: var(--bg-img-setting) url(../img/ico_q.svg);
            width: calc(20vw / 3.75);
            height: calc(15vw / 3.75);
            display: block;
            flex-shrink: 0;
          }
          .faq-content {
            flex: 1;
            display: grid;
            gap: calc(8vw / 3.75);
            .q-txt {
              font-size: 16px;
              font-weight: bold;
              color: #0063b0;
              line-height: 1;
            }
            .a-txt {
              line-height: 1.5;
            }
          }
        }
      }
    }
    .bnr-wrapper {
      display: grid;
      gap: calc(16vw / 3.75);
      .sub-title {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
      }
      .bnr-list {
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(8vw / 3.75);
        > li {
          width: 100%;
        }
      }
    }
  }
}
.container.tour .inner {
  display: flex;
  flex-direction: column;
}
.container:last-child {
  padding-bottom: calc(64vw / 3.75);
  .inner {
    gap: calc(40vw / 3.75);
  }
}
