@charset "utf-8";
/* CSS Document */

/*================================================================================
		共通
================================================================================*/

/*-------------------- エリアから探す --------------------*/
.tab_area {
	width: 94%;
	margin: 2% auto 8%;
	display: none;
}
.tab_area.active {display: block;}
.tab_area .box_area .base_prod {margin-bottom: 0;}
/* 画像テキスト */
.wrap_ib {position: relative;}
.wrap_ib a {display: block;}
.wrap_ib a:hover {opacity: .8;}
.wrap_ib a img:hover {opacity: 1;}

.wrap_ib .wrap_b {
	position: absolute;
	width: 100%;
	bottom: 0;
	background: linear-gradient(transparent, #262626 50%);
	padding: 6px 10px 3px;
	color: #fff;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.wrap_ib .wrap_b .b_hotel {
	font-size: 2rem;
	font-weight: bold;
}
.wrap_ib .wrap_b .b_detail {
	font-size: 1.2rem;
	padding: 0 8px 0 5px;
	margin-left: auto;
	position: relative;
}
.wrap_ib .wrap_b .b_detail::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	top: 50%;
	right: 0;
	margin-top: -2px;
}

/* タブ */
.wrap_tab_btn {
	position: relative;
}
/* .wrap_tab_btn::before {
	position: absolute;
	content: "";
	bottom: 0;
	width: 100%;
	border-bottom: 2px solid #5c4928;
} */
.wrap_tab_btn .inner_tab_btn {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 0 3%;
	margin: auto;
}

.wrap_tab_btn .tab_btn:nth-of-type(4n) {
	margin-right: 0;
}

/* .wrap_tab_btn .tab_btn.active::before,
.wrap_tab_btn .tab_btn.active::after {
	position: absolute;
	content: "";
	display: block;
} */

/* .wrap_tab_btn .tab_btn.active::after {
	width: calc(100% - 4px);
	height: 4px;
	bottom: -1px;
	left: 2px;
	background: #fff;
} */
.wrap_tab_btn .tab_btn:hover {
	cursor: pointer;
	opacity: .8;
}
.wrap_tab_btn .tab_btn.active:hover {
	cursor: auto;
	opacity: 1;
}
/* 5個以上の時 */
.wrap_tab_btn .tab_btn:nth-of-type(n+5) {margin-top: 6px;}
/* 2個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(2),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(2) ~ .tab_btn {
	width: calc(100%/2 - 5px);
}
/* 3個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(3),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(3) ~ .tab_btn {
	width: calc(100%/3 - 5px);
}
/* 5 & 6個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn,
.wrap_tab_btn .tab_btn:first-child:nth-last-child(6),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn {
	width: calc(100%/3 - 5px);
}
/* 5個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(-n+2) {width: calc(100%/2 - 5px);}
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(3),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(4) {margin-top: 6px;}
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5)::after,
.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(-n+2)::after {display: none;}
/* 6個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn:nth-of-type(4) {margin-top: 6px;}
.wrap_tab_btn .tab_btn:first-child:nth-last-child(6)::after,
.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn:nth-of-type(-n+3)::after {display: none;}
/* 7個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(7),
.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(-n+3) {width: calc(100%/3 - 5px);}
.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(4) {margin-top: 6px;}
.wrap_tab_btn .tab_btn:first-child:nth-last-child(7)::after,
.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(-n+3)::after {display: none;}
/* 8個の時 */
.wrap_tab_btn .tab_btn:first-child:nth-last-child(8)::after,
.wrap_tab_btn .tab_btn:first-child:nth-last-child(8) ~ .tab_btn:nth-of-type(-n+4)::after {display: none;}

