@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-link: #3064d5;
  --content-color-blue: #2468f0;
  --content-color-green: #008b99;
  --content-color-ocean: #bccff9;
  --content-color-red: #e8144a;
  --content-color-violet: #9c4ed6;
  --content-color-violet200: #d8aaee;
  --content-color-khaki: #604c00;
  --content-color-gold: #8a6e00;
  --content-color-yellow: #f5c800;
  --content-color-cream: #fff48f;
  --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;
  --content-hover-speed: 0.3s;
  --content-open-new: url(/cmn/icon2/open_in_new.svg);
  --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,
.nosp {
  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: var(--content-color-base) !important;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
#js-ui-static-breadcrumb {
  background: #fff;
}

/***** MV・ナビ *****/
.title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-wrapper {
  background: #fff;
  .inner {
    padding-block: calc(12vw / 3.75);
    display: flex;
    flex-direction: column;
    gap: calc(8vw / 3.75);
    .nav-list {
      order: 2;
      display: flex;
      gap: calc(4vw / 3.75);
      li {
        a {
          display: block;
          padding: 12px;
          font-size: 16px;
          font-weight: bold;
          text-align: center;
          color: var(--content-color-khaki);
          border-bottom: var(--content-border-4);
          border-bottom-color: #fff;
          &:hover {
            border-bottom-color: var(--content-color-blue);
          }
        }
      }
    }
    .dep-select-nav {
      order: 1;
      .display_selected {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        background: var(--content-color-blue);
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #fff;
        cursor: pointer;
        position: relative;
        &::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(20vw / 3.75);
          height: calc(20vw / 3.75);
          position: absolute;
          top: 0;
          right: calc(12vw / 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(64vw / 3.75);
  &::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: url("../img/bg_sand.webp") no-repeat center bottom / cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.container {
  width: 100%;
  .title-box {
    margin: auto;
    display: grid;
    gap: calc(12vw / 3.75);
    justify-items: center;
    text-align: center;
    font-weight: 900;
    color: var(--content-color-khaki);
    .title-sub {
      display: inline;
      padding: 0 calc(4vw / 3.75) calc(4vw / 3.75);
      background: linear-gradient(transparent 50%, var(--content-color-cream) 50%);
      > span {
        font-size: 16px;
      }
    }
    .head-title {
      font-size: 28px;
    }
  }
  .sub-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
    > .note-txt {
      color: #fff !important;
      margin-top: 8px;
    }
  }
  .txt-link {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    &::after {
      content: "";
      mask: var(--content-open-new) var(--bg-img-setting);
      background: var(--content-color-link);
      width: calc(16vw / 3.75);
      height: calc(16vw / 3.75);
      display: block;
    }
    > a {
      font-weight: bold;
      color: var(--content-color-link);
      text-decoration: underline;
    }
  }
  .img-caption {
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: rgba(0 0 0 / 50%);
    padding: 0 2px 2px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .link-list {
    margin: calc(24vw / 3.75) auto 0;
    display: grid;
    gap: calc(16vw / 3.75);
  }
  .link-button {
    width: 100%;
    > a {
      display: flex;
      gap: calc(4vw / 3.75);
      justify-content: center;
      align-items: center;
      border-radius: 999px;
      background: var(--content-color-khaki);
      padding: calc(12vw / 3.75) 0;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
      &::before {
        content: "";
        mask: var(--bg-img-setting);
        background: #fff;
        width: calc(24vw / 3.75);
        height: calc(24vw / 3.75);
        display: block;
      }
      &:hover {
        background: var(--content-color-gold);
      }
    }
  }
  > .link-button:empty {
    display: none;
  }

  .link-button.tour > a::before {
    mask-image: url(/cmn/icon2/trip.svg);
  }
  .link-button.hotel > a::before {
    mask-image: url(/cmn/icon2/hotel_building.svg);
  }
  .link-button.bus > a::before {
    mask-image: url(/cmn/icon2/Directions_bus.svg);
  }
  .link-button.coupon > a::before {
    mask-image: url(/cmn/icon2/local_activity.svg);
  }
  .link-button.dp > a::before {
    mask-image: url(/cmn/icon2/pack.svg);
  }
  .area-select-tab {
    width: var(--content-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16vw / 3.75);
  }
  .area-select-tab > li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px 8px 0 0;
    background: var(--content-color-khaki);
    padding: calc(20vw / 3.75) calc(4vw / 3.75);
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    &.is-current,
    &:hover {
      background: var(--content-color-blue);
    }
  }
  .area-select-wrapper {
    background:
      url("../img/bg_resort_btm.webp") no-repeat center bottom / 100%,
      var(--content-color-blue);
    padding: calc(48vw / 3.75) 0;
    position: relative;
  }
  .select-content {
    display: none;
  }
  .select-content.is-active {
    display: block;
  }
  .tokuten-wrapper {
    .inner {
      display: flex;
      flex-direction: column;
      gap: calc(48vw / 3.75);
      .tokuten-box {
        background: var(--content-color-cream);
        padding: calc(20vw / 3.75);
        display: grid;
        gap: calc(20vw / 3.75);
        .tokuten-title {
          font-size: 18px;
          font-weight: 900;
          color: var(--content-color-khaki);
          text-align: center;
        }
        .tokuten-list {
          display: grid;
          gap: calc(16vw / 3.75);
          > li {
            background: #fff;
            padding: calc(12vw / 3.75);
            display: grid;
            gap: calc(4vw / 3.75);
            text-align: center;
            .tokuten-copy {
              background: var(--content-color-gold);
              font-size: 16px;
              font-weight: bold;
              color: #fff;
              padding: 0 calc(4vw / 3.75);
              line-height: 1.5;
            }
          }
        }
        .tokuten-txt {
          display: grid;
          gap: calc(4vw / 3.75);
          font-size: 16px;
          font-weight: 900;
          color: var(--content-color-red);
        }
        .cxl-support-box {
          display: grid;
          gap: 16px;
          .cxl-support-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            > li {
              width: min(100%, 367px);
              display: grid;
              gap: 8px;
              align-items: flex-start;
              grid-template-columns: 130px 1fr;
              .support-img {
                border: var(--content-border-2) var(--content-color-red);
                border-radius: 16px;
                overflow: hidden;
                .tokuten-caption {
                  display: inline-block;
                  width: 100%;
                  background: var(--content-color-red);
                  padding-block: calc(4vw / 3.75);
                  font-size: 16px;
                  font-weight: 900;
                  color: #fff;
                  text-align: center;
                }
              }
              > .support-item {
                display: grid;
                gap: 4px;
                .tokuten-txt {
                  padding-left: 1em;
                  text-indent: -1em;
                }
                .tokuten-sub-txt {
                  font-size: 12px;
                }
              }
            }
          }
        }
      }

      .is-rentcar {
        position: relative;
        &::before {
          content: "";
          background: var(--bg-img-setting) url(../img/catch_rentacar.svg);
          width: calc(139vw / 3.75);
          height: calc(55vw / 3.75);
          position: absolute;
          top: calc(-30vw / 3.75);
          right: 0;
          left: 0;
          margin: auto;
          transform: rotate(-5deg);
        }
        .tokuten-title {
          color: var(--content-color-green);
        }
        .tokuten-list > li {
          gap: calc(4vw / 3.75);
          .rentcar-item {
            display: contents;
            .tokuten-copy {
              text-align: center;
              line-height: 1.3;
            }
            .rentcar-class {
              font-size: 16px;
              font-weight: 900;
              color: var(--content-color-green);
            }
          }
          .rentcar-img {
            width: calc(133vw / 3.75);
            margin: auto;
            .tokuten-caption {
              background: var(--content-color-green);
              padding-block: calc(2vw / 3.75);
              font-size: 16px;
              font-weight: 900;
              color: #fff;
              text-align: center;
            }
          }
        }
      }
      .is-family {
        background:
          url(../img/bg_catch-both.webp) center top / 100%,
          var(--content-color-cream);
        position: relative;
        &::before {
          content: "";
          background: url(../img/catch_family.svg) var(--bg-img-setting);
          width: calc(222vw / 3.75);
          height: calc(47vw / 3.75);
          position: absolute;
          top: calc(-24vw / 3.75);
          right: 0;
          left: 0;
          margin: auto;
          transform: rotate(-5deg);
        }
        .tokuten-title.main {
          font-size: 32px;
          font-weight: 900;
          color: var(--content-color-red);
          line-height: 1.5;
        }
        .tokuten-list {
          > li {
            gap: calc(8vw / 3.75);
            .family-copy {
              background: #fce4ec;
              padding: calc(2vw / 3.75);
              font-size: 16px;
              font-weight: 900;
              color: var(--content-color-khaki);
              text-align: center;
            }
            .family-title-box {
              display: grid;
              gap: 0 calc(4vw / 3.75);
              grid-template-columns: calc(100vw / 3.75) 1fr;
              grid-template-rows: auto;
              align-items: flex-start;
              .tokuten-txt {
                font-size: 20px;
                font-weight: 900;
                display: block;
                text-align: left;
                .tokuten-txt-sub {
                  text-align: left;
                  font-size: 14px;
                  font-weight: 900;
                  color: var(--content-color-red);
                }
              }
            }
            .family-item {
              display: grid;
              gap: 8px;
              .cxlsupport-link {
                text-align: center;
                font-size: 12px;
                font-weight: bold;
                > a {
                  color: var(--content-color-red);
                  text-decoration: underline;
                }
              }
            }
          }
        }
      }
    }
  }
  .tokuten-wrapper.is-isg .tokuten-box.is-family .tokuten-list > li {
    grid-column: span 6;
    &:nth-child(2) {
      display: none;
    }
  }
  .hotel-wrapper {
    padding-top: 64px;
    display: grid;
    gap: calc(24vw / 3.75);
    > .inner > .sub-title {
      margin-bottom: 16px;
    }
    .hotel-select-tab {
      width: var(--content-width);
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 12px;
      > li {
        background: var(--content-color-khaki);
        border-radius: 8px;
        padding: calc(16vw / 3.75) calc(8vw / 3.75);
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        &.is-select,
        &:hover {
          background: #fff;
          color: var(--content-color-khaki);
          position: relative;
          box-shadow: 0 0 10px rgba(0 0 0 / 45%);
        }
        &.is-select::after {
          content: "";
          background-color: #fff;
          clip-path: polygon(100% 0, 0 0, 50% 100%);
          width: 16px;
          height: 12px;
          position: absolute;
          right: 0;
          bottom: -10px;
          left: 0;
          margin: auto;
        }
      }
    }
    .hotel-content {
      display: none;
    }
    .hotel-content.is-view {
      display: block;
    }
    .upgrade-material {
      width: 100%;
      background: no-repeat center bottom / 100% auto;
      position: relative;
      padding-bottom: 50vw;
      .inner {
        .upgrade-box {
          background:
            url(../img/bg_catch02.webp) no-repeat right top / 50%,
            #fff;
          width: var(--content-width);
          padding: calc(20vw / 3.75);
          display: grid;
          gap: calc(12vw / 3.75);
          text-align: center;
          font-weight: 900;
          box-shadow: 0 0 10px 0 rgba(44 42 41 / 45%);
          margin: auto;
          .upgrade-copy {
            font-size: 16px;
            font-weight: 900;
            color: var(--content-color-khaki);
          }
          .upgrade-midashi {
            font-size: 18px;
            color: var(--content-color-red);
            display: grid;
            gap: calc(4vw / 3.75);
            justify-items: center;
          }
          .upgrade-icon {
            background: var(--content-color-red);
            font-size: 16px;
            color: #fff;
            padding: 0 calc(4vw / 3.75);
          }
          .basic-room {
            font-size: 12px;
            font-weight: normal;
          }
        }
        .hotel-caption {
          font-size: 16px;
          font-weight: bold;
          color: #fff;
          text-align: center;
          background: rgba(0 0 0 / 50%);
          padding: 0 2px 2px;
          position: absolute;
          bottom: -48vw;
          right: 0;
        }
      }
    }
    .upgrade-material.is-alivila {
      background-image: url("../img/photo/htl_oka_alivila_room_ug.webp");
    }
    .upgrade-material.is-monterey {
      background-image: url("../img/photo/htl_oka_monterey_room_ug.webp");
    }
    .upgrade-material.is-oriental {
      background-image: url("../img/photo/htl_oka_oriental_room_ug.webp");
    }
    .upgrade-material.is-haimurubushi {
      background-image: url("../img/photo/htl_isg_haimuru_room_ug.webp");
    }
    .upgrade-material.is-tokyu {
      background-image: url("../img/photo/htl_isg_tokyu_room_ug.webp");
    }
    .upgrade-material.is-hilton {
      background-image: url("../img/photo/htl_isg_hilton_room_ug.webp");
    }
    .hotel-material {
      background:
        url(../img/bg_catch-both.webp) center top / 100%,
        var(--content-color-cream);
      padding-bottom: calc(40vw / 3.75);
      box-shadow: 0 10px 10px 0 rgba(44 42 41 / 30%);
      .inner {
        width: 100vw;
        display: grid;
        gap: 24px;
        .hotel-namebox {
          display: grid;
          .hotel-name {
            background: #fff;
            padding: 16px 8px;
            text-align: center;
            display: grid;
            gap: 8px;
            justify-items: center;
            align-items: flex-start;
          }
          .area-icon {
            background: var(--content-color-gold);
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            padding: 0 4px;
            line-height: 1.5;
          }
          .hotel-name-txt {
            font-size: 24px;
            font-weight: 900;
            color: var(--content-color-khaki);
          }
          .hotel-img {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            > li {
              position: relative;
              > img {
                aspect-ratio: 288 / 162;
              }
            }
          }
        }
        .benefit-box {
          width: var(--content-width);
          margin: auto;
          display: grid;
          gap: calc(24vw / 3.75);
          .early-benefit,
          .long-benefit {
            display: grid;
            gap: calc(16vw / 3.75);
            .benefit-midashi {
              font-size: 18px;
              font-weight: 900;
              color: var(--content-color-khaki);
              text-align: center;
            }
            .benefit-list {
              display: grid;
              gap: 16px;
              > li {
                display: grid;
                gap: calc(4vw / 3.75);
                align-items: center;
                justify-items: center;
                font-weight: 900;
                .benefit-condition {
                  background: var(--content-color-gold);
                  font-size: 18px;
                  color: #fff;
                  text-align: center;
                  padding: calc(2vw / 3.75) calc(16vw / 3.75);
                  line-height: 1.5;
                }
                .benefit-txt {
                  font-size: 24px;
                  font-weight: 900;
                  color: var(--content-color-red);
                  line-height: 1.5;
                  text-align: center;
                }
              }
            }
            > .note-txt {
              text-align: right;
            }
          }

          .long-benefit {
            padding-top: calc(24vw / 3.75);
            position: relative;
            &::before {
              content: "";
              width: 100%;
              height: 1px;
              border-top: 1px dotted var(--content-color-khaki);
              position: absolute;
              top: 0;
              left: 0;
            }
            .benefit-list > li .benefit-txt {
              font-size: 16px;
              > span {
                display: block;
                font-size: 14px;
                font-weight: bold;
                color: var(--content-color-base);
                > .note-txt {
                  font-size: 12px;
                  font-weight: normal;
                }
              }
            }
          }
        }
      }
    }
    .hotel-content.is-haimurubushi {
      .hotel-material {
        .inner {
          .benefit-box {
            .long-benefit {
              > .note-txt {
                display: none;
              }
            }
          }
        }
      }
    }
    .target-hotel-box {
      background: #fff;
      padding: calc(12vw / 3.75);
      font-size: 16px;
      line-height: 1.5;
      .target-hotel-midashi {
        font-weight: bold;
        color: var(--content-color-khaki);
      }
      .target-hotel-list > li .is-red {
        font-weight: 900;
        color: var(--content-color-red);
      }
    }
  }

  .product-wrapper {
    > .inner {
      display: flex;
      flex-direction: column;
      gap: calc(24vw / 3.75);
      .product-select-tab {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(16vw / 3.75);
        margin-bottom: calc(12vw / 3.75);
        > li {
          background: var(--content-color-khaki);
          border-radius: 8px;
          padding: calc(16vw / 3.75) calc(12vw / 3.75);
          font-size: 20px;
          font-weight: bold;
          color: #fff;
          text-align: center;
          cursor: pointer;
          display: flex;
          flex-direction: column;
          justify-content: center;
          > span {
            display: block;
            font-size: 12px;
          }
          &.is-select,
          &:hover {
            background: #fff;
            color: var(--content-color-khaki);
            position: relative;
            box-shadow: 0 0 10px rgba(0 0 0 / 45%);
          }
          &.is-select::after {
            content: "";
            background-color: #fff;
            clip-path: polygon(100% 0, 0 0, 50% 100%);
            width: 16px;
            height: 12px;
            position: absolute;
            right: 0;
            bottom: -10px;
            left: 0;
            margin: auto;
          }
        }
      }
      .product-sele-wrapper {
        .product-content {
          display: none;
        }
        .product-content.is-active {
          display: block;
        }
      }
      .area00 {
        display: none;
        .item-label.hotel::after {
          content: "おすすめ3選で紹介";
          background-color: var(--content-color-red);
          font-size: 11px;
          font-weight: bold;
          color: #fff;
          text-align: center;
          letter-spacing: -0.08em;
        }
        .item-label.bus::after {
          content: "バスツアーがお得";
          background-color: var(--content-color-violet200);
          font-size: 11px;
          color: var(--content-color-base);
          font-weight: bold;
          text-align: center;
          letter-spacing: -0.08em;
        }
        .item-label.coupon::after {
          content: "クーポンがお得";
          background-color: #c5f070;
          font-size: 11px;
          color: var(--content-color-base);
          font-weight: bold;
          text-align: center;
        }
      }
      .close-txt.okaCpn--hotel_close {
        font-size: 18px;
        font-weight: 900;
        color: #fff;
      }
    }
  }

  .discount-content {
    display: grid;
    gap: calc(16vw / 3.75);
    background:
      url(../img/bg_catch01.webp) no-repeat left top / 50% auto,
      #fff;
    padding: calc(20vw / 3.75);
    .discount-title {
      font-size: 18px;
      font-weight: 900;
      color: var(--content-color-red);
      text-align: center;
      > small {
        display: block;
        font-size: 16px;
        font-weight: bold;
        color: var(--content-color-khaki);
      }
    }
    .coupon-list {
      display: grid;
      gap: calc(16vw / 3.75);
      > li {
        display: grid;
        gap: calc(4vw / 3.75);
        background: var(--content-color-cream);
        padding: calc(8vw / 3.75);
        border-radius: 2px;
        text-align: center;
        .coupon-title-box {
          display: grid;
          gap: calc(4vw / 3.75);
          font-weight: 900;
          .coupon-catch {
            font-size: 14px;
            color: var(--content-color-khaki);
          }
          .coupon-discount {
            font-size: 18px;
            color: var(--content-color-red);
          }
        }
        .code-list {
          display: grid;
          gap: calc(12vw / 3.75);
          align-items: flex-start;
          > li {
            display: grid;
            gap: calc(8vw / 3.75);
            .coupon-condition {
              font-weight: bold;
            }
            .code-txt {
              background: #fff;
              padding: calc(4vw / 3.75);
              font-size: 16px;
              font-weight: bold;
              color: var(--content-color-khaki);
              text-align: center;
              display: flex;
              gap: calc(8vw / 3.75);
              justify-content: center;
              align-items: center;
              &::after {
                content: "";
                mask: url(/cmn/icon2/content_copy.svg) var(--bg-img-setting);
                background: var(--content-color-khaki);
                width: calc(16vw / 3.75);
                height: calc(16vw / 3.75);
                display: block;
              }
            }
            .msgBoard {
              display: none;
              font-size: 12px;
              font-weight: bold;
              color: var(--content-color-khaki);
            }
          }
        }
      }
    }
    > .note-txt {
      font-weight: bold;
    }
    .coupon-list.is-one {
      grid-template-columns: auto;
    }
  }
  .happy-box {
    border-top: var(--content-color-khaki) 1px dotted;
    padding-top: calc(12vw / 3.75);
    display: grid;
    gap: calc(8vw / 3.75);
    justify-items: center;
    .link-button {
      width: auto;
      > a {
        gap: calc(8vw / 3.75);
        align-items: center;
        padding: calc(4vw / 3.75) calc(20vw / 3.75) calc(4vw / 3.75) calc(32vw / 3.75);
        font-size: 12px;
        &::before {
          content: none;
        }
        &::after {
          content: "";
          mask: var(--bg-img-setting) var(--content-arrow-right);
          background: #fff;
          width: calc(24vw / 3.75);
          height: calc(24vw / 3.75);
          display: block;
        }
      }
    }
  }
}
.container.resort {
  .title-box {
    padding-bottom: calc(48vw / 3.75);
  }
  .product-wrapper {
    padding-top: 64px;
  }
  .discount-content {
    margin-bottom: 40px;
  }
}

/* DP */
.container.dp {
  background:
    url(../img/bg_dp_top.webp) no-repeat center top / 100%,
    var(--content-color-green);
  padding-block: calc(64vw / 3.75);
  > .inner {
    display: grid;
    gap: calc(48vw / 3.75);
    .title-box {
      display: block;
      padding-bottom: 0;
      .title-sub {
        background: linear-gradient(transparent 50%, var(--content-color-ocean) 50%);
      }
      .head-title {
        padding-block: calc(12vw / 3.75);
      }
      .bodycopy {
        font-size: 16px;
        font-weight: normal;
        color: var(--content-color-base);
      }
    }
    .dp-content {
      display: grid;
      gap: calc(32vw / 3.75);
      .dp-title {
        font-size: 28px;
        font-weight: 900;
        color: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        &::before {
          content: "";
          background: url(../img/catch_dp.svg) var(--bg-img-setting);
          width: calc(196vw / 3.75);
          height: calc(72vw / 3.75);
          transform: rotate(-5deg);
          display: block;
        }
      }
      .dp-point-list {
        display: grid;
        gap: calc(16vw / 3.75);
        align-items: flex-start;
        > li {
          background: #fff;
          padding: calc(12vw / 3.75);
          display: grid;
          gap: calc(12vw / 3.75);
          .dp-midashi {
            display: flex;
            gap: calc(4vw / 3.75);
            align-items: center;
            .midashi-num {
              width: calc(60vw / 3.75);
            }
            .midashi-txt {
              flex: 1;
              font-size: 16px;
              font-weight: 900;
              color: var(--content-color-khaki);
            }
          }
          .dp-txt .underline-txt {
            font-weight: bold;
            background: linear-gradient(transparent 10%, var(--content-color-ocean) 10%);
            line-height: 1.5;
          }
        }
      }
    }
  }
}

/* 旅ナカ */
.container.trip {
  background:
    url(../img/bg_bus_btm.webp) no-repeat center bottom / 100%,
    var(--content-color-blue);
  padding-block: calc(64vw / 3.75);
  > .inner {
    display: grid;
    gap: calc(48vw / 3.75);
    .title-box {
      color: #fff;
      .title-sub {
        background: linear-gradient(transparent 50%, var(--content-color-violet) 50%);
      }
    }
    .special-price-box {
      display: grid;
      gap: calc(4vw / 3.75);
    }
    .special-price {
      display: grid;
      align-items: center;
      justify-items: center;
      font-weight: 900;
      .price-icon {
        background: var(--content-color-red);
        font-size: 16px;
        color: #fff;
        text-align: center;
        padding: 0 calc(4vw / 3.75);
      }
      .special-price-txt {
        font-size: 14px;
        color: var(--content-color-red);
        > em {
          font-size: 24px;
        }
      }
    }
    .special-basic {
      font-size: 12px;
    }
    .bus-content {
      display: grid;
      gap: calc(48vw / 3.75);
      .bus-tokuten-box {
        background:
          url(../img/bg_catch01.webp) no-repeat left top / 50% auto,
          #fff;
        padding: calc(20vw / 3.75);
        text-align: center;
        display: grid;
        gap: calc(12vw / 3.75);
        .bus-tokuten-title {
          display: grid;
          gap: calc(4vw / 3.75);
          font-size: 24px;
          font-weight: 900;
          color: var(--content-color-violet);
          .bus-tokuten-catch {
            font-size: 16px;
            color: var(--content-color-khaki);
          }
        }
        .bus-tokuten-item {
          display: grid;
          gap: calc(4vw / 3.75);
          .bus-tokuten-txt {
            font-weight: bold;
            line-height: 1.5;
          }
        }
      }
      .bus-list {
        display: grid;
        gap: calc(32vw / 3.75);
        > li {
          display: grid;
          gap: calc(12vw / 3.75);
          .bus-course-box {
            background: #fff;
            display: grid;
            .bus-course-img {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              > li {
                position: relative;
                > img {
                  aspect-ratio: 224 / 150;
                  height: 100%;
                }
              }
            }
            .bus-course-item {
              padding: calc(12vw / 3.75);
              display: grid;
              gap: calc(4vw / 3.75);
            }
          }
        }
      }
      .churabus-box {
        display: grid;
        gap: calc(12vw / 3.75);
      }
      .course-title-area {
        display: grid;
        gap: calc(4vw / 3.75);
        font-weight: bold;
        .course-title {
          display: grid;
          grid-template-columns: calc(64vw / 3.75) 1fr;
          gap: calc(8vw / 3.75);
        }
        .menu-icon {
          background: var(--content-color-violet200);
          font-size: 16px;
          font-weight: 900;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        .course-midashi {
          display: grid;
          .course-midashi-txt {
            font-size: 24px;
            font-weight: 900;
            color: var(--content-color-khaki);
          }
        }
        .course-basic {
          font-size: 12px;
        }
      }
      .course-txt-area {
        .course-txt > .underline-txt {
          font-weight: bold;
          background: linear-gradient(transparent 10%, var(--content-color-violet200) 10%);
          line-height: 1.5;
        }
      }
      .details-link {
        text-align: right;
        > a {
          font-weight: bold;
          text-decoration: underline;
          line-height: 1.5;
          color: #fff;
          &::after {
            content: "＞";
            display: inline-block;
          }
          &:hover {
            opacity: 0.7;
          }
        }
      }
    }
    .special-content {
      background: #fff;
      padding: calc(12vw / 3.75);
      display: flex;
      flex-direction: column;
      gap: calc(12vw / 3.75);
      .special-img {
        width: 100%;
        position: relative;
      }
      .special-item {
        flex: 1;
        display: grid;
        gap: 16px;
        .special-title-area {
          display: grid;
          gap: calc(12vw / 3.75);
          font-weight: bold;
          .special-title {
            display: grid;
            grid-template-columns: calc(48vw / 3.75) 1fr;
            gap: calc(8vw / 3.75);
            .menu-icon {
              background: var(--content-color-violet200);
              font-size: 16px;
              font-weight: 900;
              display: flex;
              justify-content: center;
              align-items: center;
            }
            .special-midashi {
              display: grid;
              .special-midashi-txt {
                font-size: 24px;
                font-weight: 900;
                color: var(--content-color-khaki);
              }
            }
          }
          .special-price-box {
            display: grid;
            .special-price {
              justify-items: flex-start;
            }
          }
        }
        .special-txt > .underline-txt {
          font-weight: bold;
          background: linear-gradient(transparent 10%, var(--content-color-violet200) 10%);
          line-height: 1.5;
        }
      }
    }
    .special-content.is-lealea {
      position: relative;
      &::after {
        content: "";
        background: url(../img/catch_ecoupon.svg) var(--bg-img-setting);
        width: calc(196vw / 3.75);
        height: calc(72vw / 3.75);
        position: absolute;
        top: calc(-24vw / 3.75);
        right: 0;
        left: 0;
        margin: auto;
        transform: rotate(-5deg);
      }
      .special-item > .special-title-area > .special-title {
        grid-template-columns: calc(80vw / 3.75) 1fr;
        .menu-icon {
          background: #c5f070;
          padding: 2px 8px;
        }
      }
      .special-txt > .underline-txt {
        background: linear-gradient(transparent 10%, #c5f070 10%);
      }
      .txt-link {
        justify-content: right;
      }
    }
  }
}

.container.foot {
  padding-block: calc(64vw / 3.75);
  .bnr-list {
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(12vw / 3.75);
    > li {
      width: 100%;
    }
  }
}

.container.search {
  padding-block: calc(64vw / 3.75);
  background: url("../img/bg_search.webp") no-repeat center / cover;
  .inner {
    width: 100vw;
  }
}
