@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=Roboto:wght@900&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-brown: #705b39;
  --content-color-red: #df0d00;
  --content-color-cream: #fbf3bd;
  --content-color-purple: #ccc0e2;
  --content-color-green: rgba(19 130 143 / 30%);
  --content-color-pink: #ffc2c5;
  --content-color-mint: #e0f2ce;
  --content-color-gray: #737373;
  --bg-img-setting: no-repeat center center / cover;
  --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);
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --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;
}
.is-sp.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);
}

/***** MV・ナビ *****/
.mv-wrapper {
  width: 100%;
}
.title-logo {
  position: relative;
}
.present-catch-bnr {
  width: 120px;
  height: 99px;
  position: absolute;
  top: 0;
  right: 0;
}
.present-catch-bnr:hover {
  opacity: 0.9;
}

.nav-wrapper .inner {
  width: 100vw;
  display: grid;
}
.nav-list {
  order: 2;
  display: grid;
}
.nav-list > li {
  border-bottom: var(--content-border-1) var(--content-color-gray);
}
.nav-list > li > a {
  display: block;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: calc(16vw / 3.75) 0;
}
.nav-sub-txt {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.nav-list > li > a:hover {
  background: var(--content-color-brown);
  color: #fff;
}
.display_selected {
  order: 1;
  height: 100%;
  background: #53b9ac;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: calc(12vw / 3.75) 0;
  position: relative;
  cursor: pointer;
}
.display_selected::after {
  content: "";
  background: url("../img/arrow.svg") var(--bg-img-setting);
  width: calc(12vw / 3.75);
  height: calc(12vw / 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);
}
.dep-select > li {
  display: block;
  cursor: default;
  padding: calc(8vw / 3.75);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.dep-select > li:hover,
.dep-select > li.selected {
  background: #fff;
  color: #000;
}
.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 {
  background: url(../img/bg.webp) repeat;
}
.content-wrapper {
  width: 100%;
  padding-bottom: calc(64vw / 3.75);
}
.title-wrapper {
  background: no-repeat center top / cover;
  padding: calc(64vw / 3.75) calc(20vw / 3.75) calc(32vw / 3.75);
  color: #fff;
  text-align: center;
  display: grid;
  gap: calc(20vw / 3.75);
}
.head-title {
  font-size: 30px;
  font-weight: 900;
}
.leadcopy {
  display: block;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
}
.bodycopy {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.title-wrapper + .inner {
  padding-top: calc(32vw / 3.75);
}
.sub-title > span {
  text-align: center;
  line-height: 1.5;
}
.sub-title-copy {
  display: inline;
  font-size: 18px;
  font-weight: normal;
  color: var(--content-color-base);
  background: linear-gradient(to top, var(--content-color-purple) 40%, transparent 40%);
}
.sub-title-main {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
}
.tokutenbox {
  background: var(--content-color-cream);
  border-radius: 8px;
  padding: calc(24vw / 3.75) calc(12vw / 3.75) calc(12vw / 3.75);
  margin-top: calc(12vw / 3.75);
  display: grid;
  gap: calc(12vw / 3.75);
  position: relative;
  align-items: flex-start;
}
.tokutenbox::before {
  content: "";
  background: var(--bg-img-setting);
  width: calc(177vw / 3.75);
  height: calc(20vw / 3.75);
  position: absolute;
  top: calc(-10vw / 3.75);
  right: 0;
  left: 0;
  margin: auto;
}
.tokuten-img > img {
  border-radius: 8px;
}
.tokuten-txt {
  font-size: 18px;
  font-weight: 900;
  color: var(--content-color-brown);
}
.tokuten-txt > span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-base);
}
.note-txt {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px !important;
  font-weight: normal !important;
}
.note-txt > a {
  text-decoration: underline;
  color: #3064d5;
}
.note-txt > a:hover {
  text-decoration: none;
}
.copyright {
  font-size: 12px;
  font-weight: normal !important;
  display: block;
}
.is-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
sup {
  font-size: 10px;
  vertical-align: super;
}
.is-pinkline {
  display: inline;
  background: linear-gradient(to top, var(--content-color-pink) 80%, transparent 80%);
  font-weight: bold;
}

/*** 注意事項 ***/
.accordion-content {
  display: none;
}
.caution-wrapper {
  margin: auto;
  display: grid;
  gap: calc(12vw / 3.75);
}
.caution-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.caution-box {
  display: grid;
  gap: calc(4vw / 3.75);
}
.caution-midashi {
  font-weight: bold;
}
.caution-list > li {
  font-size: 12px;
  line-height: 1.5;
}
.accordion-button {
  width: 184px;
  border-radius: 999px;
  border: var(--content-border-1);
  background: #fff;
  padding: 8px 28px 8px 40px;
  margin: auto;
  text-align: center;
  color: var(--content-color-gray);
  cursor: pointer;
}
.accordion-button > span {
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.accordion-button > span:after {
  content: "";
  mask: var(--bg-img-setting);
  mask-image: var(--content-arrow-down);
  background: var(--content-color-gray);
  width: 20px;
  height: 20px;
  display: inline-block;
}
.accordion-button.is-open {
  width: 136px;
}
.accordion-button.is-open > span:after {
  mask-image: var(--content-arrow-up);
}

/*** 周遊旅 ***/
.round .title-wrapper {
  background-image: url(../img/bg_round.webp);
}
.round-content {
  display: grid;
  gap: calc(32vw / 3.75);
  margin-bottom: calc(32vw / 3.75);
}
.round-box {
  display: grid;
  gap: calc(20vw / 3.75);
}
.sub-title.round {
  display: grid;
  justify-items: center;
}
.sub-title.round::before {
  content: "";
  background: var(--bg-img-setting);
  width: calc(117vw / 3.75);
  height: calc(68vw / 3.75);
  display: block;
}
.round-box.point1 .sub-title.round::before {
  background-image: url(../img/ico_round_point1.svg);
}
.round-box.point2 .sub-title.round::before {
  background-image: url(../img/ico_round_point2.svg);
}
.rentacar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12vw / 3.75);
}
.car-name {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.activity-list {
  display: grid;
  gap: calc(20vw / 3.75);
}
.activity-list > li {
  display: grid;
  gap: calc(12vw / 3.75);
}
.activity-list > li:first-child {
  padding-bottom: calc(20vw / 3.75);
  border-bottom: var(--content-border-1) var(--content-color-gray);
}
.active-midashi {
  background: #fff;
  border-radius: 8px;
  padding: calc(12vw / 3.75) 0 calc(4vw / 3.75);
  font-size: 24px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
  position: relative;
  margin: calc(20vw / 3.75) 0 calc(12vw / 3.75);
}
.active-midashi > span {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.active-midashi::before {
  content: "";
  background: var(--bg-img-setting);
  width: calc(126vw / 3.75);
  height: calc(23vw / 3.75);
  position: absolute;
  top: calc(-12vw / 3.75);
  right: 0;
  left: 0;
  margin: auto;
}
.activity-list > li:first-child .active-midashi::before {
  background-image: url(../img/ico_round_taiken1.svg);
}
.activity-list > li:last-child .active-midashi::before {
  background-image: url(../img/ico_round_taiken2.svg);
}
.active-name {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: calc(4vw / 3.75);
}
.active-name > small {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.active-txt {
  line-height: 1.5;
}
.tokutenbox.active {
  position: relative;
  grid-template-columns: calc(160vw / 3.75) 1fr;
}
.tokutenbox.active::before {
  background-image: url(../img/ico_cnp.svg);
}

/*** 札幌・函館 ***/
.stay .title-wrapper {
  background-image: url(../img/bg_stay.webp);
  padding-bottom: 0;
}
.select-tab {
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12vw / 3.75);
}
.select-tab > li {
  border-radius: 8px 8px 0 0;
  background: var(--content-color-brown);
  height: 44px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select-tab > li.is-current {
  background: var(--content-color-mint);
  color: var(--content-color-brown);
}
.select-content {
  display: none;
}
.select-content.is-active {
  display: block;
}
.select-content > .inner {
  padding-top: calc(32vw / 3.75);
}
.stay-content {
  display: grid;
  gap: calc(20vw / 3.75);
  margin-bottom: calc(32vw / 3.75);
}
.sub-title.stay {
  display: grid;
  gap: calc(12vw / 3.75);
}
.sub-title.stay .subcopy {
  display: block;
  margin: auto;
  font-size: 16px;
  font-weight: normal;
  color: var(--content-color-base);
  text-align: center;
}
/* 札幌バスツアー */
.bus-list {
  display: grid;
  gap: calc(20vw / 3.75);
}
.bus-list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: calc(8vw / 3.75);
  font-weight: bold;
  line-height: 1.5;
}
.bus-list > li:nth-child(-n + 2) {
  border-bottom: var(--content-border-1) var(--content-color-gray);
  padding-bottom: calc(20vw / 3.75);
}
.bus-titlebox {
  display: grid;
  grid-template-columns: calc(60vw / 3.75) 1fr;
  gap: calc(12vw / 3.75);
  align-items: flex-start;
}
.bus-titlebox::before {
  content: "";
  background: var(--bg-img-setting);
  width: calc(60vw / 3.75);
  height: calc(60vw / 3.75);
  display: block;
}
.bus-list > li:first-child .bus-titlebox::before {
  background-image: url(../img/ico_bus1.svg);
}
.bus-list > li:nth-child(2) .bus-titlebox::before {
  background-image: url(../img/ico_bus2.svg);
}
.bus-list > li:last-child .bus-titlebox::before {
  background-image: url(../img/ico_bus3.svg);
}
.bus-title {
  display: grid;
  gap: calc(2vw / 3.75);
  justify-items: flex-start;
}
.bus-title-sub {
  display: block;
  background: #fff;
  font-size: 14px;
  color: var(--content-color-red);
  padding: calc(2vw / 3.75);
}
.bus-title-main {
  font-size: 16px;
  font-weight: 900;
}
.bus-title-main > small {
  font-size: 14px;
}
.bus-date {
  border-top: var(--content-color-gray) 2px dashed;
  padding-top: calc(8vw / 3.75);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: calc(8vw / 3.75);
  align-items: flex-start;
}
.date-icon {
  background: var(--content-color-brown);
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 0 calc(2vw / 3.75);
}
.bus-arrdep {
  background: #fff;
  padding: calc(8vw / 3.75);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: calc(8vw / 3.75);
}
.bus-icon {
  background: var(--content-color-purple);
  padding: auto;
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bus-route {
  background: #fff;
  padding: calc(8vw / 3.75);
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: calc(8vw / 3.75);
  align-items: flex-start;
}
.bus-route-item {
  display: grid;
  gap: calc(8vw / 3.75);
}
.bus-route-img {
  width: 100%;
}
.bus-route-img > img {
  height: 128px;
  border-radius: 8px;
}

/* 函館ホテル */
.hotel-list {
  display: grid;
  gap: calc(20vw / 3.75);
}
.hotel-list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 8px;
}
.hotel-list > li:nth-child(-n + 3) {
  border-bottom: var(--content-border-1) var(--content-color-gray);
  padding-bottom: calc(20vw / 3.75);
}
.hotel-img {
  position: relative;
}
.hotel-img::before {
  content: "";
  background: var(--bg-img-setting);
  width: calc(50vw / 3.75);
  height: calc(54vw / 3.75);
  position: absolute;
  top: 0;
  left: calc(20vw / 3.75);
}
.hotel-list > li:first-child .hotel-img::before {
  background-image: url(../img/ico_htl1.svg);
}
.hotel-list > li:nth-child(2) .hotel-img::before {
  background-image: url(../img/ico_htl2.svg);
}
.hotel-list > li:nth-child(3) .hotel-img::before {
  background-image: url(../img/ico_htl3.svg);
}
.hotel-list > li:last-child .hotel-img::before {
  background-image: url(../img/ico_htl4.svg);
}
.hotel-name {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.hotel-txt {
  line-height: 1.5;
}
.tokutenbox.hotel {
  margin-top: calc(10vw / 3.75);
  grid-template-columns: calc(140vw / 3.75) 1fr;
}
.tokutenbox.hotel::before {
  background-image: url(../img/ico_cnp_stay.svg);
}
.tokutenbox.hotel .tokuten-img > img {
  height: calc(140vw / 3.75);
}
.tokutenbox.hotel .tokuten-item {
  display: grid;
  justify-items: flex-start;
  gap: calc(2vw / 3.75);
}
.tokuten-icon {
  display: block;
  background: var(--content-color-brown);
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 calc(2vw / 3.75);
}

.stay-tokuten {
  margin: auto;
  background: #fff;
  border-radius: 8px;
  padding: calc(12vw / 3.75);
  display: grid;
  gap: calc(12vw / 3.75);
}
.stay-tokuten-img {
  order: 2;
  width: calc(260vw / 3.75);
  margin: auto;
}
.stay-tokuten-img > img {
  border-radius: 8px;
}
.stay-tokuten-item {
  order: 1;
  display: grid;
  gap: calc(4vw / 3.75);
  line-height: 1.5;
}
.stay-tokuten-item::before {
  content: "";
  background: var(--bg-img-setting) url(../img/ico_balloon.svg);
  width: calc(139vw / 3.75);
  height: calc(32vw / 3.75);
  display: block;
}
.stay-tokuten-midashi {
  font-size: 18px;
  font-weight: 900;
  color: var(--content-color-brown);
}
.stay-tokuten-midashi > span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-red);
}

/** クーポン・うれしいシアワセ **/
.coupon-content {
  background: #fff;
  border-radius: 8px;
  padding: calc(12vw / 3.75);
}
.coupon-content.is-mb40 {
  margin-bottom: calc(32vw / 3.75);
}
.coupon-midashi {
  font-size: 18px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.coupon-midashi > span {
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-base);
}
.coupon-midashi > small {
  font-size: 12px;
  color: var(--content-color-base);
}
.coupon-list {
  display: grid;
  gap: calc(16vw / 3.75);
  margin-bottom: 8px;
}
.coupon-list > li {
  display: grid;
  grid-template-columns: calc(79vw / 3.75) 1fr;
  border-radius: 8px;
  background: var(--content-color-red);
  padding: calc(4vw / 3.75);
  gap: calc(8vw / 3.75) calc(4vw / 3.75);
  align-items: center;
}
.coupon-condition {
  border-radius: 4px;
  padding: calc(2vw / 3.75);
  background: var(--content-color-brown);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coupon-item {
  display: contents;
}
.coupon-price {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-align: center;
}
.coupon-price > em {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 900;
}
.coupon-price.is-yen > em {
  font-size: 32px;
}
.coupon-price > span {
  font-size: 24px;
}
.coupon-price > span > small {
  font-size: 24px;
}
.coupon-price.is-yen > span > small {
  font-size: 14px;
}
.code-txt {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  background: #fff;
  padding: calc(2vw / 3.75);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  cursor: pointer;
  display: flex;
  gap: calc(2vw / 3.75);
  justify-content: center;
  align-items: center;
}
.code-txt::after {
  content: "";
  background: var(--bg-img-setting) url(/cmn/icon/icon_copy.svg);
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  display: block;
}
.msgBoard {
  font-size: 12px;
  color: #fff;
  display: none;
  grid-column: 1 / 3;
  text-align: center;
}

.benefit-content {
  margin-top: calc(12vw / 3.75);
  padding-top: calc(12vw / 3.75);
  border-top: 1px dashed var(--content-color-gray);
  display: grid;
  gap: calc(8vw / 3.75);
}
.benefit-txt {
  font-size: 18px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.benefit-txt > span {
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-base);
}
.link-button {
  width: 172px;
  margin: auto;
}
.link-button > a {
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  border: var(--content-border-1);
  background: #fff;
  padding: 8px 28px 8px 40px;
  margin: auto;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: var(--content-color-gray);
  cursor: pointer;
}
.link-button > a::after {
  content: "";
  mask: var(--content-arrow-right) var(--bg-img-setting);
  background: var(--content-color-gray);
  width: 20px;
  height: 20px;
  display: inline-block;
}
.link-button > a:hover {
  background: #e9ecf2;
}

/*** 商品 ***/
.product-wrapper + .product-wrapper {
  margin-top: calc(32vw / 3.75);
}
.product-sub-title {
  text-align: center;
  margin-bottom: calc(20vw / 3.75);
  line-height: 1.5;
}
.product-sub-title-txt {
  display: block;
  font-size: 28px;
}
.product-sub-title-catch {
  display: inline;
  font-size: 18px;
  font-weight: normal;
  color: var(--content-color-base);
  background: linear-gradient(to top, var(--content-color-green) 40%, transparent 40%);
}
.product-sub-title + .note-txt,
.product-bodycopy + .note-txt {
  text-align: center;
  margin-bottom: 16px;
}
.product-bodycopy {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(24vw / 3.75);
}
.area00 {
  display: none;
}
.item-label {
  line-height: 0;
}
.item-label.summer1::after {
  content: "";
  background: url(/kokunai/campaign/hokkaido/img/ico_round_sgl.svg) var(--bg-img-setting);
}
.item-label.summer2::after {
  content: "";
  background: url(/kokunai/campaign/hokkaido/img/ico_round_both.svg) var(--bg-img-setting);
}
.item-label::after {
  background-size: cover;
}
.item-label.a::after {
  content: "コースA";
  background: var(--content-color-brown);
  color: #fff;
}
.item-label.b::after {
  content: "コースB";
  background: var(--content-color-brown);
  color: #fff;
}
.item-label.c::after {
  content: "コースC";
  background: var(--content-color-brown);
  color: #fff;
}
.more-link {
  width: 100%;
  margin: calc(20vw / 3.75) auto 0;
}
.more-link > a {
  display: flex;
  gap: calc(8vw / 3.75);
  align-items: center;
  justify-content: center;
  background: var(--content-color-brown);
  border-radius: 999px;
  padding: 12px 16px 12px 32px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.more-link > a::after {
  content: "";
  mask: var(--content-arrow-right) var(--bg-img-setting);
  background: #fff;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.more-link > a:hover {
  opacity: 0.8;
}

/** IMP **/
.imp-point-list {
  display: grid;
  gap: calc(12vw / 3.75);
  margin-bottom: calc(20vw / 3.75);
}
.imp-point-list > li {
  background: var(--content-color-cream);
  border-radius: 8px;
  padding: calc(12vw / 3.75);
  display: grid;
  gap: calc(12vw / 3.75);
  grid-template-columns: calc(67vw / 3.75) 1fr;
}
.imp-point-midashi {
  display: flex;
  gap: calc(4vw / 3.75);
  justify-content: center;
  align-items: center;
}
.point-icon {
  background: var(--content-color-brown);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 4px;
}
.point-midashi-txt {
  font-size: 24px;
  font-weight: 900;
  color: var(--content-color-brown);
}
.imp-point-txt {
  font-size: 16px;
  line-height: 1.5;
}

/*** 航空券＋ホテル ***/
.dp .title-wrapper {
  background-image: url(../img/bg_airHotel.webp);
}
.dp-content {
  display: grid;
  gap: calc(32vw / 3.75);
  margin-bottom: calc(32vw / 3.75);
}
.dp-point-list {
  display: grid;
  gap: calc(12vw / 3.75);
}
.dp-point-list > li {
  display: grid;
  gap: calc(12vw / 3.75);
}
.dp-point-box {
  background: var(--content-color-cream);
  border-radius: 8px;
  padding: calc(4vw / 3.75) calc(12vw / 3.75);
  display: grid;
  gap: calc(12vw / 3.75);
  grid-template-columns: calc(68vw / 3.75) 1fr;
  text-align: center;
  align-items: center;
}
.dp-point-midashi {
  background: var(--content-color-brown);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 calc(4vw / 3.75);
  margin-bottom: calc(4vw / 3.75);
}
.dp-point-catch {
  font-size: 18px;
  font-weight: 900;
  color: var(--content-color-brown);
}
.dp-point-txt {
  font-size: 16px;
  line-height: 1.5;
}
.dp-product {
  display: grid;
  gap: calc(12vw / 3.75);
}
.dp-product > li > a,
.hotel-link-button > a {
  display: flex;
  gap: calc(8vw / 3.75) 8px;
  align-items: center;
  justify-content: center;
  background: var(--content-color-brown);
  border-radius: 999px;
  padding: calc(12vw / 3.75) calc(28vw / 3.75) calc(12vw / 3.75) calc(40vw / 3.75);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.dp-product > li > a::after,
.hotel-link-button > a::after {
  content: "";
  mask: var(--content-arrow-right) var(--bg-img-setting);
  background: #fff;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.dp-product > li > a:hover,
.hotel-link-button > a:hover {
  opacity: 0.8;
}
.product-list.card-style.spkCpn--hotel02 > li {
  background: none;
  box-shadow: none;
}
.product-list.card-style.spkCpn--hotel02 > li:hover {
  box-shadow: none;
}
.product-list.card-style.spkCpn--hotel02 > li > a {
  background: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
}
.product-list.card-style.spkCpn--hotel02 > li > a:hover {
  box-shadow: 0 2px 20px rgb(0 0 0 / 25%);
}
.hotel-link-button {
  margin: calc(16vw / 3.75) auto 0;
}
.product-list > li .hotel-link-button > a {
  display: flex;
  color: #fff !important;
}

/*** サインボールプレゼント ***/
.content-wrapper.present {
  background: #fff;
}
.present .title-wrapper {
  background-image: url(../img/bg_fighters.webp);
}
.present-content {
  display: grid;
  gap: calc(32vw / 3.75);
}
.present-box {
  display: grid;
  gap: calc(20vw / 3.75);
  justify-items: center;
}
.fighters-logo > img {
  width: calc(160vw / 3.75);
}
.fighters-logo .copyright {
  text-align: right;
}
.present-summary {
  display: grid;
  gap: 4px;
}
.present-summary-catch {
  font-size: 28px;
  font-weight: 900;
  color: var(--content-color-red);
}
.present-summary-txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.guideline-box {
  display: grid;
  gap: calc(4vw / 3.75);
}
.guideline-box > li {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: calc(12vw / 3.75);
  padding-bottom: calc(4vw / 3.75);
  border-bottom: 1px dashed var(--content-color-base);
  line-height: 1.5;
}
.guideline-midashi {
  font-size: 16px;
  font-weight: bold;
  color: #0064a5;
}
.guideline-txt > a {
  text-decoration: underline;
  color: #3064d5;
}
.present-caution-box {
  display: grid;
  gap: calc(12vw / 3.75);
}

/*** フッター ***/
.content-wrapper.foot {
  padding: 40px 0 0;
  background: var(--content-color-cream);
  display: grid;
  gap: 40px;
}
.bnr-list {
  margin: 0 !important;
}
.search-wrapper {
  padding: 40px 0;
  background: url("../img/bg_search.webp") no-repeat center / cover;
}
.search-wrapper .inner {
  width: 100vw;
  margin: auto;
}
