@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap");
@import url("https://use.typekit.net/hxc2ycx.css");
[class*=crossFade] {
  -webkit-animation-name: crossFade;
          animation-name: crossFade;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes crossFade {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes crossFade {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.anima > * {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: cubic-bezier(0.6, 0.2, 0.1, 1), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.6, 0.2, 0.1, 1), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.6, 0.2, 0.1, 1), opacity 1000ms, transform 750ms;
  transition: cubic-bezier(0.6, 0.2, 0.1, 1), opacity 1000ms, transform 750ms, -webkit-transform 750ms;
}
.anima.to--top, .anima.to--right, .anima.to--left, .anima.to--bottom {
  opacity: 1;
  will-change: opacity;
  -webkit-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, -webkit-transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, -webkit-transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, transform 1500ms, -webkit-transform 1500ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .anima.to--top, .anima.to--right, .anima.to--left, .anima.to--bottom {
    -webkit-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, -webkit-transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, -webkit-transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms, transform 1500ms, -webkit-transform 1500ms;
  }
}
.anima.to--top::after, .anima.to--right::after, .anima.to--left::after, .anima.to--bottom::after {
  content: "";
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  -webkit-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, -webkit-transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, -webkit-transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, transform 1500ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, transform 1500ms, -webkit-transform 1500ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .anima.to--top::after, .anima.to--right::after, .anima.to--left::after, .anima.to--bottom::after {
    -webkit-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, -webkit-transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, -webkit-transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, transform 1500ms;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1500ms, opacity 3000ms, transform 1500ms, -webkit-transform 1500ms;
  }
}
.anima.to--up > * {
  -webkit-transform: translate3d(0, 4rem, 0);
          transform: translate3d(0, 4rem, 0);
}
@media screen and (max-width: 768px) {
  .anima.to--up > * {
    -webkit-transform: translate3d(0, 10rem, 0);
            transform: translate3d(0, 10rem, 0);
  }
}
.anima.onView > * {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.anima.onView.to--up > * {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.anima.onView.to--right::after {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}
.anima.onView.to--left::after {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.anima.onView.to--bottom::after {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

#selfcare_210325 .mainVisual-image, #selfcare_210325 .mainVisual-caption, #selfcare_210325 .mainVisual-text {
  opacity: 0;
  will-change: opacity, transform;
  -webkit-transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, transform 750ms, -webkit-transform 750ms;
}
#selfcare_210325 .mainVisual-inner {
  will-change: opacity, transform;
  -webkit-transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, transform 750ms;
  transition: cubic-bezier(0.385, 0.145, 0.28, 0.925), opacity 1000ms, transform 750ms, -webkit-transform 750ms;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
#selfcare_210325 .mainVisual-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  -webkit-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1000ms, -webkit-transform 750ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1000ms, transform 750ms;
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94), width 1000ms, transform 750ms, -webkit-transform 750ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
#selfcare_210325 .mainVisual-caption {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
#selfcare_210325 .mainVisual-text {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
#selfcare_210325 .mainVisual.onView .mainVisual-image, #selfcare_210325 .mainVisual.onView .mainVisual-caption, #selfcare_210325 .mainVisual.onView .mainVisual-text {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}
#selfcare_210325 .mainVisual.onView .mainVisual-inner::before, #selfcare_210325 .mainVisual.onView .mainVisual-inner::after {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 * 0.133334vw);
  }
  html .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 62.5%;
  }
  html .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) and (orientation: portrait) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) and (orientation: landscape) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}

#Contents {
  overflow: hidden;
}

.bredlist.lp {
  margin: 2rem auto;
  min-width: unset;
  max-width: 120rem;
}
@media screen and (max-width: 768px) {
  .bredlist.lp {
    max-width: 70rem;
    margin: 3rem auto;
  }
}

.main-area {
  max-width: 120rem;
}
@media screen and (max-width: 768px) {
  .main-area {
    max-width: none;
  }
}

