@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root{
  --content-color-base: #2C2A29;
  --content-color-red: #EC2A29;
  --content-color-blue: #2D4480;
  --content-color-green: #01776B;
  --content-color-beige: #F2F0DA;
  --bg-img-setting: no-repeat center center / contain;
  --font-sans: 'Noto Sans JP', serif;
}

/* ------------------------------------------------
template:ツアーカセット
------------------------------------------------ */
.product-list{
  display: flex;
  flex-direction: column;
  gap: calc(16vw / 3.75);
}
.product-list.is-wide>li>a{
  display: flex;
  flex-direction: column;
  background: #FFF;
  border-radius: calc(8vw / 3.75);
  box-shadow: 0 0 4px rgba(0 0 0 / 30%);
  overflow: hidden;
}
.product-list.is-wide>li>a:hover{
  opacity: .8
}
.product-img{
  width: calc(335vw / 3.75);
  aspect-ratio: 335 / 223
}
.product-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item{
  flex: 1;
  padding: calc(32vw / 3.75) calc(16vw / 3.75) 0;
  display: flex;
  flex-direction: column;
  gap: calc(8vw / 3.75);
  position: relative
}
.product-note{
  display: contents
}
.product-sort{
  background: #697180;
  font-size: calc(12vw / 3.75);
  font-weight: bold;
  text-align: center;
  color: #FFF;
  line-height: 1.5;
  padding: calc(2vw / 3.75) calc(8vw / 3.75);
  position: absolute;
  top: 0;
  left: 0
}
.product-dep{
  font-size: 12px;
  font-weight: bold;
}
.product-title{
  font-size: 20px;
  font-weight: bold;
}
.product-point{
  font-size: 14px;
}
.product-date{
  font-size: 14px;
}
.product-date::after{
  content: "出発";
  display: inline-block;
}
.product-price{
  display: flex;
  justify-content: flex-end;
  padding: calc(8vw / 3.75) calc(16vw / 3.75) calc(16vw / 3.75)
}
.price-txt{
  font-size: 20px;
  font-weight: bold;
  color: #DF0D00;
}

/* ------------------------------------------------
ページ下部特集バナー
------------------------------------------------ */
.bnr-list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 3.75);
  justify-content: center;
}
.tokushu-bnr{
  width: calc((100% - (20vw / 3.75)) / 2)
}
.tokushu-bnr>a>img{
  border-radius: 8px
}
div[class*="-bnr"]>a{
  display: block;
}