@charset "UTF-8";
/*
|---------------------------------------------------------------
| bluelegendsグッズ
|---------------------------------------------------------------
*/
.plpage * {
  min-width: 0;
  box-sizing: border-box;
}
.plpage *[id] {
  scroll-margin-top: var(--sp-header-height, 80px);
}
@media (min-width: 750.02px) {
  .plpage *[id] {
    scroll-margin-top: var(--pc-header-height, 150px);
  }
}

/* 終売 */
.plpage .is-finished {
  background: var(--plpage-finished-bgcolor, #6D6D6D);
}

/* Device */
@media (min-width: 750.02px) {
  .plpage .d-none--pc {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .plpage .d-none--sp {
    display: none !important;
  }
}

/* Container */
.pl-container {
  max-width: calc(var(--plpage-container-maxwidth, 1140px) + var(--plpage-container-padding, 15px) * 2);
  padding-left: var(--plpage-container-padding, 15px);
  padding-right: var(--plpage-container-padding, 15px);
  margin-left: auto;
  margin-right: auto;
}
.pl-container .pl-container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 750px) {
  .pl-container {
    padding-left: var(--plpage-container-padding, 20px);
    padding-right: var(--plpage-container-padding, 20px);
  }
  .pl-container .pl-container {
    padding-left: 0;
    padding-right: 0;
  }
}

/*
 * Main
------------------------------------------------*/
.plpage {
  display: block;
  width: 100%;
  color: #000000;
  background: #ffffff;
}
.plpage__header {
  display: block;
  width: 100%;
  margin: 0 0 25px;
}
@media (min-width: 750.02px) {
  .plpage__header {
    margin-bottom: 50px;
  }
}
.plpage__header__image {
  display: block;
  width: 100%;
  margin: 0 0 25px;
  padding: 0;
}
@media (min-width: 750.02px) {
  .plpage__header__image {
    margin-bottom: 40px;
  }
}
.plpage__header__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.plpage__header__title {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 1.35;
  font-weight: bold;
  text-align: center;
  margin: 0 0 15px;
  padding: 0;
}
@media (min-width: 750.02px) {
  .plpage__header__title {
    font-size: min(40px, 3.51vw);
    margin-bottom: 25px;
  }
}
.plpage__header__lead {
  display: block;
  width: 100%;
  font-size: clamp(12.5px, 1.67vw, 20px);
  line-height: 1.36;
  text-align: center;
  margin: 0 0 1em;
}
.plpage__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0 40px;
}

.plpage__term {
  display: block;
  width: 100%;
  margin: 0 0 clamp(25px, 3.33vw, 50px);
}
.plpage__lineup {
  display: block;
  width: 100%;
}

/*
 * Terms
------------------------------------------------*/
.pl-term {
  display: block;
  width: 100%;
  font-size: clamp(11.5px, 1.53vw, 20px);
  line-height: 1.5;
  padding: 0.65em 0.25em;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #212F4C;
}

/*
 * Lineup
------------------------------------------------*/
.pl-lineups {
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 10px;
}
@media (min-width: 750.02px) {
  .pl-lineups {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    gap: 30px 15px;
  }
}

.pl-goods {
  container-type: inline-size;
  display: block;
  width: 100%;
  padding: 0;
}
.pl-goods__layout {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: clamp(12.5px, 7.99cqw, 21px);
}
.pl-goods__layout__image {
  display: block;
  width: 100%;
}
.pl-goods__layout__body {
  width: 100%;
  padding: 0.5em 0.25em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  visibility: var(--pl-grid-goods-body-visibility, hidden);
  opacity: var(--pl-grid-goods-body-opacity, 0);
  transition: var(--pl-grid-goods-body-transition);
}
.pl-goods:hover {
  --pl-grid-goods-body-transition: opacity 0.4s cubic-bezier(0.42, 0.03, 0.4, 0.93), visibility 0s;
  --pl-grid-goods-body-opacity: 1;
  --pl-grid-goods-body-visibility: visible;
}

.pl-goods-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-color: #eee;
}
.pl-goods-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pl-goods-name {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  word-break: normal;
  margin: 0;
  padding: 0 0.5em;
  font-size: 1em;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}

.pl-goods-price {
  display: block;
  width: 100%;
  margin: auto 0 0;
  font-size: 1em;
  font-weight: 700;
  text-align: right;
  line-height: 1.25;
}

.pl-goods-nav {
  display: block;
  width: 100%;
}
.pl-goods-nav__btn {
  display: block;
  width: 100%;
  box-shadow: none;
  outline: 0 !important;
  text-decoration: none !important;
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.65em 1.75em;
  text-align: center;
  position: relative;
  color: #ffffff;
  background: #253D5B;
}
.pl-goods-nav__btn[href]::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
  border-width: 0.5em 0 0.5em 0.71em;
  position: absolute;
  top: 0;
  left: auto;
  right: 1.04em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
