:root {
  --color-basis: #000;
  --color-highlight: #D1AC50;
  --font-en: "acumin-pro-extra-condensed", sans-serif;
}

/* --- for small viewport ---*/
/* --- for large viewport ---*/
/* //////////////////////////////////////////////////

Title : style.scss
For   : Page/feature/2023/0307/

Created       : 2023-02-28
Last Modified : 2023-02-28

==========================================

Content

////////////////////////////////////////////////// */
/* ===================== base layout */
.article {
  width: 100%;
  margin-inline: auto;
  color: var(--color-basis);
  font-feature-settings: "palt" 1;
}
.article a,
.article picture {
  display: block;
}
.article img,
.article svg,
.article video {
  width: 100%;
  height: auto;
}
.article svg {
  aspect-ratio: 1;
}
.article * {
  box-sizing: border-box;
}
.article .svg-template__container {
  display: none;
}

/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
  .article {
    max-width: 600px;
    -webkit-padding-after: 100px;
            padding-block-end: 100px;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  .article {
    max-width: 1400px;
    -webkit-padding-after: 140px;
            padding-block-end: 140px;
  }
}
/* ===================== typography */
/* --- hero --- */
.hero {
  padding-inline: var(--padding-inline, 0);
}
.hero__lead {
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-align: center;
  font-weight: 300;
}
.hero__summary {
  text-align: center;
  transform: translateY(calc(var(--title-font-size) / 2 * -1));
}
.hero__summary > dt {
  display: inline-block;
  background-color: #fff;
  font-size: var(--title-font-size);
  font-family: var(--font-en);
  font-style: normal;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1;
}
.hero__summary > dd {
  border: var(--border-width) solid #000;
}
.hero__summary > dd dl > dt {
  position: relative;
  background-color: #fff;
  font-size: var(--font-size);
  font-family: var(--font-en);
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 500;
}
.hero__summary > dd dl > dt::before, .hero__summary > dd dl > dt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--disc-size);
  height: var(--disc-size);
  margin: auto;
  border-radius: 50vh;
  background-color: #000;
}
.hero__summary > dd dl > dt::before {
  left: 0;
}
.hero__summary > dd dl > dt::after {
  right: 0;
}
.hero__summary > dd dl > dd {
  -webkit-padding-after: 0.3em;
          padding-block-end: 0.3em;
  border-bottom: 1px solid var(--color-highlight);
  font-size: var(--font-size);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 300;
}
.hero__summary > dd .link {
  font-family: var(--font-en);
  font-size: var(--font-size);
  font-style: normal;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
}

