@charset "UTF-8";
/*----------------------------------------------------
  植物生まれのオレンジ地肌シャンプーS
----------------------------------------------------*/
.shampoo {
  background-color: #fff;
}

/* 特徴
----------------------------------------------------*/
.feature__intro .feature__title::after {
  content: none;
}
.feature__intro .feature__title__note {
  position: relative;
  z-index: 1;
  margin-block-start: 10px;
  text-align: center;
  color: var(--color-green-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-set18);
  line-height: 1.7;
}
.feature__intro .feature__title__note::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-block-start: 10px;
  height: 3px;
  background-image: radial-gradient(circle at center, #f7931e 1.4px, transparent 2px);
  background-size: 12px 100%;
  background-repeat: repeat-x;
}
.feature__intro .feature__title__note__line {
  display: inline-block;
}
.feature__intro .feature__title__note__line:last-child {
  border-block-start: 1px solid var(--color-green-accent);
  margin-block-start: 4px;
}

/* カート・口コミ
----------------------------------------------------*/
.product + .product {
  padding-block-start: 20px;
}

.product__title {
  display: grid;
  row-gap: 8px;
}

.product__title__label {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-set20);
  line-height: 1.6;
  text-align: center;
  padding-block: 2px;
}

.product__title__heading {
  color: #000;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-set20);
  line-height: 1.6;
  text-align: center;
}

.product__title__heading__accent {
  font-weight: 700;
  color: var(--color-blue-accent);
  font-size: var(--font-size-set20);
}

.product__pop {
  position: absolute;
}
.product__pop--recycle {
  width: 76px;
  left: -20px;
  top: -8px;
}
.product__pop--set {
  width: 90px;
  right: -20px;
  bottom: 8px;
}

/* 使い方
----------------------------------------------------*/
.howto {
  padding-block-end: 40px;
}

.howto__refill {
  padding-block: 40px;
  padding-inline: 20px;
  display: grid;
  row-gap: 32px;
  background-color: #fff;
  border-radius: 10px;
}

.howto__refill__label {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-set18);
  line-height: 1.7;
  text-align: center;
  padding-block: 2px;
}

.howto__refill__steps {
  display: grid;
  row-gap: 32px;
}
@media screen and (width > 750px) {
  .howto__refill__steps {
    grid-template-columns: 1fr auto 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: start;
  }
  .howto__refill__steps .howto__refill__label {
    grid-column: 1/-1;
  }
}

.howto__refill__step {
  display: grid;
  row-gap: 16px;
  justify-items: center;
}

.howto__refill__step__photo {
  position: relative;
  width: 100%;
  max-width: 200px;
}
.howto__refill__step__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.howto__refill__step__number {
  position: absolute;
  z-index: 1;
  left: -45px;
  top: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #75bc2a;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-set28);
  line-height: 1;
  padding-block-end: 4px;
}
@media screen and (width > 750px) {
  .howto__refill__step__number {
    left: -55px;
    width: 45px;
    height: 45px;
  }
}

.howto__refill__step__text {
  font-family: var(--font-body);
  font-size: var(--font-size-set15);
  line-height: 1.8;
}

.howto__refill__dot {
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle at center, #75BA29 1.4px, transparent 2px);
  background-size: 12px 100%;
  background-repeat: repeat-x;
}
@media screen and (width > 750px) {
  .howto__refill__dot {
    width: 3px;
    height: 100%;
    background-image: radial-gradient(circle at center, #75BA29 1.4px, transparent 2px);
    background-size: 100% 12px;
    background-repeat: repeat-y;
  }
}

.howto__refill__note {
  display: grid;
  row-gap: 32px;
}

.howto__refill__noteList {
  font-family: var(--font-body);
  font-size: var(--font-size-set15);
  line-height: 1.8;
}
.howto__refill__noteList li {
  position: relative;
  padding-inline-start: 18px;
}
.howto__refill__noteList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-orange);
}

.howto__refill__annotation {
  margin-block-start: 8px;
  color: #7d7d7d;
  font-family: var(--font-body);
  font-size: var(--font-size-set12);
  line-height: 1.8;
}

/* 購入する ボタン（コンテンツ内導線）
----------------------------------------------------*/
.p-orange-buyButton__products img {
  height: 77px;
}