@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-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: 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%;
  height: 525px;
  background: url("../img/bgmv.webp") no-repeat center top / cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-wrapper {
  background: #fff;
  .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: 16px;
          font-size: 20px;
          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);
          }
        }
      }
    }
    .display_selected {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 180px;
      height: 36px;
      background: var(--content-color-blue);
      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: 180px;
      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-blue);
          color: #fff;
        }
      }
      .close-button {
        display: none;
      }
    }
  }
}

@media (769px <= width <= 1103px) {
  .is-pc {
    display: none;
  }
  .is-tb {
    display: block;
  }
  .nav-wrapper .inner {
    width: 100vw;
    display: flex;
    gap: 24px;
    .nav-list {
      gap: 24px;
      li {
        a {
          font-size: 16px;
        }
      }
    }
  }
}

/***** メインコンテンツ *****/
.main-container {
  position: relative;
  padding-top: 96px;
  &::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 {
    width: var(--content-width);
    margin: auto;
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
    font-weight: 900;
    color: var(--content-color-khaki);
    .title-sub {
      display: inline;
      padding: 0 8px 8px;
      background: linear-gradient(transparent 50%, var(--content-color-cream) 50%);
      font-size: 26px;
    }
    .head-title {
      font-size: 40px;
    }
  }
  .sub-title {
    font-size: 36px;
    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: 24px;
      height: 24px;
      display: block;
    }
    > a {
      font-size: 16px;
      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: 24px auto 0;
    display: flex;
    gap: 24px;
    justify-content: center;
  }
  .link-button {
    width: min(100%, 520px);
    > a {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      border-radius: 999px;
      background: var(--content-color-khaki);
      padding: 16px 40px 16px 32px;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      &::before {
        content: "";
        mask: var(--bg-img-setting);
        background: #fff;
        width: 24px;
        height: 24px;
        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: 16px;
  }
  .area-select-tab > li {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px 8px 0 0;
    background: var(--content-color-khaki);
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    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: 96px 0;
    position: relative;
  }
  .select-content {
    display: none;
  }
  .select-content.is-active {
    display: block;
  }
  .tokuten-wrapper {
    .inner {
      display: grid;
      gap: 64px;
      .tokuten-box {
        background: var(--content-color-cream);
        padding: 24px;
        display: grid;
        gap: 24px;
        .tokuten-title {
          font-size: 26px;
          font-weight: 900;
          color: var(--content-color-khaki);
          text-align: center;
        }
        .tokuten-list {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          gap: 16px;
          > li {
            background: #fff;
            padding: 16px;
            display: grid;
            gap: 8px;
            text-align: center;
            .tokuten-copy {
              background: var(--content-color-gold);
              font-size: 16px;
              font-weight: bold;
              color: #fff;
              padding: 0 4px;
              line-height: 1.5;
            }
          }
        }
        .tokuten-txt {
          display: grid;
          gap: 4px;
          font-size: 20px;
          font-weight: 900;
          color: var(--content-color-red);
        }
        .cxl-support-box {
          display: grid;
          gap: 16px;
          .cxl-support-list {
            display: flex;
            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: 4px;
                  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: 16px;
                  line-height: 1.5;
                }
              }
            }
          }
        }
      }
      .is-resort .tokuten-list > li {
        grid-template-rows: subgrid;
        grid-row: span 3;
        grid-column: span 3;
      }
      .is-rentcar {
        position: relative;
        &::before {
          content: "";
          background: var(--bg-img-setting) url(../img/catch_rentacar.svg);
          width: 176px;
          height: 72px;
          position: absolute;
          top: -30px;
          left: 142px;
          transform: rotate(-5deg);
        }
        .tokuten-title {
          color: var(--content-color-green);
        }
        .tokuten-list > li {
          grid-column: span 6;
          grid-template-columns: 1fr 133px;
          gap: 16px;
          align-items: flex-start;
          .rentcar-item {
            display: grid;
            gap: 8px;
            text-align: left;
            .tokuten-copy {
              text-align: center;
            }
            .rentcar-class {
              font-size: 16px;
              font-weight: 900;
              color: var(--content-color-green);
            }
          }
          .tokuten-caption {
            background: var(--content-color-green);
            padding-block: 4px;
            font-size: 16px;
            font-weight: 900;
            color: #fff;
            text-align: center;
          }
        }
        > .note-list {
          text-align: right;
        }
      }
      .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: 318px;
          height: 67px;
          position: absolute;
          top: -36px;
          left: 122px;
          transform: rotate(-5deg);
        }
        .tokuten-title.main {
          font-size: 40px;
          font-weight: 900;
          color: var(--content-color-red);
        }
        .tokuten-list {
          align-items: flex-start;
          > li {
            grid-column: span 4;
            grid-template-rows: subgrid;
            grid-row: span 3;
            .family-copy {
              background: #fce4ec;
              padding: 4px;
              font-size: 16px;
              font-weight: 900;
              color: var(--content-color-khaki);
              text-align: center;
            }
            .family-title-box {
              display: grid;
              gap: 0 8px;
              grid-template-columns: 100px 1fr;
              align-items: flex-start;
              .tokuten-txt {
                font-size: 24px;
                font-weight: 900;
                display: block;
                text-align: left;
                .tokuten-txt-sub {
                  display: block;
                  text-align: left;
                  font-size: 16px;
                  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: 40px;
    > .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: 16px 8px;
        font-size: 20px;
        font-weight: 900;
        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%;
      aspect-ratio: 1920 / 1080;
      background: no-repeat center 24px / cover;
      .inner {
        position: relative;
        height: 100%;
        .upgrade-box {
          width: 357px;
          background:
            url(../img/bg_catch02.webp) no-repeat right top / 50%,
            #fff;
          padding: 24px;
          display: grid;
          gap: 16px;
          text-align: center;
          font-weight: 900;
          box-shadow: 0 0 10px 0 rgba(44 42 41 / 45%);
          .upgrade-copy {
            font-size: 26px;
            font-weight: 900;
            color: var(--content-color-khaki);
          }
          .upgrade-midashi {
            font-size: 26px;
            color: var(--content-color-red);
            display: grid;
            gap: 4px;
            justify-items: center;
          }
          .upgrade-icon {
            background: var(--content-color-red);
            font-size: 16px;
            color: #fff;
            padding: 0 4px;
          }
          .basic-room {
            font-size: 12px;
            font-weight: normal;
          }
        }
        .hotel-caption {
          font-size: 20px;
          font-weight: bold;
          color: #fff;
          text-align: center;
          background: rgba(0 0 0 / 50%);
          padding: 0 2px 2px;
          position: absolute;
          bottom: 8px;
          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: 40px 0;
      box-shadow: 0 10px 10px 0 rgba(44 42 41 / 30%);
      .inner {
        display: grid;
        gap: 24px;
        .hotel-namebox {
          display: grid;
          grid-template-columns: 1fr 576px;
          .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: 32px;
            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 {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          align-items: flex-start;
          gap: 32px 0;
          .early-benefit,
          .long-benefit {
            display: grid;
            gap: 16px;
            .benefit-midashi {
              font-size: 26px;
              font-weight: 900;
              color: var(--content-color-khaki);
              text-align: center;
            }
            .benefit-list {
              display: grid;
              gap: 16px;
              > li {
                display: flex;
                gap: 16px;
                align-items: center;
                font-weight: 900;
                .benefit-condition {
                  background: var(--content-color-gold);
                  font-size: 26px;
                  color: #fff;
                  text-align: center;
                  padding: 2px 16px;
                  line-height: 1.5;
                  min-width: 100px;
                }
                .benefit-txt {
                  font-size: 26px;
                  font-weight: 900;
                  color: var(--content-color-red);
                  line-height: 1.5;
                }
              }
            }
            > .note-txt {
              text-align: right;
            }
          }
          .early-benefit {
            padding-right: 24px;
            position: relative;
            .benefit-list > li .benefit-condition {
              width: 288px;
            }
          }
          .long-benefit {
            padding-left: 24px;
            position: relative;
            &::before {
              content: "";
              width: 1px;
              height: 100%;
              border-right: 1px dotted var(--content-color-khaki);
              position: absolute;
              top: 0;
              left: 0;
            }
            .benefit-list > li .benefit-txt {
              font-size: 20px;
              > 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: 16px;
      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: grid;
      gap: 40px;
      .product-select-tab {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        > li {
          background: var(--content-color-khaki);
          border-radius: 8px;
          padding: 16px 8px;
          font-size: 32px;
          font-weight: bold;
          color: #fff;
          text-align: center;
          cursor: pointer;
          display: flex;
          flex-direction: column;
          justify-content: center;
          > span {
            display: block;
            font-size: 20px;
          }
          &.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: 24px;
        font-weight: 900;
        color: var(--content-color-khaki);
      }
    }
  }

  .discount-content {
    display: grid;
    gap: 16px;
    background:
      url(../img/bg_catch01.webp) no-repeat left top / auto 50%,
      #fff;
    padding: 24px;
    .discount-title {
      font-size: 26px;
      font-weight: 900;
      color: var(--content-color-red);
      text-align: center;
      > small {
        font-size: 16px;
        font-weight: bold;
        color: var(--content-color-khaki);
      }
    }
    .coupon-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      > li {
        display: grid;
        gap: 8px;
        grid-template-rows: subgrid;
        grid-row: span 4;
        align-items: flex-start;
        background: var(--content-color-cream);
        padding: 8px;
        border-radius: 2px;
        text-align: center;
        .coupon-title-box {
          display: grid;
          gap: 4px;
          font-weight: 900;
          .coupon-catch {
            font-size: 20px;
            color: var(--content-color-khaki);
          }
          .coupon-discount {
            font-size: 26px;
            color: var(--content-color-red);
          }
        }
        .code-list {
          display: grid;
          gap: 16px;
          align-items: flex-start;
          > li {
            display: grid;
            gap: 8px;
            .coupon-condition {
              font-weight: bold;
            }
            .code-txt {
              background: #fff;
              padding: 4px;
              font-size: 16px;
              font-weight: bold;
              color: var(--content-color-khaki);
              text-align: center;
              display: flex;
              gap: 4px;
              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: 16px;
                height: 16px;
                display: block;
              }
            }
            .msgBoard {
              display: none;
              font-size: 12px;
              font-weight: bold;
              color: var(--content-color-khaki);
            }
          }
        }
      }
    }
    > .note-txt {
      text-align: right;
      font-weight: bold;
    }
    .coupon-list.is-one {
      grid-template-columns: auto;
    }
  }
  .happy-box {
    border-top: var(--content-color-khaki) 1px dotted;
    padding-top: 16px;
    display: grid;
    gap: 8px;
    justify-items: center;
    .link-button {
      width: auto;
      > a {
        gap: 8px;
        align-items: center;
        padding: 12px 28px 12px 40px;
        font-size: 12px;
        &::before {
          content: none;
        }
        &::after {
          content: "";
          mask: var(--bg-img-setting) var(--content-arrow-right);
          background: #fff;
          width: 24px;
          height: 24px;
          display: block;
        }
      }
    }
  }
}
.container.resort {
  .title-box {
    padding-bottom: 64px;
  }
  .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: 96px;
  > .inner {
    display: grid;
    gap: 64px;
    .title-box {
      padding-bottom: 0;
      .title-sub {
        background: linear-gradient(transparent 50%, var(--content-color-ocean) 50%);
      }
      .bodycopy {
        font-size: 16px;
        font-weight: normal;
        color: var(--content-color-base);
      }
    }
    .dp-content {
      display: grid;
      gap: 40px;
      .dp-title {
        font-size: 40px;
        font-weight: 900;
        color: var(--content-color-blue);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        &::before {
          content: "";
          background: url(../img/catch_dp.svg) var(--bg-img-setting);
          width: 261px;
          height: 98px;
          transform: rotate(-5deg);
          display: block;
        }
      }
      .dp-point-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        align-items: flex-start;
        > li {
          background: #fff;
          padding: 24px;
          display: grid;
          grid-template-rows: subgrid;
          grid-row: span 3;
          gap: 16px;
          .dp-midashi {
            display: flex;
            gap: 8px;
            align-items: center;
            .midashi-num {
              width: 60px;
            }
            .midashi-txt {
              flex: 1;
              font-size: 20px;
              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: 96px;
  > .inner {
    display: grid;
    gap: 64px;
    .title-box {
      color: #fff;
      .title-sub {
        background: linear-gradient(transparent 50%, var(--content-color-violet) 50%);
      }
    }
    .special-price-box {
      display: grid;
    }
    .special-price {
      display: flex;
      gap: 4px;
      justify-content: center;
      align-items: center;
      font-weight: 900;
      .price-icon {
        background: var(--content-color-red);
        font-size: 16px;
        color: #fff;
        text-align: center;
        padding: 0 4px;
      }
      .special-price-txt {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--content-color-red);
        > em {
          font-size: 24px;
        }
      }
    }
    .bus-content {
      display: grid;
      gap: 40px;
      .bus-tokuten-box {
        background:
          url(../img/bg_catch01.webp) no-repeat left top / auto 100%,
          #fff;
        padding: 24px;
        text-align: center;
        display: grid;
        gap: 16px;
        .bus-tokuten-title {
          display: grid;
          gap: 8px;
          font-size: 32px;
          font-weight: 900;
          color: var(--content-color-violet);
          .bus-tokuten-catch {
            font-size: 26px;
            color: var(--content-color-khaki);
          }
        }
        .bus-tokuten-item {
          display: grid;
          gap: 8px;
          .bus-tokuten-txt {
            font-weight: bold;
          }
        }
      }
      .bus-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        > li {
          display: grid;
          gap: 16px;
          .bus-course-box {
            background: #fff;
            display: grid;
            grid-template-columns: 224px 1fr;
            .bus-course-img > li {
              position: relative;
              > img {
                aspect-ratio: 224 / 150;
                height: 100%;
              }
            }
            .bus-course-item {
              padding: 12px;
              display: grid;
              gap: 8px;
            }
          }
        }
      }
      .churabus-box {
        display: grid;
        gap: 16px;
      }
      .course-title-area {
        display: grid;
        gap: 4px;
        font-weight: bold;
        .course-title {
          display: grid;
          grid-template-columns: 64px 1fr;
          gap: 8px;
        }
        .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: 16px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      .special-img {
        width: 302px;
        position: relative;
      }
      .special-item {
        flex: 1;
        display: grid;
        gap: 16px;
        .special-title-area {
          display: grid;
          gap: 4px;
          font-weight: bold;
          .special-title {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: 8px;
            .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);
              }
            }
            .course-basic {
              font-size: 12px;
            }
          }
          .special-price {
            justify-content: 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: 261px;
        height: 98px;
        position: absolute;
        top: -50px;
        left: 16px;
        transform: rotate(-5deg);
      }
      .special-item > .special-title-area > .special-title {
        grid-template-columns: 80px 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: 96px;
  .bnr-list {
    margin: 0 !important;
  }
}

.container.search {
  padding-block: 40px;
  background: url("../img/bg_search.webp") no-repeat center / cover;
  > .inner {
    width: min(var(--content-width), 992px);
    margin: auto;
  }
}

@media (769px <= width <= 1103px) {
  .container {
    .area-select-tab > li {
      font-size: 28px;
    }
    .tokuten-wrapper {
      .inner {
        .tokuten-box {
          .tokuten-list {
            grid-template-columns: repeat(2, 1fr);
          }
        }
        .is-resort .tokuten-list > li {
          grid-column: span 1;
        }
        .is-rentcar {
          .tokuten-list > li {
            grid-column: span 1;
          }
          &::before {
            top: -40px;
            left: -8px;
          }
        }
        .is-family {
          .tokuten-title {
            font-size: 24px;
          }
          .tokuten-list {
            > li {
              grid-column: span 1;
            }
          }
          &::before {
            top: -40px;
            left: -8px;
          }
        }
      }
    }
    .tokuten-wrapper.is-isg .tokuten-box.is-family .tokuten-list > li {
      grid-column: span 1;
    }
    .hotel-wrapper {
      .hotel-material {
        .inner {
          .hotel-namebox {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            .hotel-name-txt {
              font-size: 28px;
            }
            .hotel-img > li > img {
              aspect-ratio: auto;
              object-fit: cover;
              height: 100%;
            }
          }
          .benefit-box {
            .early-benefit {
              .benefit-list > li .benefit-condition {
                width: 8em;
                font-size: 20px;
              }
            }
            .long-benefit {
              .benefit-list > li {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
                .benefit-condition {
                  width: 8em;
                  font-size: 20px;
                }
                .benefit-txt {
                  font-size: 18px;
                }
              }
            }
          }
        }
      }
    }
    .discount-content {
      .coupon-list {
        > li {
          .coupon-title-box {
            .coupon-discount {
              font-size: 24px;
              > span {
                font-size: 18px;
              }
            }
          }
        }
      }
    }
    .link-list {
      flex-direction: column;
      align-items: center;
    }
  }
  .container.dp {
    > .inner {
      .dp-content {
        .dp-point-list {
          > li {
            background: #fff;
            padding: 16px;
            display: grid;
            grid-template-rows: subgrid;
            grid-row: span 3;
            gap: 8px;
            .dp-midashi {
              align-items: flex-start;
              .midashi-num {
                width: 48px;
              }
            }
          }
        }
      }
    }
  }
  .container.trip {
    > .inner {
      .bus-content {
        .bus-list {
          > li {
            .bus-course-box {
              grid-template-columns: auto;
              .bus-course-img {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                > li > img {
                  aspect-ratio: auto;
                }
              }
            }
          }
        }
      }
      .special-content {
        .special-img {
          width: 240px;
        }
      }
    }
  }
}