/* --- product item price --- */
.contents__label {
  background-color: #000;
  font-family: var(--font-en);
  font-size: var(--font-size);
  font-style: normal;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: right;
}
.contents__label span {
  display: block;
  -webkit-padding-after: var(--padding-block-end);
          padding-block-end: var(--padding-block-end);
  border-bottom: var(--border-width) solid #fff;
}
.contents__product-item-price {
  font-family: var(--font-en);
  font-size: var(--font-size);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.contents__product-item-price > * + * {
  -webkit-margin-before: var(--price-item-space);
          margin-block-start: var(--price-item-space);
}
.contents__product-item-price > a {
  display: inline-block;
}

/* --- foot --- */
.article__btn {
  font-family: var(--font-en);
  font-size: var(--font-size);
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  /* ===================== typography */
  /* --- hero --- */
  .hero {
    --padding-inline: 13px;
  }
  .hero__lead {
    --font-size: 12.5px;
    --line-height: calc(48 / 25);
    --letter-spacing: 0.06em;
  }
  .hero__summary {
    --title-font-size: 28.5px;
  }
  .hero__summary > dd {
    --border-width: 2px;
  }
  .hero__summary > dd dl > dt {
    --font-size: 21px;
    --disc-size: 9px;
  }
  .hero__summary > dd dl > dd {
    --font-size: 17px;
  }
  .hero__summary > dd .link {
    --font-size: 18.5px;
  }
  /* --- product item price --- */
  .contents__label {
    --font-size: 40px;
  }
  .contents__label span {
    --padding-block-end: 8px;
    --border-width: 3px;
  }
  .contents__product-item-price {
    --font-size: 15px;
  }
  .contents__product-item-price > * + * {
    --price-item-space: 8px;
  }
  /* --- foot --- */
  .article__btn {
    --font-size: 26px;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  /* ===================== typography */
  /* --- hero --- */
  .hero__lead {
    --font-size: 16px;
    --line-height: calc(28 / 16);
    --letter-spacing: 0.08em;
  }
  .hero__summary {
    --title-font-size: 34px;
  }
  .hero__summary > dd {
    --border-width: 2px;
  }
  .hero__summary > dd dl > dt {
    --font-size: 22px;
    --disc-size: 10px;
  }
  .hero__summary > dd dl > dd {
    --font-size: 17px;
  }
  .hero__summary > dd .link {
    --font-size: 22px;
  }
  /* --- product item price --- */
  .contents__label {
    --font-size: 56px;
  }
  .contents__label span {
    --padding-block-end: 20px;
    --border-width: 4px ;
  }
  .contents__product-item-price {
    --font-size: 16px;
  }
  .contents__product-item-price > * + * {
    --price-item-space: 6px;
  }
  /* --- foot --- */
  .article__btn {
    --font-size: 29px;
  }
}
/* ===================== hero */
.hero {
  max-width: 960px;
  margin-inline: auto;
}
.hero > * + * {
  -webkit-margin-before: var(--hero-space-modify, var(--hero-space));
          margin-block-start: var(--hero-space-modify, var(--hero-space));
}
.hero__summary {
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;
}
.hero__summary > dt {
  padding-inline: var(--padding-inline);
  transform: translateY(50%);
}
.hero__summary > dd {
  -webkit-padding-before: var(--padding-block-start);
          padding-block-start: var(--padding-block-start);
}
.hero__summary > dd dl > dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-padding-after: 0.18em;
          padding-block-end: 0.18em;
  padding-inline: var(--padding-inline);
}
.hero__summary > dd dl > dt + dd {
  -webkit-margin-before: var(--margin-block-start);
          margin-block-start: var(--margin-block-start);
}
.hero__summary > dd dl > dd {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.hero__summary > dd dl > dd + dt {
  -webkit-margin-before: var(--margin-block-start);
          margin-block-start: var(--margin-block-start);
}
.hero__summary > dd .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--width);
  height: var(--height);
  -webkit-margin-before: var(--margin-block-start);
          margin-block-start: var(--margin-block-start);
  margin-inline: auto;
  -webkit-padding-after: var(--padding-block-end);
          padding-block-end: var(--padding-block-end);
  background-color: #000;
  transform: translateY(50%);
}
.hero .icon {
  width: var(--width);
  margin-inline: auto;
}

/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  .hero {
    --hero-space: 60px;
  }
  .hero__lead {
    --hero-space-modify: 50px;
  }
  .hero__summary > dt {
    --padding-inline: 20px;
  }
  .hero__summary > dd {
    --padding-block-start: 40px;
  }
  .hero__summary > dd dl > dt {
    --padding-inline: 25px;
  }
  .hero__summary > dd dl > dt + dd {
    --margin-block-start: 11px;
  }
  .hero__summary > dd dl > dd + dt {
    --margin-block-start: 25px;
  }
  .hero__summary > dd .link {
    --width: 95px;
    --height: 25px;
    --margin-block-start: 20px;
    --padding-block-end: .15em;
  }
  .hero .icon {
    --width: 30px;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  .hero {
    --hero-space: 50px;
  }
  .hero__lead {
    --hero-space-modify: 70px;
  }
  .hero__summary {
    --max-width: 530px;
  }
  .hero__summary > dt {
    --padding-inline: 20px;
  }
  .hero__summary > dd {
    --padding-block-start: 50px;
  }
  .hero__summary > dd dl > dt {
    --padding-inline: 25px;
  }
  .hero__summary > dd dl > dt + dd {
    --margin-block-start: 12px;
  }
  .hero__summary > dd dl > dd + dt {
    --margin-block-start: 30px;
  }
  .hero__summary > dd .link {
    --width: 100px;
    --height: 26px;
    --margin-block-start: 26px;
    --padding-block-end: .1em;
  }
  .hero .icon {
    --width: 30px;
  }
}
/* ===================== contents */
.article__contents {
  -webkit-margin-before: var(--margin-block-start);
          margin-block-start: var(--margin-block-start);
}