#selfcare_210325 *,
#selfcare_210325 *::after,
#selfcare_210325 *::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#selfcare_210325 figure,
#selfcare_210325 figcaption,
#selfcare_210325 div[class*=block],
#selfcare_210325 div[class*=look],
#selfcare_210325 div[class*=__wrap],
#selfcare_210325 div[class*=-inner],
#selfcare_210325 div[class*=__image],
#selfcare_210325 div[class*=__item],
#selfcare_210325 div[class*=__video],
#selfcare_210325 div[class*=__caption] {
  position: relative;
  width: 100%;
}
#selfcare_210325 div[class*=__video] {
  line-height: 0;
}
#selfcare_210325 img, #selfcare_210325 video {
  position: relative;
  width: 100%;
}
#selfcare_210325 a:link {
  display: block;
}
#selfcare_210325 a:link:hover {
  cursor: pointer;
}
#selfcare_210325 a.no_link {
  pointer-events: none;
}

#selfcare_210325 {
  /* ---------- Text Area ---------- */
  font-family: pragmatica, "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック Medium", "メイリオ", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  text-align: justify;
  text-justify: inter-cluster;
  text-justify: inter-character;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 {
    font-size: 2.4rem;
  }
}
#selfcare_210325 .mainVisual-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.23;
  color: #000000;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual-text {
    font-size: 2.6rem;
    line-height: 2.08;
  }
}
#selfcare_210325 .index-title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック Medium", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.82;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-title {
    font-size: 3.2rem;
    line-height: 1.66;
  }
}
#selfcare_210325 .index-category {
  font-size: 1.8rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-category {
    font-size: 3rem;
    line-height: 1.93;
  }
}
#selfcare_210325 .index-description {
  font-weight: 500;
  text-align: justify;
  text-justify: inter-cluster;
  text-justify: inter-character;
  line-height: 1.86;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-description {
    font-size: 2.3rem;
    line-height: 1.83;
  }
}
#selfcare_210325 .look-title {
  font-family: pragmatica, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.8rem;
  line-height: 0.89;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look-title {
    font-size: 5.6rem;
    line-height: 1.36;
  }
}
#selfcare_210325 .look-title > * {
  font-weight: inherit;
  font-size: inherit;
}
#selfcare_210325 .look-sub {
  font-size: 2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look-sub {
    font-size: 2.8rem;
  }
}
#selfcare_210325 .look .caption-text {
  font-weight: 500;
  text-align: justify;
  text-justify: inter-cluster;
  text-justify: inter-character;
  line-height: 1.86;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look .caption-text {
    line-height: 1.75;
  }
}
#selfcare_210325 .look .tag-list {
  font-family: pragmatica, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  font-size: 1.3rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-cluster;
  text-justify: inter-character;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look .tag-list {
    font-size: 2.2rem;
    line-height: 1.91;
    letter-spacing: 0.06em;
  }
}

#selfcare_210325 .look-title p {
  text-transform: uppercase;
}

.c-text {
  text-align: center;
}

.break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

#selfcare_210325 .look-sub .dash, #selfcare_210325 .index-category::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #000000;
}
#selfcare_210325 .look__image::before, #selfcare_210325 .index-block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
}
#selfcare_210325 .btn-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 38rem;
  margin: 15rem auto 16rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .btn-wrap {
    max-width: 67.5rem;
    margin: 15.2rem auto 20rem;
    height: 12rem;
  }
}
#selfcare_210325 .viewall {
  padding: 2.2rem 0;
  border: 1px solid #000000;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .viewall {
    padding: 4.5rem 0;
    font-size: 2.8rem;
  }
}

