/*color*/
:root{
  --main-color: #88a2c1;
  --white: #fff;
  --text: #4c4949;
}

img {
  width: 100%;
}

.pc- {
  display: block;
}
.sp- {
  display: none;
}

/*mv*/
.jill-mv {
  margin-bottom: 24px;
}

/*concept*/
.jill-concept {
  padding: 32px;
  text-align: center;
}
.jill-concept__logo {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 24px;
}
.jill-concept__lead {
  margin-bottom: 1em;
}

/*gift*/
.jill-gift {
  position: relative;
}
.jill-gift__inner {
  margin: 100px auto;
  background:center / cover url("/img/e/jillstuart-0425/gift_bg.png") repeat-y;
  padding: 64px 64px 0;
  box-sizing: border-box;
}
.jill-gift__title {
  font-size: 24px;
  width: 67%;
  padding: 24px;
  text-align: center;
  color: var(--white);
  background: var(--main-color);
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
}
.jill-giftList {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 4%;
  margin: 56px auto;
}
.jill-giftItem {
  width: 48%;
  min-height: 650px;
  background: var(--white);
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid var(--main-color);
  position: relative;
  margin-bottom: 80px;
}
.jill-giftItem__kinds {
  font-size: 18px;
  width: 60%;
  padding: 16px;
  margin-top: -24px;
  text-align: center;
  color: var(--white);
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.jill-giftItem__img {
  width: 80%;
  margin: 0 auto;
}
.jill-giftItem__text {
  margin-top: 16px;
  line-height: 1.3;
}
.jill-giftItem__name {
  font-size: 14px;
}
.jill-giftItem__name--set {
  padding-left: 1em;
  text-indent: -1em;
}
.jill-giftItem__price {
  font-size: 20px;
  margin: 1em 0;
}
.jill-giftItem__note {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}
.jill-giftItem__cart {
  width: 70%;
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 33px;
  color: var(--white);
  background-image: linear-gradient(90deg, #9eb7d4 ,var(--main-color));
  margin: 40px auto;
  transition: .3s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.jill-giftItem__cart--end {
  background-image: none;
  background: #999;
}
.jill-giftItem__cart:hover {
  opacity: .8;
  transition: .3s;
}
.jill-giftItem__cart--end:hover {
  opacity: 1;
}

@media screen and (max-width: 759px) {

  .pc- {
    display: none;
  }
  .sp- {
    display: block;
  }

  /*mv*/
  .jill-mv {
    margin-bottom: 0;
  }

  /*concept*/
  .jill-concept {
    padding: 32px 16px;
  }

  /*gift*/
  .jill-gift__title {
    font-size: 18px;
    top: -1%
  }
  .jill-gift__inner {
    background-size: auto;
    padding: 24px;
    margin-top: 50px;
  }
  .jill-giftList {
    width: 100%;
    display: block;
  }
  .jill-giftItem {
    width: 100%;
    min-height: auto;
    padding: 16px 16px 24px;
  }
  .jill-giftItem__img {
    width: 100%;
    margin-top: 16px;
  }
  .jill-giftItem__cart {
    width: auto;
    position: static;
    transform: inherit;
  }
}