.contents + * {
  -webkit-margin-before: var(--contents-space-modify, var(--contents-space));
          margin-block-start: var(--contents-space-modify, var(--contents-space));
}
.contents__panel + * {
  -webkit-margin-before: var(--contents-panel-space-modify, var(--contents-panel-space));
          margin-block-start: var(--contents-panel-space-modify, var(--contents-panel-space));
}
.contents__panel, .contents__assets, .contents__visual {
  position: relative;
}
.contents__visual {
  z-index: 1;
}
.contents__visual a:hover {
  opacity: 1;
}
.contents__thumb {
  position: var(--position, absolute);
  z-index: 1;
}
.contents__thumb a:hover {
  opacity: 1;
}
.contents__deco {
  position: var(--position, absolute);
  width: var(--width);
  z-index: 2;
  pointer-events: none;
}
.contents__label {
  position: absolute;
  width: var(--width, 100%);
  -webkit-padding-before: var(--padding-block-start);
          padding-block-start: var(--padding-block-start);
  -webkit-padding-after: var(--padding-block-end);
          padding-block-end: var(--padding-block-end);
}
.contents__label span {
  -webkit-padding-after: var(--padding-block-end);
          padding-block-end: var(--padding-block-end);
  -webkit-padding-end: var(--padding-inline-end);
          padding-inline-end: var(--padding-inline-end);
}
.contents__product-item-price {
  position: var(--position, relative);
  z-index: 100;
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__assets {
  display: grid;
  row-gap: var(--row-gap);
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__thumb {
  --position: relative;
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__deco {
  --position: absolute;
  z-index: 1;
  pointer-events: none;
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__assets {
  display: flex;
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(3) {
  background-repeat: no-repeat;
}
.contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__thumb {
  width: var(--width);
}
.contents:nth-of-type(2) .contents__panel:nth-of-type(5) {
  background-repeat: no-repeat;
}
/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  .article__contents {
    --margin-block-start: 60px;
  }
  .contents + * {
    --contents-space: 70px;
  }
  .contents__panel + * {
    --contents-panel-space: 70px;
  }
  .contents__product-item-price {
    --price-space: 20px;
  }
  .contents__label {
    --padding-block-start: 4px;
    --padding-block-end: 8px;
  }
  .contents__label span {
    --padding-inline-end: 10px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__assets {
    --row-gap: 30px;
    grid-template-columns: 1fr 225px;
    justify-content: space-between;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__visual {
    grid-column: 2;
    grid-row: 2;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__thumb {
    grid-column: span 2;
    grid-row: 1;
    padding-inline: 30px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: 85px;
    bottom: 90px;
    right: 5px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: 33px;
    bottom: 58px;
    right: 82.5px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__product-item-price {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    -webkit-padding-after: 18px;
            padding-block-end: 18px;
    -webkit-padding-start: 12.5px;
            padding-inline-start: 12.5px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__assets {
    -webkit-padding-end: 65px;
            padding-inline-end: 65px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(1) {
    --width: 90px;
    bottom: -25px;
    left: 8.75px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(2) {
    --width: 33px;
    left: 107px;
    bottom: -37.5px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__product-item-price {
    --position: absolute;
    bottom: 22px;
    right: 25px;
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
    line-height: 1.5333333333;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__product-item-price > * + * {
    --price-item-space: 0;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) {
    background-image: url(../images/svg/bg-mary-quant-01-sml.svg);
    background-size: 100%;
    background-position: top 141px center;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__visual {
    -webkit-padding-after: 138.5px;
            padding-block-end: 138.5px;
    -webkit-padding-start: 45px;
            padding-inline-start: 45px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__thumb:nth-of-type(1) {
    --width: 210px;
    bottom: 0;
    left: -15px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__thumb:nth-of-type(2) {
    --width: 190px;
    bottom: -105px;
    right: 5px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) {
    --contents-panel-space-modify: 50px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__assets {
    -webkit-padding-start: 80px;
            padding-inline-start: 80px;
    -webkit-padding-end: 15px;
            padding-inline-end: 15px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__product-item-price {
    --position: absolute;
    bottom: 15px;
    left: 0;
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__assets {
    -webkit-padding-before: 230px;
            padding-block-start: 230px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__thumb {
    top: 0;
    left: -20px;
    width: 213px;
    z-index: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__label {
    top: 120px;
    left: 0;
    z-index: 1;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    -webkit-padding-end: 15px;
            padding-inline-end: 15px;
    text-align: right;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco {
    left: -0.3rem;
    right: 0;
    margin: auto;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: 39px;
    top: -18px;
    transform: translateX(8px);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: 21px;
    top: 29px;
    transform: translateX(-9px);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(3) {
    --width: 49px;
    top: 31px;
    transform: translateX(36px);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) {
    --contents-panel-space-modify: 40px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__assets {
    padding-inline: 37.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(1) {
    --width: 45px;
    top: -76px;
    left: 101px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(2) {
    --width: 100px;
    top: -47px;
    left: 9px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(3) {
    --contents-panel-space-modify: -15px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(3) .contents__assets {
    -webkit-margin-end: -27.5px;
            margin-inline-end: -27.5px;
    -webkit-padding-start: 137.5px;
            padding-inline-start: 137.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(3) .contents__product-item-price {
    --position: absolute;
    bottom: 16.5px;
    left: 40px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__visual:nth-of-type(1) {
    -webkit-padding-end: 115px;
            padding-inline-end: 115px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__visual:nth-of-type(2) {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    padding-inline: 40px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__product-item-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(1) {
    --width: 95px;
    bottom: 103px;
    left: 13.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(2) {
    --width: 45px;
    bottom: 70px;
    left: 96px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) {
    background-image: url(../images/svg/bg-mary-quant-02-sml.svg);
    background-size: 100%;
    background-position: top 83px center;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__assets {
    display: grid;
    grid-template-columns: 1fr 210px;
    justify-content: space-between;
    row-gap: 10px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__visual {
    grid-column: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__visual:nth-of-type(1) {
    grid-row: 1;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__visual:nth-of-type(2) {
    grid-row: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__product-item-price {
    align-self: end;
    grid-row: 2;
    grid-column: 1;
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__visual:nth-of-type(1) {
    padding-inline: 27.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__visual:nth-of-type(2) {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
    -webkit-padding-end: 135px;
            padding-inline-end: 135px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__thumb {
    bottom: 227.5px;
    right: 0;
    width: 185px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__deco {
    --width: 80px;
    top: 22px;
    right: 47px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) {
    padding-inline: 20px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: 90px;
    top: -110px;
    right: 68px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: 45px;
    top: -23.5px;
    right: 31.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr 200px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
    -webkit-padding-end: 14px;
            padding-inline-end: 14px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(2) .contents__deco:nth-of-type(1) {
    --width: 47.5px;
    top: -2.5px;
    left: 93px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(2) .contents__deco:nth-of-type(2) {
    --width: 30px;
    top: 40px;
    left: 137.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(2) > a {
    grid-row: 1;
    grid-column: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__product-item-price {
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    -webkit-padding-after: 15px;
            padding-block-end: 15px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) {
    padding-inline: 52.5px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__deco {
    --width: 85px;
    top: 31.5px;
    right: -35px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    -webkit-padding-start: 7.5px;
            padding-inline-start: 7.5px;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  .article__contents {
    --margin-block-start: 100px;
  }
  .contents + * {
    --contents-space: 110px;
  }
  .contents__panel + * {
    --contents-panel-space: 100px;
  }
  .contents__product-item-price {
    --price-space: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-start: var(--margin-inline-start, 0);
            margin-inline-start: var(--margin-inline-start, 0);
  }
  .contents__label {
    --width: calc(660 / 1120 * 100%);
    --padding-block-start: 20px;
    --padding-block-end: 12px;
  }
  .contents__label span {
    --padding-inline-end: calc(66 / 660 * 100%);
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) {
    -webkit-padding-start: 5.7142857143%;
            padding-inline-start: 5.7142857143%;
    -webkit-padding-end: 17%;
            padding-inline-end: 17%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__assets {
    --row-gap: 20px;
    grid-template-columns: 34.1959334566% 60.258780037%;
    justify-content: space-between;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__visual {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    -webkit-margin-before: 330px;
            margin-block-start: 330px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__thumb {
    grid-column: 2;
    grid-row: 1;
    -webkit-padding-end: 27.9141104294%;
            padding-inline-end: 27.9141104294%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: calc(146 / 652 * 100%);
    top: 40px;
    right: 0;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: calc(80 / 652 * 100%);
    top: 148px;
    right: 22%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(1) .contents__product-item-price {
    grid-column: 1;
    grid-row: 2;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) {
    --contents-panel-space-modify: -262px;
    -webkit-padding-start: 36.4285714286%;
            padding-inline-start: 36.4285714286%;
    -webkit-padding-end: 7.1428571429%;
            padding-inline-end: 7.1428571429%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__assets {
    display: grid;
    grid-template-columns: auto 56.9620253165%;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__visual {
    grid-row: 1;
    grid-column: 2;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(1) {
    --width: calc(130 / 790 * 100%);
    top: 215px;
    left: 0;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(2) {
    --width: calc(56 / 790 * 100%);
    top: 348px;
    left: 14.5569620253%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(2) .contents__product-item-price {
    --margin-inline-start: auto;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    text-align: right;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) {
    -webkit-padding-start: 7.2857142857%;
            padding-inline-start: 7.2857142857%;
    -webkit-padding-end: 29.1428571429%;
            padding-inline-end: 29.1428571429%;
    background-size: 35%;
    background-image: url(../images/svg/bg-mary-quant-01-lrg.svg);
    background-position: top 133px right;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__visual {
    -webkit-padding-start: 33.7078651685%;
            padding-inline-start: 33.7078651685%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__thumb:nth-of-type(1) {
    --width: calc(320 / 890 * 100%);
    bottom: 94px;
    left: 0;
    z-index: 1;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(3) .contents__thumb:nth-of-type(2) {
    --width: calc(306 / 890 * 100%);
    bottom: -15.7303370787%;
    left: 19.1011235955%;
    z-index: 2;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) {
    --contents-panel-space-modify: -5px;
    -webkit-padding-start: 58.5714285714%;
            padding-inline-start: 58.5714285714%;
    -webkit-padding-end: 7.1428571429%;
            padding-inline-end: 7.1428571429%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__assets {
    -webkit-padding-end: 18.75%;
            padding-inline-end: 18.75%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(1) {
    --width: calc(114 / 480 * 100%);
    top: 25px;
    right: 0;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(2) {
    --width: calc(40 / 480 * 100%);
    top: 132px;
    right: 21.875%;
  }
  .contents:nth-of-type(1) .contents__panel:nth-of-type(4) .contents__product-item-price {
    --margin-inline-start: auto;
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    text-align: right;
  }
  .contents:nth-of-type(2) {
    --contents-space-modify: -260px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) {
    -webkit-padding-start: 6.4285714286%;
            padding-inline-start: 6.4285714286%;
    -webkit-padding-end: 13.5714285714%;
            padding-inline-end: 13.5714285714%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__assets {
    -webkit-padding-end: 56.25%;
            padding-inline-end: 56.25%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__thumb {
    bottom: -33px;
    left: 32.1428571429%;
    width: 27.95%;
    z-index: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__label {
    bottom: 5px;
    right: 0;
    z-index: 1;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: 60px;
    bottom: 290px;
    left: 58.0357142857%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: 31px;
    bottom: 246px;
    left: 57%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(1) .contents__deco:nth-of-type(3) {
    --width: 75px;
    bottom: 201px;
    left: 61.1607142857%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) {
    --contents-panel-space-modify: 135px;
    padding-inline: 19.7142857143%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__assets {
    display: grid;
    grid-template-columns: 1fr 64.858490566% 1fr;
    -moz-column-gap: 2.358490566%;
         column-gap: 2.358490566%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__visual {
    grid-column: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__product-item-price {
    grid-column: 3;
    align-self: end;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(1) {
    --width: 156px;
    top: 40px;
    right: 8.2547169811%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(2) .contents__deco:nth-of-type(2) {
    --width: 43px;
    top: 198px;
    right: 6%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(3) {
    --contents-panel-space-modify: -170px;
    -webkit-padding-start: 4%;
            padding-inline-start: 4%;
    -webkit-padding-end: 67.1428571429%;
            padding-inline-end: 67.1428571429%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(3) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    -webkit-padding-start: 3.75%;
            padding-inline-start: 3.75%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) {
    --contents-panel-space-modify: -360px;
    -webkit-padding-start: 13.2142857143%;
            padding-inline-start: 13.2142857143%;
    -webkit-padding-end: 10.7142857143%;
            padding-inline-end: 10.7142857143%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__assets {
    display: grid;
    grid-template-columns: 51.6431924883% 39.4366197183%;
    justify-content: space-between;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__visual:nth-of-type(1) {
    -webkit-margin-before: 446px;
            margin-block-start: 446px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(1) {
    --width: 43px;
    bottom: 538px;
    left: 2.380952381%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(4) .contents__deco:nth-of-type(2) {
    --width: 156px;
    bottom: 402px;
    left: 14.2857142857%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) {
    --contents-panel-space-modify: -268px;
    -webkit-padding-after: 98px;
            padding-block-end: 98px;
    -webkit-padding-start: 66.4285714286%;
            padding-inline-start: 66.4285714286%;
    -webkit-padding-end: 9.2857142857%;
            padding-inline-end: 9.2857142857%;
    background-image: url(../images/svg/bg-mary-quant-02-lrg.svg);
    background-size: 18.5714285714%;
    background-position: bottom right;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__visual:nth-of-type(2) {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(5) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) {
    --contents-panel-space-modify: -610px;
    -webkit-padding-start: 5%;
            padding-inline-start: 5%;
    -webkit-padding-end: 31.2142857143%;
            padding-inline-end: 31.2142857143%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__visual:nth-of-type(1) {
    display: grid;
    grid-template-columns: 1fr 64.7887323944%;
    -webkit-padding-end: 20.4927211646%;
            padding-inline-end: 20.4927211646%;
    -moz-column-gap: 2.2396416573%;
         column-gap: 2.2396416573%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__visual:nth-of-type(1) > a {
    grid-row: 1;
    grid-column: 2;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__visual:nth-of-type(2) {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
    -webkit-padding-end: 61.9260918253%;
            padding-inline-end: 61.9260918253%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__product-item-price {
    --margin-inline-start: auto;
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    text-align: right;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__thumb {
    top: 370px;
    right: 0;
    width: 32.0268756999%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__deco:nth-of-type(1) {
    --width: calc(150 / 1400 * 100%);
    top: 118px;
    left: 3.5714285714%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(6) .contents__deco:nth-of-type(2) {
    --width: calc(43 / 1400 * 100%);
    top: 270px;
    left: 14%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) {
    --contents-panel-space-modify: -170px;
    -webkit-padding-start: 27.5%;
            padding-inline-start: 27.5%;
    -webkit-padding-end: 9.2857142857%;
            padding-inline-end: 9.2857142857%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__assets {
    display: grid;
    grid-template-columns: 38.1920903955% 56.4971751412%;
    -moz-column-gap: 5.3107344633%;
         column-gap: 5.3107344633%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) {
    -webkit-margin-before: 313px;
            margin-block-start: 313px;
    -webkit-padding-end: 8.58%;
            padding-inline-end: 8.58%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) .contents__deco:nth-of-type(1) {
    --width: calc(57 / 338 * 100%);
    top: 24px;
    right: 0;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__visual:nth-of-type(1) .contents__deco:nth-of-type(2) {
    --width: calc(36 / 338 * 100%);
    top: 82px;
    right: 16.2721893491%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(7) .contents__product-item-price {
    --margin-inline-start: auto;
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    text-align: right;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) {
    padding-inline: 33.7142857143%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__assets {
    padding-inline: 8.3333333333%;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__visual {
    max-width: 380px;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__deco {
    --width: calc(110 / (1400 - 472 - 472) * 100%);
    top: 55px;
    right: 0;
  }
  .contents:nth-of-type(2) .contents__panel:nth-of-type(8) .contents__product-item-price {
    -webkit-margin-before: var(--price-space);
            margin-block-start: var(--price-space);
    -webkit-padding-start: 10.5263157895%;
            padding-inline-start: 10.5263157895%;
  }
}
/* ===================== foot */
.article__foot {
  -webkit-margin-before: var(--margin-block-start);
          margin-block-start: var(--margin-block-start);
}
.article__foot .icon {
  display: block;
  width: var(--width);
  margin-inline: auto;
  -webkit-margin-after: var(--margin-block-end);
          margin-block-end: var(--margin-block-end);
}
/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  .article__foot {
    --margin-block-start: 65px;
  }
  .article__foot .icon {
    --width: 37px;
    --margin-block-end: 24px;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  .article__foot {
    --margin-block-start: 120px;
  }
  .article__foot .icon {
    --width: 40px;
    --margin-block-end: 14px;
  }
}
/* ===================== animation */
.fade-animation a {
  position: relative;
}
.fade-animation > a > * + * {
  position: absolute;
  top: 0;
  left: 0;
}
.fade-animation--sml a, .fade-animation--lrg a {
  position: relative;
}
.fade-animation--sml > a > * + *, .fade-animation--lrg > a > * + * {
  position: absolute;
  top: 0;
  left: 0;
}

/* --- for small viewport ---*/
@media screen and (max-width: 767px) {
  .fade-animation > a > * {
    opacity: 0;
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  .fade-animation > a > * + * {
    opacity: 1;
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
  }
  .fade-animation--sml > a > * {
    opacity: 0;
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  .fade-animation--sml > a > * + * {
    opacity: 1;
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
  }
}
/* --- for large viewport ---*/
@media screen and (min-width: 768px) {
  .fade-animation > a > * {
    transition: opacity 0.25s ease;
  }
  .fade-animation > a > *:hover {
    opacity: 0;
  }
  .fade-animation > a > * + * {
    opacity: 0;
  }
  .fade-animation > a > * + *:hover {
    opacity: 1;
  }
  .fade-animation--lrg > a > * {
    transition: opacity 0.25s ease;
  }
  .fade-animation--lrg > a > *:hover {
    opacity: 0;
  }
  .fade-animation--lrg > a > * + * {
    opacity: 0;
  }
  .fade-animation--lrg > a > * + *:hover {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}