#selfcare_210325 .look__slider {
  position: relative;
}
#selfcare_210325 .look__slider .slick-dots {
  width: 2.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: -2.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look__slider .slick-dots {
    width: 5rem;
    bottom: -4rem;
    left: auto;
    right: 2rem;
  }
}
#selfcare_210325 .look__slider .slick-dots li {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
#selfcare_210325 .look__slider .slick-dots li button {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  color: transparent;
  background: #000000;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#selfcare_210325 .look__slider .slick-dots li button:hover, #selfcare_210325 .look__slider .slick-dots li button:focus {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look__slider .slick-dots li button {
    width: 1rem;
    height: 1rem;
  }
}
#selfcare_210325 .look__slider .slick-dots li.slick-active button {
  opacity: 1;
}

#selfcare_210325 .mainVisual {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual {
    padding-bottom: 15rem;
  }
}
#selfcare_210325 .mainVisual-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual-image {
    max-width: 75rem;
    margin: 0 auto;
  }
}
#selfcare_210325 .mainVisual-caption {
  width: 100%;
  max-width: 58.5rem;
  position: absolute;
  top: 31.5%;
  left: 3.5%;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual-caption {
    max-width: none;
    width: 75.8rem;
    top: 45.3%;
    left: -0.5rem;
    right: auto;
  }
}
#selfcare_210325 .mainVisual-text {
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual-text {
    padding-top: 8.7rem;
  }
}
#selfcare_210325 .mainVisual-subImage {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .mainVisual-subImage {
    max-width: 63.8rem;
    padding-top: 13.5rem;
  }
}
#selfcare_210325 .index-block {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 7.3rem 0;
}
#selfcare_210325 .index-block::before {
  background-color: #f7f7f7;
  width: 200vw;
  left: -100%;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-block {
    padding: 11.2rem 0 11rem;
  }
}
#selfcare_210325 .index-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 74rem;
  margin: 0 auto;
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-list {
    max-width: 70rem;
    margin-top: 9.2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-list > *:nth-child(4) .index-category {
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
}
#selfcare_210325 .index-title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-title {
    max-width: 59rem;
  }
}
#selfcare_210325 .index-title::before {
  content: "";
  width: 100%;
  height: 1.4rem;
  background-color: #c2a5c6;
  position: absolute;
  z-index: -1;
  bottom: 0.5rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-title::before {
    height: 2.2rem;
    bottom: 0.3rem;
  }
}
#selfcare_210325 .index-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 21.2rem;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-content {
    max-width: 33.5rem;
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
#selfcare_210325 .index-content:nth-child(3n) {
  margin-right: 0;
}
#selfcare_210325 .index-content:nth-child(n+4) {
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-content:nth-child(n+4) {
    margin-top: 0;
  }
}
#selfcare_210325 .index-content picture {
  display: block;
  max-width: 16.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-content picture {
    max-width: 22.5rem;
  }
}
#selfcare_210325 .index-content figcaption {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-content figcaption {
    margin-top: 3rem;
  }
}
#selfcare_210325 .index-category {
  display: inline-block;
  position: relative;
}
#selfcare_210325 .index-category::before {
  position: absolute;
  bottom: -0.8rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-category::before {
    bottom: -0.2rem;
  }
}
#selfcare_210325 .index-description {
  margin-top: 3.3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .index-description {
    margin-top: 3rem;
  }
}
#selfcare_210325 .section-list {
  position: relative;
  margin-top: 12.3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .section-list {
    margin-top: 15.6rem;
  }
}
#selfcare_210325 .look-sub {
  display: block;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look-sub {
    padding-bottom: 1.5rem;
  }
}
#selfcare_210325 .look-sub .dash {
  width: 100%;
  max-width: 5rem;
  margin: 0 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look-sub .dash {
    max-width: 10rem;
    margin: 0 2rem;
  }
}
#selfcare_210325 .look-title {
  position: relative;
  width: 100%;
}
#selfcare_210325 .look__image img + picture {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#selfcare_210325 .look__image-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#selfcare_210325 .look__image-inner > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .look__image-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#selfcare_210325 .block {
  position: relative;
}
#selfcare_210325 .block01 .look-title {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-title {
    z-index: 1;
  }
}
#selfcare_210325 .block01 .look__image-01 {
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look__image-01 {
    max-width: 67.5rem;
  }
}
#selfcare_210325 .block01 .look__image-01 img + picture {
  max-width: 34.6rem;
  top: 10.3rem;
  left: 7.4rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look__image-01 img + picture {
    max-width: 55rem;
    top: 26.3rem;
    left: 7.4rem;
  }
}
#selfcare_210325 .block01 .look__image-02 {
  max-width: 40rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look__image-02 {
    max-width: 52.5rem;
    margin: 0 auto;
  }
}
#selfcare_210325 .block01 .look__image-02 img + picture {
  max-width: 15.2rem;
  top: 7.1rem;
  right: 4.2rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look__image-02 img + picture {
    max-width: 24.3rem;
    top: 9.7rem;
    right: 1.5rem;
  }
}
#selfcare_210325 .block01 .look figure {
  max-width: 86rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look figure {
    max-width: 67.5rem;
  }
}
#selfcare_210325 .block01 .look-inner--top figure {
  margin-top: 5.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--top figure {
    margin-top: -4.5rem;
  }
}
#selfcare_210325 .block01 .look-inner--top figure figcaption {
  max-width: 34rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--top figure figcaption {
    max-width: none;
    margin-top: 7.2rem;
  }
}
#selfcare_210325 .block01 .look-inner--bottom {
  margin-top: -20.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom {
    margin-top: 11rem;
  }
}
#selfcare_210325 .block01 .look-inner--bottom figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom figure {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#selfcare_210325 .block01 .look-inner--bottom figure .look__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom figure .look__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#selfcare_210325 .block01 .look-inner--bottom figure figcaption {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  max-width: 46rem;
  bottom: -0.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom figure figcaption {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: none;
    bottom: 0;
    margin: 0 auto;
    margin-top: 5.3rem;
  }
}
#selfcare_210325 .block01 .look-inner--bottom figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 43rem;
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom figure figcaption .tag-list {
    max-width: none;
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#selfcare_210325 .block01 .look-inner--bottom figure figcaption .tag-list li {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block01 .look-inner--bottom figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block01 .look-inner--bottom figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block02 {
  margin-top: 15.2rem;
  padding-bottom: 2.7rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 {
    margin-top: 15rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look-sub {
    padding-bottom: 1.3rem;
  }
}
#selfcare_210325 .block02 .look-title {
  max-width: 50rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look-title {
    max-width: 64.5rem;
    margin-left: 3rem;
    z-index: 1;
  }
}
#selfcare_210325 .block02 .look__image-01 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-width: 50rem;
  margin-left: 6.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look__image-01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 60rem;
    margin-left: auto;
  }
}
#selfcare_210325 .block02 .look__image-01 img + picture {
  max-width: 11.7rem;
  top: 15.5rem;
  right: 4.7rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look__image-01 img + picture {
    max-width: 17.8rem;
    top: 12.7rem;
    right: 2.5rem;
  }
}
#selfcare_210325 .block02 .look__image-02 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 40rem;
  margin-top: 41rem;
  margin-left: 7.2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look__image-02 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 56.2rem;
    margin-top: 5rem;
    margin-left: 3.7rem;
  }
}
#selfcare_210325 .block02 .look__image-02 img + picture {
  width: 42.9rem;
  top: 8.3rem;
  left: -7.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look__image-02 img + picture {
    width: 67.3rem;
    top: 7.3rem;
    left: 2rem;
  }
}
#selfcare_210325 .block02 .look-inner {
  max-width: 103.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look-inner {
    max-width: 75rem;
  }
}
#selfcare_210325 .block02 .look figure {
  margin-top: -8.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look figure {
    margin-top: -3.7rem;
  }
}
#selfcare_210325 .block02 .look figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -23.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look figure figcaption {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 7.2rem;
    max-width: 67.5rem;
  }
}
#selfcare_210325 .block02 .look figure figcaption .caption-text {
  max-width: 40.7rem;
  position: relative;
  top: -64.3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look figure figcaption .caption-text {
    max-width: none;
    top: 0;
  }
}
#selfcare_210325 .block02 .look figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 45rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look figure figcaption .tag-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: none;
    margin-top: 2.6rem;
  }
}
#selfcare_210325 .block02 .look figure figcaption .tag-list li {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block02 .look figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block02 .look figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block03 {
  margin-top: 15.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 {
    margin-top: 14.8rem;
  }
}
#selfcare_210325 .block03 .look-sub {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look-sub {
    padding-bottom: 1.3rem;
  }
}
#selfcare_210325 .block03 .look-title {
  max-width: 45rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look-title {
    max-width: 69rem;
    margin: 0 auto;
    z-index: 1;
    text-align: right;
  }
}
#selfcare_210325 .block03 .look-title p {
  line-height: 1.24;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look-title p {
    line-height: 1.36;
  }
}
#selfcare_210325 .block03 .look__image-01 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-width: 45rem;
  margin-left: 6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look__image-01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 67.5rem;
    margin: 0 auto;
  }
}
#selfcare_210325 .block03 .look__image-01 img + picture {
  max-width: 13.3rem;
  top: 22.6rem;
  right: 3rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look__image-01 img + picture {
    max-width: 23rem;
    top: 30.3rem;
    right: 2.3rem;
  }
}
#selfcare_210325 .block03 .look__image-02 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 40rem;
  margin-top: 3.8rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look__image-02 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 52.5rem;
    margin: 0 auto;
    margin-top: 47.3rem;
  }
}
#selfcare_210325 .block03 .look__image-02 img + picture {
  max-width: 14.4rem;
  top: 27.3rem;
  left: 3.3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 .look__image-02 img + picture {
    max-width: 21.2rem;
    top: 35.5rem;
    left: 1.7rem;
  }
}
#selfcare_210325 .block03 figure {
  max-width: 91rem;
  margin: 0 auto;
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 figure {
    max-width: 75rem;
    margin-top: -4.4rem;
  }
}
#selfcare_210325 .block03 figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 figure figcaption {
    max-width: 67.5rem;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#selfcare_210325 .block03 figure figcaption .caption-text {
  max-width: 40rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 figure figcaption .caption-text {
    max-width: none;
    position: relative;
    top: -118.7rem;
  }
}
#selfcare_210325 .block03 figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 40rem;
  margin-top: 2.6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 figure figcaption .tag-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    margin-top: -24rem;
  }
}
#selfcare_210325 .block03 figure figcaption .tag-list li {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block03 figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block03 figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block04 {
  margin-top: 14.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 {
    margin-top: 8rem;
  }
}
#selfcare_210325 .block04 .look-title {
  max-width: 27rem;
  margin-left: 25rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look-title {
    max-width: 38.5rem;
    margin: 0 auto;
    text-align: center;
  }
}
#selfcare_210325 .block04 .look__image-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#selfcare_210325 .block04 .look__image-01 {
  max-width: 40rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look__image-01 {
    max-width: 48.8rem;
    margin-left: 7rem;
  }
}
#selfcare_210325 .block04 .look__image-01 img + picture {
  max-width: 10.2rem;
  top: 10.8rem;
  right: -2rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look__image-01 img + picture {
    max-width: 15.2rem;
    top: 10.5rem;
    right: -4.6rem;
  }
}
#selfcare_210325 .block04 .look__image-02 {
  max-width: 45rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look__image-02 {
    max-width: 60rem;
    margin: 0 auto;
    margin-top: 5rem;
  }
}
#selfcare_210325 .block04 .look__image-02 img + picture {
  max-width: 15rem;
  top: 26rem;
  left: 5.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look__image-02 img + picture {
    max-width: 21.2rem;
    top: 35.3rem;
    left: 6rem;
  }
}
#selfcare_210325 .block04 .look figure {
  max-width: 45rem;
  margin: 0 auto;
  margin-top: -1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look figure {
    max-width: 67.5rem;
    margin-top: 5.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#selfcare_210325 .block04 .look figure > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block04 .look figure figcaption {
  -ms-flex-item-align: end;
      align-self: flex-end;
  max-width: 32.5rem;
  margin-bottom: 2.5rem;
  margin-left: -6.2rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look figure figcaption {
    max-width: none;
    margin: 0 auto;
    margin-top: 7.5rem;
    -ms-flex-item-align: initial;
        align-self: initial;
  }
}
#selfcare_210325 .block04 .look figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look figure figcaption .tag-list {
    margin-top: 2.5rem;
  }
}
#selfcare_210325 .block04 .look figure figcaption .tag-list li:nth-child(even) {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block04 .look figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block05 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 {
    margin-top: 15.5rem;
  }
}
#selfcare_210325 .block05 .look {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  max-width: 98rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 75rem;
  }
}
#selfcare_210325 .block05 .look > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block05 .look-title {
  max-width: 24rem;
  margin-top: 7.2rem;
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-title {
    max-width: 36rem;
    margin-top: 0;
    left: 4.5rem;
    z-index: 1;
  }
}
#selfcare_210325 .block05 .look__image-01 {
  max-width: 45rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look__image-01 {
    max-width: 60rem;
  }
}
#selfcare_210325 .block05 .look__image-01 img + picture {
  max-width: 21.1rem;
  top: 7.8rem;
  left: 30.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look__image-01 img + picture {
    max-width: 33.5rem;
    top: 51.8rem;
    left: 32rem;
  }
}
#selfcare_210325 .block05 .look__image-02 {
  max-width: 45rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look__image-02 {
    max-width: 67.6rem;
  }
}
#selfcare_210325 .block05 .look-inner--top {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-width: 45rem;
  margin-left: 7.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--top {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 60rem;
    margin: 0 auto;
  }
}
#selfcare_210325 .block05 .look-inner--top figure {
  max-width: 45rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--top figure {
    max-width: 60rem;
    margin-top: -4.4rem;
  }
}
#selfcare_210325 .block05 .look-inner--bottom {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 45.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 75rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom figure .look__image {
    margin: 0 auto;
    margin-top: 48rem;
  }
}
#selfcare_210325 .block05 .look-inner--bottom figure figcaption {
  margin-top: 3.6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom figure figcaption {
    margin: 0 auto;
  }
}
#selfcare_210325 .block05 .look-inner--bottom figure figcaption .caption-text {
  max-width: 45rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom figure figcaption .caption-text {
    max-width: 67.5rem;
    margin: 0 auto;
    position: relative;
    top: -142rem;
  }
}
#selfcare_210325 .block05 .look-inner--bottom figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 45.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom figure figcaption .tag-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    margin-top: -24rem;
  }
}
#selfcare_210325 .block05 .look-inner--bottom figure figcaption .tag-list li {
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block05 .look-inner--bottom figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block05 .look-inner--bottom figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block06 {
  margin-top: 14.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 {
    margin-top: 14.5rem;
  }
}
#selfcare_210325 .block06 .look-title {
  max-width: 26rem;
  position: absolute;
  top: 10.2rem;
  left: 1rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-title {
    max-width: 38rem;
    margin: 0;
    position: relative;
    top: 0;
    left: -2.5rem;
  }
}
#selfcare_210325 .block06 .look__image-01 {
  max-width: 50rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look__image-01 {
    max-width: 63.8rem;
  }
}
#selfcare_210325 .block06 .look__image-01 img + picture {
  max-width: 21.8rem;
  top: 26rem;
  right: -3.5rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look__image-01 img + picture {
    max-width: 27.1rem;
    top: 44.5rem;
    right: -3.7rem;
  }
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look__image-01 {
    max-width: 63.8rem;
  }
}
#selfcare_210325 .block06 .look__image-02 {
  max-width: 35rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look__image-02 {
    max-width: 52.5rem;
  }
}
#selfcare_210325 .block06 .look-inner--top {
  max-width: 62.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--top {
    max-width: 63.8rem;
    display: block;
  }
}
#selfcare_210325 .block06 .look-inner--top > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block06 .look-inner--top figure {
  max-width: 50rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--top figure {
    max-width: 63.8rem;
    margin: 0;
    margin-top: -3.8rem;
  }
}
#selfcare_210325 .block06 .look-inner--bottom figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 87rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--bottom figure {
    display: block;
    max-width: 75rem;
  }
}
#selfcare_210325 .block06 .look-inner--bottom figure > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block06 .look-inner--bottom figure .look__image {
  margin-top: -35rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--bottom figure .look__image {
    margin-top: 5rem;
    margin-left: auto;
  }
}
#selfcare_210325 .block06 .look-inner--bottom figure figcaption {
  max-width: 38rem;
  margin-top: 3.5rem;
  margin-left: 15rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--bottom figure figcaption {
    max-width: 67.5rem;
    margin: 0 auto;
    margin-top: 7.2rem;
  }
}
#selfcare_210325 .block06 .look-inner--bottom figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--bottom figure figcaption .tag-list {
    margin-top: 2.5rem;
  }
}
#selfcare_210325 .block06 .look-inner--bottom figure figcaption .tag-list li {
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block06 .look-inner--bottom figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block06 .look-inner--bottom figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}
#selfcare_210325 .block07 {
  margin-top: 14.7rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 {
    margin-top: 15rem;
  }
}
#selfcare_210325 .block07 .look-title {
  max-width: 25rem;
  position: relative;
  left: 27rem;
  z-index: 1;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-title {
    max-width: 38rem;
    left: auto;
    margin: 0 auto;
    text-align: center;
  }
}
#selfcare_210325 .block07 .look__image-01 {
  max-width: 48rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look__image-01 {
    max-width: none;
  }
}
#selfcare_210325 .block07 .look__image-01 img + picture {
  max-width: 13.6rem;
  top: 31.5rem;
  left: -2.5rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look__image-01 img + picture {
    max-width: 17.7rem;
    top: 42.7rem;
    right: -1.7rem;
    left: auto;
  }
}
#selfcare_210325 .block07 .look__image-02 {
  max-width: 42rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look__image-02 {
    max-width: 67.5rem;
    margin: 0 auto;
  }
}
#selfcare_210325 .block07 .look-inner--top {
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--top {
    max-width: 67.5rem;
  }
}
#selfcare_210325 .block07 .look-inner--top > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block07 .look-inner--top figure {
  max-width: 50rem;
  margin-top: -2.3rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--top figure {
    max-width: none;
    margin-top: -4rem;
  }
}
#selfcare_210325 .block07 .look-inner--bottom {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom {
    margin-top: 4rem;
  }
}
#selfcare_210325 .block07 .look-inner--bottom figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 82rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom figure {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: none;
  }
}
#selfcare_210325 .block07 .look-inner--bottom figure > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#selfcare_210325 .block07 .look-inner--bottom figure figcaption {
  max-width: 34rem;
  margin-bottom: -0.5rem;
  margin-left: 6rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom figure figcaption {
    max-width: 68.5rem;
    margin: 0 auto;
    margin-top: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom figure figcaption .caption-text {
    max-width: 68rem;
    margin: 0 auto;
    letter-spacing: -0.02em;
  }
}
#selfcare_210325 .block07 .look-inner--bottom figure figcaption .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom figure figcaption .tag-list {
    position: relative;
    margin-top: 2.7rem;
  }
}
#selfcare_210325 .block07 .look-inner--bottom figure figcaption .tag-list li {
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  #selfcare_210325 .block07 .look-inner--bottom figure figcaption .tag-list li {
    margin: 0;
  }
  #selfcare_210325 .block07 .look-inner--bottom figure figcaption .tag-list li:nth-child(even) {
    margin-left: 2rem;
  }
}/*# sourceMappingURL=main.css.map */