@charset "utf-8";
/* CSS Document */
.product__wrapper, .product__notes--contents {
  max-width: 992px;
  margin: auto;
}
.product__list--title {
  font-weight: bold;
}
.product__list--title--airport {
  display: inline-block;
  font-size: 1em;
}
.product__list--minmax {
  font-size: min((32vw / 7.5), 16px);
}
.product__list--type {
  font-size: min((20vw / 7.5), 12px);
}
.product__notes--wrapper + .product__notes--wrapper {
  margin-top: min((25vw / 7.5), 15px);
}
.product__notes {
  font-size: min((20vw / 7.5), 11.5px);
  line-height: 1.3;
  .is-pc & {
    line-height: 1.4;
  }
}
.product__list + .product__notes {
  margin-top: 1.25em;
}
.product__notes--title {
  font-weight: bold;
  margin-bottom: .25em;
}
.product__notes--item {
  padding-left: 1.5em;
  text-indent: -1.5em;
  &:not(:first-child) {
    margin-top: .3em;
  }
  &::before {
    content: "※";
    margin-right: .5em;
  }
}
/*SPのみ*/
.is-sp .product__wrapper {
  .product:not(:last-child) {
    margin-bottom: min((50vw / 7.5), 30px);
  }
  .product__title {
    display: grid;
    justify-items: center;
    align-items: center;
    height: min((97vw / 7.5), 50px);
    font-size: min((38vw / 7.5), 20px);
    line-height: 1.2;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background: #7c5955;
    margin-bottom: min((28vw / 7.5), 20px);
  }
}
.is-sp .product__list {
  grid-template-columns: 1fr;
  gap: min((20vw / 7.5), 20px);
}
.is-sp .product__list--inner {
  grid-template-columns: min((240vw / 7.5), 240px) 1fr;
}
.is-sp .product__list--image-wrapper {
  padding: min((20vw / 7.5), 10px) min((20vw / 7.5), 8px);
  padding-right: 0;
}
.is-sp .product__list--image {
  height: auto;
  aspect-ratio: 112 / 74.5;
}
.is-sp .product__list--text-wrapper {
  gap: min((20vw / 7.5), 20px) 0;
}
/*PCのみ*/
.is-pc .product__wrapper {
  --gap-yoko: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px var(--gap-yoko);
  padding-bottom: 40px;
  #product-tour {
    grid-column: span 2;
  }
  [id^="product-a"]:has(.product__list--item:nth-child(3)) {
    grid-column: span 2;
  }
  [id^="product-a"]:not(:has(.product__list--item:nth-child(3))) {
    display: grid;
    grid-template-rows: auto 1fr;
    .product__list {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--gap-yoko);
      height: 100%;
    }
  }
  .product__title {
    text-align: center;
    margin-bottom: 20px;
  }
  .product__list--inner {
    border-color: #c4c4c4;
    box-shadow: 3px 3px 0px 0px rgb(0 0 0 / 23%);
  }
}
.is-pc .product__notes--contents {
  padding-bottom: 50px;
}