/*--------------------------------------------------------------------------------
		PC調整
--------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
	/*-------------------- エリアから探す --------------------*/
	.tab_area {width: 100%; margin: 20px auto 40px;}

	/* タブ */
	.wrap_tab_btn .inner_tab_btn {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
		width: 1000px;
		padding: 0 10px;
	}
	.wrap_tab_btn .tab_btn {
		height: auto;
		padding: 10px;
		font-size: 1.6rem;
	}
	/* 5個以上の時 */
	.wrap_tab_btn .tab_btn:nth-of-type(n+5) {margin-top: 0;}
	/* 5個の時 */
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5),
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(-n+2) {width: calc(100%/5 - 5px);}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(3),
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(4) {margin-top: 0;}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5)::after,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(5) ~ .tab_btn:nth-of-type(-n+2)::after {display: block;}
	/* 6個の時 */
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(6),
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn {width: calc(100%/6 - 5px);}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn:nth-of-type(4) {margin-top: 0;}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(6)::after,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(6) ~ .tab_btn:nth-of-type(-n+3)::after {display: block;}
	/* 7個の時 */
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7),
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(-n+3) {width: calc(100%/7 - 5px);}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(4) {margin-top: 0;}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7)::after,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(7) ~ .tab_btn:nth-of-type(-n+3)::after {display: block;}
	/* 8個の時 */
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(8),
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(8) ~ .tab_btn {width: calc(100%/8 - 5px);}
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(8)::after,
	.wrap_tab_btn .tab_btn:first-child:nth-last-child(8) ~ .tab_btn:nth-of-type(-n+4)::after {display: block;}

	.tab_area .box_area {margin: 0 10px;}
}

/*--------------------------------------------------------------------------------
		PC調整
--------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  /* ここから追加 PCのみ*/
  .wrap_tab_area > div {
    display: flex;
  }
  .tab_area > div {
    width: 100%!important;
  }
  .tab_area .box_area {
    display: flex;
		align-items: center;
		margin: 16px 10px;
		background-color: #fff;
  }
	.award_txt {
		padding: 0 2rem 5rem;
		margin: 0 auto;
	}
}


/* ここから追加 SPのみ*/
@media screen and (max-width: 767px) {
	.award_txt {
		padding: 0 2rem 5rem;
		margin: 0 auto;
	}
}


/*---- 追加共通 ----*/
.wrap_tab_area .tab_area .box_area, .wrap_tab li, .base_prod.bdr li {
	border: none;
	background-color: #fff;
}
.wrap_tab_area, #ttl_hakodate, .wrap_tab, #area>div {
	background-color: #e7f4ff;
}
.award_txt {
	max-width: 1000px;
	padding-bottom: 5rem;
	margin: 0 auto;
}
.wrap_tab_btn .tab_btn.active::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 2px solid #cba719;
}
.wrap_tab_btn .tab_btn.active {
	background: #cba719;
	color: #fff;
	z-index: 20;
	position: relative;
}
.tab_area .box_area {
	background-color: #fff;
}

.wrap_tab_btn .tab_btn {
	width: calc(100%/4 - 5px);
	height: 4em;
	text-align: center;
	padding: 5px;
	background: #fff;
	color: #cba719;
	font-size: 1.5rem;
	font-weight: bold;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	border-radius: 0;
}
.wrap_tab_area {
	width: 94%;
	margin: 0 auto;
	border: solid 3px #cba719;
}
#ttl_hakodate h2 img {
	width: 78%;
	margin: 0 auto;
}
.box_area {
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25)
}

/*----- 2025.10 青函クーポン -----*/
.wrap_container {
	border: solid 2px #16377a;
	width: 56%;
	padding: 20px 20px;
}
.wrap_container .inner_ttl {
	padding-bottom: 10px;
	border-bottom: solid 1px #222;
}
.wrap_container .inner_ttl h2 {
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.3;
	color: #222;
}
.wrap_container .inner_ttl h2 .area_color01 {
	color: #e01998;
}
.wrap_container .inner_ttl h2 .area_color02 {
	color: #7362a5;
}
.wrap_container .inner_ttl h2 .area_color03 {
	color: #03a17e;
}
.wrap_container .inner_text {
	padding: 10px 20px 20px;
	/* display: flex;
	flex-direction: column; */
}
.wrap_container .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 10px;
}
.wrap_container .category .item_label {
  width: 64px;
  padding: 2px 10px;
  background-color: #dceaf7;
  color: #0070c0;
  text-align: center;
  flex-shrink: 0;
}
.wrap_container .category .period_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 72%;
  text-align: left;
}
/* .wrap_container .term {
	display: grid;
	grid-template-columns: 0.8fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
} */

