@charset "UTF-8";

/*----------------------------------------
	TOPページ専用
----------------------------------------*/

/* main-visual
----------------------------------------*/
.main-visual {
  position: relative;
  color: #fff;
  height: 100svh;
  background: #b59046;
  overflow: hidden;
}

.main-visual video {
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}


.main-visual__text {
  position: absolute;
  top: 100px;
  left: 18px;
}

.main-visual__title {
  width: 340px;
}

.main-visual__catch {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  margin-top: 100px;
}

@media screen and (min-width: 768px),
print {
  .main-visual__text {
    left: 120px;
  }

  .main-visual__title {
    justify-self: start;
    width: 28vw;
  }

  .main-visual__catch {
    justify-self: start;
    font-size: 36px;
  }

  .main-visual__image {
    flex-shrink: 0;
    width: 40%;
  }
}

/* アイテム説明(Reunited Perfumes)
----------------------------------------*/
.story {
  padding: 20px;
  text-align: center;

  position: relative;
}

.story__bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: -1;
}

.story__bg img {
  filter: opacity(70%);
}

.story__image {
  max-width: 420px;
  max-height: 420px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin-bottom: 30px;
}

.story__title>span {
  display: inline-block;
}

.story__desc {
  margin-top: 20px;
  font-size: 12px;
  text-align: justify;
}

@media screen and (min-width: 768px),
print {
  .story {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    width: 100%;
    height: calc(100% - 100px);
    padding: 0 8%;
    text-align: left;
  }

  .story__bg img {
filter: opacity(30%);
  }

  .story__body {
    width: 50%;
  }

  .story__image {
    width: 50%;
    margin-bottom: 0;
    transform: translateY(60px);
  }

  .story__title {
    font-size: 20px;
  }

  .story__desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.25em;
    text-align: justify;
  }

  .story__button {
    margin-top: 160px;
  }
}

/* products
----------------------------------------*/
.pickup-list .item__caption {
  position: relative;
}

.pickup-list .item__caption i {
  position: absolute;
  left: 0;
  top: 0.25em;
}

/* アイテム説明(Bulgarian Rose)
----------------------------------------*/
.alternate {
  display: flex;
  flex-direction: column-reverse;
  margin-left: -20px;
  margin-right: -20px;
}

.alternate__body {
  padding: 30px;
}

.alternate__thumb img {
  max-width: none;
  width: 100%;
  height: 100%;
}

.alternate__txt {
  font-size: 12px;
  margin-top: 20px;
}

@media screen and (min-width: 992px),
print {
  .alternate {
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
  }

  .alternate._reverse {
    flex-direction: row-reverse;
  }

  .alternate__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 90px 90px 0;
    width: max-content;
  }

  .alternate__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.045em;
    }
    
    .alternate__txt {
      margin-top: 60px;
      line-height: 3;
      text-align: justify;
    }

  .alternate__txt {
    list-style: 2;
  }

  .alternate__thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 693 / 694;
    min-width: 50%;
  }

  .alternate__thumb img {
    object-fit: cover;
  }

  .alternate._reverse .alternate__body {
    padding-left: 90px;
    padding-right: 0;
}
}

/* info
----------------------------------------*/
.info {
  max-width: 100%;
}

.info__item {
  border-top: 1px solid rgba(41, 41, 41, .1);
}

.info__item:last-child {
  border-bottom: 1px solid rgba(41, 41, 41, .1);
}

.info__link {
  display: block;
  position: relative;
  padding: 2rem .7rem 2rem .7rem;
  transition: color .3s ease-out;
  text-decoration: none;
}

.info__description{
  padding: 0 2.5rem 1rem .7rem;
}

.info__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  width: .8rem;
  height: 1.57rem;
  background: url("../img/arrow.svg") no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 992px),
print {
  .info {
    margin: 5.7rem auto 0;
    width: 46rem;
  }

  .info__link {
    display: flex;
    position: relative;
    padding: 3rem 4rem 2rem .7rem;
  }

  .info__link:hover .info__date,
  .info__link:hover .info__txt {
    color: #b59046;
  }

  .info__date {
    min-width: 6.2rem;
    font-weight: 400;
    line-height: 1.2857142857;
    color: #949494;
    transition: color .3s ease-out;
  }

  .info__txt {
    margin-left: 2.6rem;
    font-weight: 500;
    line-height: 1.3846153846;
    transition: color .3s ease-out;
    font-feature-settings: "pcap" on;
  }
}

/* News「詳しく見る」を中央寄せ（grid内にある場合） */
#news .grid .section__button {
  grid-column: 1 / -1;
  text-align: center;
}
#news .section__button .button {
  display: inline-block;
}