@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-black: #01001a;
  --content-color-yellow: #f5cf3f;
  --content-color-khaki: #866800;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(335vw / 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-arrow-down: url(/cmn/icon2/expand_more.svg);
  --content-arrow-up: url(/cmn/icon2/expand_less.svg);
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.is-sp,
.is-tb,
.nopc {
  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;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
#js-ui-static-breadcrumb {
  background: #fff;
}
sup {
  font-size: 10px;
  vertical-align: text-top;
}

/***** MV・ナビ *****/
.title-container {
  width: 100%;
  height: 400px;
  background: url(../img/mv_bg.webp) no-repeat center top / auto;
  .inner {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    .title-logo {
      text-align: center;
    }
  }
}
.nav-wrapper {
  background: var(--content-color-black);
  .inner {
    display: flex;
    gap: 48px;
    height: 100%;
    justify-content: center;
    align-items: center;
    .nav-list {
      display: flex;
      gap: 48px;
      justify-content: center;
      li {
        a {
          display: block;
          padding-block: 16px;
          font-weight: bold;
          text-align: center;
          color: #fff;
          border-bottom: var(--content-border-2);
          border-bottom-color: var(--content-color-black);
          &:hover {
            border-bottom-color: var(--content-color-khaki);
          }
        }
      }
    }
    .display_selected {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 148px;
      height: 36px;
      background: var(--content-color-khaki);
      border-radius: 8px;
      font-size: 14px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      cursor: pointer;
      padding: 8px;
      &::before {
        content: "出発地：";
        display: block;
        font-size: 12px;
        font-weight: normal;
      }
      &::after {
        content: "";
        --webkit--mask: var(--content-arrow-down) var(--bg-img-setting);
        mask: var(--content-arrow-down) var(--bg-img-setting);
        background: #fff;
        width: 20px;
        height: 20px;
        display: block;
      }
    }

    .dep-select-zone {
      display: none;
      width: 148px;
      position: absolute;
      z-index: 50;
      background: #fff;
      .dep-select > li {
        padding: 4px;
        cursor: default;
        display: block;
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
        &:hover,
        .selected {
          background: var(--content-color-khaki);
          color: #fff;
        }
      }
      .close-button {
        display: none;
      }
    }
  }
}

/***** メインコンテンツ *****/
.main-container {
  position: relative;
  padding-top: 40px;
  &::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: url("../img/bg.webp") no-repeat center bottom / cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.container {
  width: 100%;
  padding-bottom: 96px;
  .inner {
    display: grid;
    gap: 40px;
    .head-title {
      font-size: 36px;
      font-weight: bold;
      color: #fff;
      text-align: center;
      > small {
        font-size: 24px;
      }
    }
    .sub-title {
      font-size: 24px;
      font-weight: bold;
      color: #fff;
      text-align: center;
    }
    .leadcopy {
      font-size: 16px;
      color: #fff;
      line-height: 1.8;
      text-align: center;
    }
    .content-wrapper {
      display: grid;
      gap: 40px;
      .is-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: flex-start;
      }
      .img-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr 2fr;
        .content-img:first-child {
          grid-column: 1 / 2;
          grid-row: 1 / 2;
        }
        .content-img:nth-child(2) {
          grid-column: 2 / 3;
          grid-row: 1 / 2;
        }
        .content-img:last-child {
          grid-column: 1 / 3;
          grid-row: 2 / 3;
        }
      }
      .content-item {
        display: grid;
        gap: 16px;
        .content-txt {
          font-size: 16px;
          line-height: 1.5;
          color: #fff;
        }
        .awabito-logo {
          width: 200px;
        }
        .schedule-list {
          display: grid;
          gap: 16px;
          > li {
            display: grid;
            gap: 8px;
            justify-items: flex-start;
            .schedule-time {
              background: var(--content-color-khaki);
              padding: 8px;
              font-weight: bold;
              color: #fff;
            }
            .schedule-txt {
              display: grid;
              gap: 8px;
              font-size: 16px;
              color: #fff;
              line-height: 1.5;
              small {
                font-size: 12px;
              }
              > p {
                font-weight: bold;
                color: var(--content-color-yellow);
                padding-left: 32px;
                position: relative;
                &::before {
                  content: "";
                  background: url(../img/ico_star.svg) var(--bg-img-setting);
                  width: 24px;
                  height: 24px;
                  position: absolute;
                  top: 0;
                  bottom: 0;
                  left: 0;
                  margin: auto;
                }
              }
            }
          }
        }
      }
      .area00 {
        display: none;
        .close-txt {
          color: #fff;
          margin: 0 auto;
        }
        .more-link {
          width: 328px;
          height: 48px;
          margin: 24px auto 0;
          > a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            border-radius: 999px;
            background: var(--content-color-khaki);
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            &::after {
              content: "";
              mask: var(--content-arrow-right) var(--bg-img-setting);
              background: #fff;
              width: 24px;
              height: 24px;
              display: block;
            }
            &:hover {
              background-color: #644900;
            }
          }
        }
      }
      .review-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        > li {
          display: flex;
          gap: 16px;
          align-items: center;
          padding: 16px;
          background: #fff;
          &::before {
            content: "";
            background: url(../img/ico_people.svg) var(--bg-img-setting);
            width: 40px;
            height: 40px;
            display: block;
          }
          .review-txt {
            flex: 1;
            font-size: 16px;
          }
        }
      }
      .caution-list {
        background: #f0f7ff;
        padding: 16px;
        line-height: 1.5;
      }
      #movie-content {
        width: var(--content-width);
        margin: auto;
        position: relative;
        text-align: center;
        height: calc((var(--content-width) * 9) / 16);
        min-height: 100%;
        #loading {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-family: var(--font-sans);
          font-size: 40px;
          font-weight: bold;
          color: #fff;
        }
        #youtube {
          position: absolute;
          top: 0;
          left: 0;
          height: calc((var(--content-width) * 9) / 16);
          min-height: 100%;
          min-width: 100%;
        }
        #youtube-mask {
          position: absolute;
          z-index: 2;
          top: 0;
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}
.container:nth-child(2) {
  .inner {
    gap: 64px;
  }
}
.container.is-footer {
  background: linear-gradient(rgba(1 0 26 / 0%) 0%, rgba(1 0 26 / 100%) 100%);
  .content-wrapper {
    gap: 24px;
  }
}

@media (768px <= width <= 1024px) {
  .nopc {
    display: block;
  }
  .nav-wrapper {
    .inner {
      .nav-list {
        gap: 24px;
      }
    }
  }
  .container {
    .inner {
      .content-wrapper {
        .head-title#tour small {
          display: block;
        }
        .review-list {
          gap: 16px;
          > li {
            padding: 8px;
            gap: 8px;
          }
        }
      }
    }
  }
}