.wrap_container .term>.period_block {
	display: grid;
	grid-template-columns: 0.9fr 1fr 1fr;
	grid-template-rows: auto;
	gap: 10px 0;
}
.wrap_container .term>.period_block.entry .item_label {
	grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.wrap_container .term>.period_block.entry .item_detail {
	grid-column: 2 / 4;
  grid-row: 1 / 2;
}


.wrap_container .term>.period_block.target .item_label {
	grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.wrap_container .term>.period_block.target .item_detail {
	grid-column: 2 / 4;
  grid-row: 2 / 3;
}

/* .wrap_container .term>.period_block.entry {
	grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.wrap_container .term>.period_block.target {
	grid-column: 1 / 3;
  grid-row: 2 / 3;
} */
.wrap_container .price_box {
	font-weight: bold;
	font-size: 1.8rem;
}
.wrap_container .price_box .u_line {
  background: linear-gradient(transparent 60%, #ffcccc 60%);
}
.wrap_container .price_inner {
	font-size: 2.6rem;
	color: #ff0000;
}
/* ボタン */
.wrap_container .btn_list {
	display: flex;
  justify-content: space-evenly;
	gap: 10px;
}
.wrap_container .btn_item .btn_label a {
	color: #fff;
	padding: 8px;
	display: block;
	text-align: center;
	font-weight: bold;
	position: relative;
	background-color: #16377a;
	border-radius: 6px;
}
.wrap_container .btn_item .btn_label a::after {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 6%; /* 右 */
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.wrap_container .btn_item .btn_label a:hover {
	text-decoration: none;
	opacity: .7;
}
/* ボタンが1つの場合 */
.wrap_container .btn_item.btn01 {
	width: 68%;
}
.wrap_container .btn_item .btn_label a {
	padding: 10px;
}
/* ボタンが2つの場合 */
.wrap_container .btn_item.btn02 {
	width: calc((100% - (10px * 1)) / 2);
}

/*----- 2025.10 函館・大沼クーポン 2カラムカルーセル-----*/
.clm_2.campaign .wrap_container {
	padding: 20px;
	border: none;
}
.clm_2.campaign .wrap_slide .swiper .swiper-wrapper .swiper-slide {
	border: solid 2px #16377a;
}
.clm_2.campaign .wrap_container .inner_text {
	padding: 20px 0px 20px;
}
.clm_2.campaign .wrap_container .term>.period_block {
	grid-template-columns: 1fr 1fr 1fr;
}
.clm_2.campaign .wrap_container .category .period_block {
	width: 61%;
}
.clm_2.campaign .wrap_container .category .period_block.flexst {
	justify-content: flex-start;
}
.clm_2.campaign .wrap_container .gap0 .term>.period_block {
	gap: 0;
}
/* .clm_2.campaign .wrap_container .gap0 .category {
	padding: 0 0px 10px;
	align-items: center;
} */

/* ----------SPのみ---------- */
@media screen and (max-width: 767px) {
	.wrap_container {
		width: 100%;
		padding: 20px 10px;
	}
	.wrap_container .category {
		padding: 0;
		align-items: center;
		margin-bottom: 10px;
	}
	.wrap_container .category .period_block {
		width: 100%;
		margin-bottom: 0;
	}
	.wrap_container .term>.period_block {
		display: block;
	}
	.wrap_container .term>.period_block.target  {
		margin-top: 10px;
	}
	.wrap_container .btn_list {
		display: flex;
		gap: 10px;
    flex-direction: column;
	}
	.wrap_container .btn_item.btn01 {
		width: 100%;
	}
	/* ボタンが2つの場合 */
	.wrap_container .btn_item.btn02 {
		width: 100%;
	}
	/*----- 2025.10 函館・大沼クーポン 2カラムカルーセル-----*/
	.clm_2.campaign .wrap_container {
		padding: 10px;
	}
	.clm_2.campaign .wrap_container .category .period_block {
		width: 78%;
	}
	.wrap_container .category .period_block {
		gap: 10px;
	}
}

/*----- カルーセル -----*/
.wrap_slide .swiper {
	overflow: hidden;
	position: relative;
	padding: 0 3% 40px;
}
.wrap_slide .swiper .swiper-wrapper .swiper-slide{
  width: 100%;
}
.wrap_slide .swiper .swiper-pagination {
  bottom: 0;
}
.wrap_slide .cmn_contents {
  margin: auto;
}
.base_prod {
  margin-bottom: 0;
}
.clm_3 .base_prod.clm1 li, .base_prod.side_box.clm1 li {
  padding: 10px 10px 0;
}
.clm_3 .cm_btn .base_prod.clm1 li, .cm_btn .base_prod.side_box.clm1 li {
  padding: 0 10px;
}
/* ボックスの高さ揃え */
.wrap_slide .swiper .swiper-slide {
  height: auto;
}
.wrap_slide .swiper .swiper-slide .box_content,
.clm_3 .box_content {
  height: 100%;
}

.wrap_slide .swiper .swiper-slide .box_content {
	display: flex;
  flex-direction: column;
	flex: 1 auto;
}
.campaign .coupon .aem-Grid.aem-Grid--default--6>.aem-GridColumn.aem-GridColumn--default--6:has(.btn_01) {
	flex: 1 auto;
	align-content: flex-end;
}
/* 商品コンポーネントのページネーション */
.box_content .base_prod .swiper-button-next,
.box_content .base_prod .swiper-button-prev,
.box_content .base_prod .swiper-pagination {
  display: none !important;
}
/* 前へ/後ろへボタン */
.wrap_slide {
  position: relative;
}
/* 前へ/後ろへボタン */
.wrap_slide .swiper-button-prev,
.wrap_slide .swiper-button-next {
  display: block !important;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -15px;
  -webkit-filter: drop-shadow(1px 1px 5px rgba(160,160,160,0.2));
          filter: drop-shadow(1px 1px 5px rgba(160,160,160,0.2));
}
.wrap_slide .swiper-button-prev.swiper-button-disabled,
.wrap_slide .swiper-button-next.swiper-button-disabled
{
  opacity: .35;
}
.wrap_slide .swiper-button-prev::before,
.wrap_slide .swiper-button-next::after
 {
  top: 0%;
  bottom: 0;
  right: 14px;
  width: 9px;
  height: 9px;
  content: "";
  position: absolute;
  margin: auto;
  transform: rotate(-45deg);
}
.wrap_slide .swiper-button-prev::before {
  transform: rotate(-45deg);
  left: 12px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.wrap_slide .swiper-button-next::after {
  transform: rotate(-45deg);
  right: 12px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.wrap_slide .swiper-button-prev,
.wrap_slide .swiper-button-next
 {
  position: absolute;
  /* border: solid 1px #222; */
  width: 30px;
  height: 30px;
  border-radius: 999px;
  top: 48%;
	background-color: #16377a;
}
.wrap_slide .swiper-button-next
 {
	z-index: 3;
	right: -8px;
	/* right: 1px; */
}
.wrap_slide .swiper-button-prev
 {
	left: -8px;
	z-index: 3;
	/* left: 1px; */
}
/* .wrap_slide .swiper-button-prev {
  left: -50px;
} */
/* .wrap_slide .swiper-button-next {
  right: -50px;
} */
/* カルーセル PCのみ */
@media screen and (min-width: 768px) {
	.br_sp {
  	display: none;
	}
  .cmp-text.tx_lead, .cmp-text.tx_lead p {
    text-align: center !important;
  }
  .wrap_slide {
    position: relative;
  }
	.wrap_slide .swiper {
    padding: 0 0 30px;
  }
	/* 前へ/後ろへボタン */
	.wrap_slide .swiper-button-prev.swiper-button-disabled,
	.wrap_slide .swiper-button-next.swiper-button-disabled {
    opacity: .35;
  }
	/* カルーセルなし 非表示 */
	.wrap_slide.no_swipe .swiper-button-prev,
	.wrap_slide.no_swipe .swiper-button-next,
	.wrap_slide.no_swipe .swiper-pagination {
		display: none !important;
	}
	.campaign .plan .swiper-container .swiper-button-next, .campaign .plan .swiper-container .swiper-button-prev, .campaign .plan .swiper-container-horizontal>.swiper-pagination-bullets {
		display: none;
	}
	/* クーポンのカルーセル */
	.wrap_slide .swiper .swiper-wrapper .swiper-slide{
		display: flex;
  	flex: 1 auto;
	}
	/* .campaign .coupon .swiper-wrapper {
		justify-content: center;
		margin-right: -10px;
	} */
	.wrap_container .price_box {
    letter-spacing: 1px;
	}
}
.box_content .wrap_img.jretravel-image {
  aspect-ratio: 160 / 99;
}/*画像表示*/

/*----- カルーセル 青函 -----*/
.campaign.clm_2 .wrap_container {
	width: 100%;
}