@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-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;
  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: 300px;
  background: url(../img/mv_bg.webp) no-repeat center top / auto 300px;
  .inner {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    .title-logo {
      text-align: center;
    }
  }
}
.nav-wrapper {
  background: var(--content-color-black);
  .inner {
    width: 100vw;
    display: grid;
    .nav-list {
      order: 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      li {
        a {
          display: block;
          padding: calc(16vw / 3.75) calc(8vw / 3.75);
          font-weight: bold;
          text-align: center;
          color: #fff;
        }
      }
    }
    .dep-select-nav {
      width: 100vw;
      order: 1;
      .display_selected {
        background: var(--content-color-khaki);
        padding-block: calc(16vw / 3.75);
        font-weight: bold;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(4vw / 3.75);
        text-align: center;
        position: relative;
        cursor: pointer;
        &::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: calc(24vw / 3.75);
          height: calc(24vw / 3.75);
          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;
            &.selected {
              background: #fff;
              color: var(--content-color-black);
            }
          }
        }
        .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;
        }
      }
    }
  }
}

/***** メインコンテンツ *****/
.main-container {
  position: relative;
  padding-top: calc(40vw / 3.75);
  &::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: calc(96vw / 3.75);
  .inner {
    display: grid;
    gap: calc(24vw / 3.75);
    .head-title {
      font-size: 28px;
      font-weight: bold;
      color: #fff;
      text-align: center;
      > small {
        display: block;
        font-size: 20px;
      }
    }
    .sub-title {
      font-size: 20px;
      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: calc(24vw / 3.75);
      .is-grid {
        display: grid;
        gap: calc(12vw / 3.75);
        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: calc(160vw / 3.75);
        }
        .schedule-list {
          display: grid;
          gap: calc(16vw / 3.75);
          > li {
            display: grid;
            gap: calc(8vw / 3.75);
            justify-items: flex-start;
            .schedule-time {
              background: var(--content-color-khaki);
              padding: calc(8vw / 3.75);
              font-weight: bold;
              color: #fff;
            }
            .schedule-txt {
              display: grid;
              gap: calc(8vw / 3.75);
              font-size: 16px;
              color: #fff;
              line-height: 1.5;
              small {
                font-size: 12px;
              }
              > p {
                font-weight: bold;
                color: var(--content-color-yellow);
                padding-left: calc(32vw / 3.75);
                position: relative;
                &::before {
                  content: "";
                  background: url(../img/ico_star.svg) var(--bg-img-setting);
                  width: calc(24vw / 3.75);
                  height: calc(24vw / 3.75);
                  position: absolute;
                  top: 0;
                  bottom: 0;
                  left: 0;
                  margin: auto;
                }
              }
            }
          }
        }
      }
      .area00 {
        display: none;
        .close-txt {
          color: #fff;
          margin: 0 auto;
        }
        .more-link {
          width: 100%;
          height: 48px;
          margin: calc(24vw / 3.75) 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: calc(24vw / 3.75);
              height: calc(24vw / 3.75);
              display: block;
            }
            &:hover {
              background-color: #644900;
            }
          }
        }
      }
      .review-list {
        display: grid;
        gap: calc(16vw / 3.75);
        > li {
          display: flex;
          gap: calc(16vw / 3.75);
          align-items: center;
          padding: calc(16vw / 3.75);
          background: #fff;
          &::before {
            content: "";
            background: url(../img/ico_people.svg) var(--bg-img-setting);
            width: calc(40vw / 3.75);
            height: calc(40vw / 3.75);
            display: block;
          }
          .review-txt {
            flex: 1;
            font-size: 16px;
          }
        }
      }
      .caution-list {
        background: #f0f7ff;
        padding: calc(16vw / 3.75);
        line-height: 1.5;
      }
      #movie-content {
        position: relative;
        text-align: center;
        width: 100%;
        height: 56.25vw;
        min-height: 100%;
        background: #000;
        #loading {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: calc(40vw / 7.5);
          font-family: var(--font-sans);
          font-weight: bold;
          color: #fff;
        }
        #youtube {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
          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: calc(16vw / 3.75);
  }
}
