:where(.contents) {
  line-height: 1.8;
}
:where(.contents) *,
:where(.contents) *::before,
:where(.contents) *::after {
  letter-spacing: var(--letter-spacing, 0.08em);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  :where(.contents) *,
  :where(.contents) *::before,
  :where(.contents) *::after {
    letter-spacing: var(--sp-letter-spacing, var(--letter-spacing, 0.08em));
  }
}
:where(.contents) a {
  text-decoration: none;
  color: inherit;
}
:where(.contents) sup {
  font-size: 60%;
}
:where(.contents) ul, :where(.contents) ol {
  list-style-type: none;
}
:where(.contents) button {
  appearance: none;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  :where(.contents) button:hover {
    opacity: 0.7;
  }
}
:where(.contents) img {
  width: 100%;
  height: auto;
}
:where(.contents) .js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
}
:where(.contents) .js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

:where(.contents) .section {
  padding: min(6.4814814815vw, 70px) min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  :where(.contents) .section {
    padding: 10.6666666667vw 4vw 13.3333333333vw;
  }
}
:where(.contents) .section__inner {
  max-width: min(92.5925925926vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  :where(.contents) .section__inner {
    max-width: 100%;
  }
}
:where(.contents) .container {
  max-width: min(92.5925925926vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  :where(.contents) .container {
    max-width: 100%;
  }
}
:where(.contents) .flex {
  display: flex;
  gap: var(--gap, min(3.7037037037vw, 40px));
}
@media screen and (max-width: 767px) {
  :where(.contents) .flex {
    gap: var(--sp-gap, 2.6666666667vw);
  }
}
@media screen and (max-width: 767px) {
  :where(.contents) .flex.sp-column {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sp-gap, 5.3333333333vw);
  }
}
:where(.contents) .flex.align-center {
  align-items: center;
}
:where(.contents) .flex > * {
  flex: var(--grow, 1) 0 var(--flex-basis, 0);
}
@media screen and (max-width: 767px) {
  :where(.contents) .flex > * {
    flex: var(--grow, 1) 0 var(--flex-basis, 0);
  }
}

@media screen and not (max-width: 767px) {
  :where(.contents) .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  :where(.contents) .is-pc {
    display: none !important;
  }
}

.contents {
  overflow: hidden;
}
.contents .heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: min(1.1574074074vw, 12.5px);
  font-family: "Noto Serif JP", serif;
  font-size: min(2.7777777778vw, 30px);
  font-weight: 400;
  margin-bottom: min(1.8518518519vw, 20px);
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contents .heading {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
    gap: 0.6666666667vw;
  }
}
.contents .heading__en {
  font-size: min(1.1111111111vw, 12px);
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.22em;
  color: #fff;
  background: #000;
  padding: 0.38em 0.7em;
  display: block;
}
@media screen and (max-width: 767px) {
  .contents .heading__en {
    font-size: 2.6666666667vw;
  }
}
.contents .sub-heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.8518518519vw, 1.25rem);
  font-weight: 500;
  margin-top: 2.6em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents .sub-heading {
    margin-top: 1.8em;
    font-size: 4.2666666667vw;
  }
}
.contents .button {
  width: min(31.9444444444vw, 345px);
  min-height: min(5.9259259259vw, 64px);
  background-color: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 1.5em;
  font-size: min(1.2962962963vw, 14px);
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: opacity 0.3s;
  position: relative;
  border-radius: min(9.1666666667vw, 99px);
}
@media screen and (max-width: 767px) {
  .contents .button {
    width: 100%;
    min-height: 17.0666666667vw;
    font-size: 3.7333333333vw;
    gap: 4vw;
  }
}
.contents .button::after {
  content: "";
  width: min(1.2962962963vw, 14px);
  height: min(0.787037037vw, 8.5px);
  background: url(../img/ic-arrow-white.png) no-repeat center/contain;
  rotate: 90deg;
  position: absolute;
  top: 50%;
  right: min(1.4351851852vw, 15.5px);
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .contents .button::after {
    width: 3.7333333333vw;
    height: 2.2666666667vw;
    right: 4.1333333333vw;
  }
}
@media (any-hover: hover) {
  .contents .button:hover {
    opacity: 0.7;
  }
}
.contents .button.-small {
  font-size: min(1.25vw, 0.84375rem);
}
@media screen and (max-width: 767px) {
  .contents .button.-small {
    font-size: 3.6vw;
  }
}
.contents .note {
  font-size: min(0.9259259259vw, 0.625rem);
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents .note {
    font-size: 2.6666666667vw;
  }
}
.contents .note.indent1 {
  text-indent: -1em;
  padding-left: 1em;
}
.contents .lead {
  text-align: center;
  font-size: min(1.6666666667vw, 18px);
  margin-bottom: min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  .contents .lead {
    font-size: 3.4666666667vw;
    margin-bottom: 12vw;
    margin-left: -4vw;
    margin-right: -4vw;
  }
}
.contents .lead:has(+ .merit__body) {
  margin-bottom: min(2.3148148148vw, 25px);
}
.contents .sub-menu {
  width: 100%;
  height: min(4.2592592593vw, 46px);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 201;
  position: fixed;
  transition: translate 0.8s;
  list-style-type: none;
  translate: 0 0;
  background: linear-gradient(#2f5783, #4883a3);
}
@media screen and (max-width: 767px) {
  .contents .sub-menu {
    height: 20.2666666667vw;
    background: transparent;
  }
}
.contents .sub-menu.is-hide {
  translate: 0 100%;
}
.contents .sub-menu__inner {
  height: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr min(4.2592592593vw, 46px);
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 9.4666666667vw;
    background: #000;
  }
}
.contents .sub-menu__list {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__list {
    display: flex;
    justify-content: center;
    grid-column: span 2;
    background: #5f82a4;
  }
}
.contents .sub-menu__list li:not(:first-child) {
  position: relative;
}
.contents .sub-menu__list li:not(:first-child)::before {
  content: "";
  width: min(0.0925925926vw, 1px);
  height: min(1.6666666667vw, 18px);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__list li:not(:first-child)::before {
    width: 0.2666666667vw;
    height: 4.8vw;
  }
}
.contents .sub-menu__list a {
  height: 100%;
  display: grid;
  place-content: center;
  font-size: min(1.4814814815vw, 1rem);
  white-space: nowrap;
  padding: 0 min(5.5555555556vw, 60px);
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__list a {
    padding: 0 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.contents .sub-menu__pagetop {
  background: linear-gradient(#000, #4b4b4b);
  display: grid;
  place-content: center;
  transition: opacity 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__pagetop {
    gap: 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
@media (any-hover: hover) {
  .contents .sub-menu__pagetop:hover {
    opacity: 0.7;
  }
}
.contents .sub-menu__pagetop::before {
  content: "";
  width: min(1.3425925926vw, 14.5px);
  height: min(0.8333333333vw, 9px);
  background: url(../img/ic-arrow-white.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .contents .sub-menu__pagetop::before {
    width: 3.0666666667vw;
    height: 1.8666666667vw;
  }
}
.contents .kv {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contents .kv__img {
  min-width: min(133.3333333333vw, 1440px);
}
@media screen and (max-width: 767px) {
  .contents .kv__img {
    min-width: 100%;
  }
}
.contents .kv__intro {
  display: none;
}
@media screen and (max-width: 767px) {
  .contents .kv__intro {
    width: 100%;
    display: block;
    background: url(../img/bg-intro-sp.jpg) no-repeat center/cover;
    text-align: center;
    padding: 15.3333333333vw 4vw 16.6666666667vw;
    font-size: 3.7333333333vw;
    font-family: "Noto Serif JP", serif;
    line-height: 2.4;
  }
}
.contents .merit {
  padding-bottom: min(7.4074074074vw, 80px);
}
@media screen and (max-width: 767px) {
  .contents .merit {
    padding-bottom: 9.3333333333vw;
  }
}
.contents .merit__head {
  border-bottom: min(0.0925925926vw, 1px) solid #a3adb1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: min(5.3240740741vw, 57.5px);
}
@media screen and (max-width: 767px) {
  .contents .merit__head {
    margin-bottom: 9.3333333333vw;
  }
}
.contents .merit__tab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(55.5555555556vw, 600px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contents .merit__tab {
    max-width: 92vw;
  }
}
.contents .merit__tab__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  font-size: min(1.2962962963vw, 0.875rem);
  padding: 1em 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .contents .merit__tab__item {
    font-size: 2.9333333333vw;
  }
}
@media (any-hover: hover) {
  .contents .merit__tab__item:hover {
    opacity: 0.7;
  }
}
.contents .merit__tab__item.is-active {
  position: relative;
}
.contents .merit__tab__item.is-active::before, .contents .merit__tab__item.is-active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
.contents .merit__tab__item.is-active::before {
  width: 100%;
  height: min(0.1851851852vw, 2px);
  background: #2a5c8c;
}
@media screen and (max-width: 767px) {
  .contents .merit__tab__item.is-active::before {
    height: 0.5333333333vw;
  }
}
.contents .merit__tab__item.is-active::after {
  width: min(1.3888888889vw, 15px);
  height: min(0.7407407407vw, 8px);
  background: #2a5c8c;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .contents .merit__tab__item.is-active::after {
    width: 3.2vw;
    height: 1.6vw;
  }
}
.contents .merit__contents {
  display: none;
}
.contents .merit__contents.is-active {
  display: block;
}
.contents .merit__contents__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(0.9259259259vw, 10px) min(2.7777777778vw, 30px);
  max-width: min(80.5555555556vw, 870px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contents .merit__contents__list {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.contents .merit__contents__button {
  text-align: center;
  margin-top: min(4.6296296296vw, 50px);
}
@media screen and (max-width: 767px) {
  .contents .merit__contents__button {
    margin-top: 10.6666666667vw;
  }
}
.contents .merit__contents__button .note {
  color: #000;
  margin-top: 1.5em;
}
.contents .merit-card {
  display: grid;
  grid-template-columns: min(11.1111111111vw, 120px) 1fr;
  gap: min(1.6666666667vw, 18px);
  line-height: min(2.3333333333vw, 25.2px);
}
@media screen and (max-width: 767px) {
  .contents .merit-card {
    grid-template-columns: 26.6666666667vw 1fr;
    gap: 4vw;
    line-height: 6.24vw;
  }
}
.contents .merit-card__heading {
  font-size: min(1.4814814815vw, 1rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contents .merit-card__heading {
    font-size: 3.7333333333vw;
  }
}
.contents .merit-card__txt {
  font-size: min(1.2962962963vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  .contents .merit-card__txt {
    font-size: 3.4666666667vw;
  }
}
.contents .merit-card__link {
  color: #193b70;
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: min(0.0925925926vw, 1px);
  margin-top: 0.5em;
  font-size: min(1.2962962963vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  .contents .merit-card__link {
    text-decoration-thickness: 0.2666666667vw;
    font-size: 3.4666666667vw;
  }
}
.contents .merit-card__link::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: min(0.0925925926vw, 1px) solid currentColor;
  border-top: min(0.0925925926vw, 1px) solid currentColor;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .contents .merit-card__link::before {
    border-width: 0.2666666667vw;
  }
}
.contents .merit-card__list {
  text-indent: -1em;
  padding-left: 1em;
  font-size: min(1.2962962963vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  .contents .merit-card__list {
    font-size: 3.4666666667vw;
  }
}
.contents .technology {
  background: url(../img/bg-technology.jpg) no-repeat center top/100%;
  text-align: center;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contents .technology {
    padding-top: 25.3333333333vw;
    background-image: url(../img/bg-technology-sp.jpg);
  }
}
.contents .technology__img {
  max-width: min(46.1574074074vw, 498.5px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contents .technology__img {
    max-width: 100%;
  }
}
.contents .technology__sub-heading {
  margin-top: min(5.5555555556vw, 60px);
  font-family: "Noto Serif JP", serif;
  font-size: min(1.8518518519vw, 1.25rem);
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents .technology__sub-heading {
    margin-top: 17.3333333333vw;
    font-size: 4.5333333333vw;
    margin-left: -4vw;
    margin-right: -4vw;
  }
}
.contents .technology__txt {
  font-size: min(1.2962962963vw, 0.875rem);
  margin-bottom: min(2.7777777778vw, 30px);
}
@media screen and (max-width: 767px) {
  .contents .technology__txt {
    font-size: 3.4666666667vw;
    margin-bottom: 6vw;
  }
}
.contents .technology__structure {
  max-width: min(41.6666666667vw, 450px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contents .technology__structure {
    max-width: 100%;
  }
}
.contents .evidence {
  padding-bottom: min(4.6296296296vw, 50px);
}
@media screen and (max-width: 767px) {
  .contents .evidence {
    padding-top: 16vw;
  }
}
.contents .evidence__block {
  margin-top: min(7.4074074074vw, 80px);
}
@media screen and (max-width: 767px) {
  .contents .evidence__block {
    margin-top: 18.6666666667vw;
  }
}
.contents .evidence__mv {
  background: #e8eaeb;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  .contents .evidence__mv {
    margin-bottom: 8vw;
  }
}
.contents .evidence__mv__inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  margin-inline: auto;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .contents .evidence__mv__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.contents .evidence__mv__heading {
  display: grid;
  place-content: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  padding-right: min(12.5vw, 135px);
  font-size: min(2.4074074074vw, 1.625rem);
}
@media screen and (max-width: 767px) {
  .contents .evidence__mv__heading {
    font-size: 4.8vw;
    padding: 0.82em;
  }
}
.contents .evidence__lead {
  text-align: center;
  font-weight: 500;
  font-size: min(1.8518518519vw, 1.25rem);
}
@media screen and (max-width: 767px) {
  .contents .evidence__lead {
    font-size: 3.7333333333vw;
  }
}
.contents .evidence__note {
  text-align: center;
  color: #000;
  margin-top: 0.75em;
}
@media screen and (max-width: 767px) {
  .contents .evidence__note {
    text-align: right;
  }
}
.contents .evidence__body {
  margin-top: min(3.7037037037vw, 40px);
  border: min(0.3703703704vw, 4px) solid #eee;
  max-width: min(80.5555555556vw, 870px);
  margin-inline: auto;
  padding: min(3.7037037037vw, 40px) min(6.1111111111vw, 66px);
}
@media screen and (max-width: 767px) {
  .contents .evidence__body {
    margin-top: 8.6666666667vw;
    border: 0;
    max-width: 100%;
    padding: 0;
  }
}
.contents .evidence__button {
  margin-top: min(4.6296296296vw, 50px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents .evidence__button {
    margin-top: 13.3333333333vw;
  }
}
.contents .evidence__button + .evidence__conclusion {
  margin-top: min(4.6296296296vw, 50px);
}
@media screen and (max-width: 767px) {
  .contents .evidence__button + .evidence__conclusion {
    margin-top: 10.6666666667vw;
  }
}
.contents .evidence__conclusion {
  margin-top: min(3.7037037037vw, 40px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents .evidence__conclusion {
    margin-top: 10.6666666667vw;
  }
}
.contents .evidence__conclusion__txt {
  font-size: min(1.6666666667vw, 1.125rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contents .evidence__conclusion__txt {
    font-size: 3.7333333333vw;
  }
}
.contents .evidence__conclusion__note {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .contents .evidence__conclusion__note {
    text-align: right;
  }
}
.contents .evidence__conclusion + .evidence__button {
  margin-top: min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  .contents .evidence__conclusion + .evidence__button {
    margin-top: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .contents .beauty {
    margin-top: 8vw;
  }
}
.contents .beauty__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  .contents .beauty__list {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
}
.contents .beauty__item.-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: min(28.1018518519vw, 303.5px) 1fr;
  column-gap: min(3.7037037037vw, 40px);
}
@media screen and (max-width: 767px) {
  .contents .beauty__item.-lg {
    grid-template-columns: 1fr;
    grid-column: span 1;
    column-gap: 0;
  }
}
.contents .beauty__item.-lg .beauty__item__heading {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .contents .beauty__item.-lg .beauty__item__heading {
    grid-column: span 1;
  }
}
@media screen and (max-width: 767px) {
  .contents .beauty__item.-lg .beauty__item__img {
    max-width: 80.9333333333vw;
    margin-inline: auto;
  }
}
.contents .beauty__item.-lg .beauty__item__notes {
  padding-top: min(0.9259259259vw, 10px);
}
@media screen and (max-width: 767px) {
  .contents .beauty__item.-lg .beauty__item__notes {
    margin-top: 2.6666666667vw;
  }
}
.contents .beauty__item__heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.6666666667vw, 1.125rem);
  font-weight: 500;
  border-bottom: min(0.0925925926vw, 1px) solid #bdc2c4;
  padding-bottom: 1.2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .contents .beauty__item__heading {
    font-size: 4.2666666667vw;
    border-width: 0.2666666667vw;
    padding-bottom: 0.8em;
    margin-bottom: 1.7;
  }
}
.contents .beauty__item__notes {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .contents .beauty__item__notes {
    margin-top: 1em;
  }
}
.contents .beauty__item__notes .note {
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-indent: calc(-1 * min(0.5324074074vw, 5.75px));
}
@media screen and (max-width: 767px) {
  .contents .beauty__item__notes .note {
    text-indent: -1.5333333333vw;
  }
}
.contents .beauty__item__notes .note.indent1 {
  text-indent: -1em;
}
.contents .cleaning__list {
  display: flex;
  gap: min(3.7037037037vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents .cleaning__list {
    gap: 9.3333333333vw;
  }
}
.contents .cleaning__item {
  width: min(31.9444444444vw, 345px);
}
@media screen and (max-width: 767px) {
  .contents .cleaning__item {
    width: 100%;
  }
}
.contents .cleaning__item__heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.6666666667vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contents .cleaning__item__heading {
    font-size: 4.2666666667vw;
  }
}
.contents .cleaning__item__notes {
  margin-top: 1em;
}
.contents .cleaning__item__notes .note {
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-indent: calc(-1 * min(0.5324074074vw, 5.75px));
}
@media screen and (max-width: 767px) {
  .contents .cleaning__item__notes .note {
    text-indent: -1.5333333333vw;
  }
}
.contents .cleaning__item__notes .note.indent1 {
  text-indent: -1em;
}
.contents .eco__heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: min(1.6666666667vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .contents .eco__heading {
    font-size: 4.2666666667vw;
    margin-bottom: 1.2em;
  }
}
.contents .eco__list {
  display: flex;
  gap: min(3.7037037037vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents .eco__list {
    gap: 9.3333333333vw;
  }
}
.contents .eco__item {
  width: min(31.9444444444vw, 345px);
}
@media screen and (max-width: 767px) {
  .contents .eco__item {
    width: 100%;
  }
}
.contents .eco__item__notes {
  margin-top: 1em;
}
.contents .eco__item__notes .note {
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-indent: calc(-1 * min(0.5324074074vw, 5.75px));
}
@media screen and (max-width: 767px) {
  .contents .eco__item__notes .note {
    text-indent: -1.5333333333vw;
  }
}
.contents .eco__item__notes .note.indent1 {
  text-indent: -1em;
}
.contents .movie {
  aspect-ratio: 16/9;
  max-width: 100%;
  width: min(31.9444444444vw, 345px);
  margin-inline: auto;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents .movie {
    width: 100%;
  }
}
.contents .movie::before {
  content: "";
  width: min(7.2518518519vw, 78.32px);
  height: min(7.2518518519vw, 78.32px);
  background: url(../img/ic-play.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: scale 0.3s;
}
@media screen and (max-width: 767px) {
  .contents .movie::before {
    width: 20.8853333333vw;
    height: 20.8853333333vw;
  }
}
@media (any-hover: hover) {
  .contents .movie:hover::before {
    scale: 1.1;
  }
}
.contents .movie__modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: 0.4s opacity;
}
.contents .movie__modal[data-active=true] {
  opacity: 1;
  pointer-events: auto;
}
.contents .movie__modal__inner {
  position: relative;
  max-width: 100vw;
  width: min(92.5925925926vw, 1000px);
  aspect-ratio: 16/9;
}
.contents .movie__modal__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contents .movie__modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #000;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contents .movie__modal__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.contents .movie__modal__close::before, .contents .movie__modal__close::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 50px;
  height: 2px;
  margin: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contents .movie__modal__close::before, .contents .movie__modal__close::after {
    width: 6.6666666667vw;
    height: 0.2666666667vw;
  }
}
.contents .movie__modal__close::before {
  rotate: 45deg;
}
.contents .movie__modal__close::after {
  rotate: -45deg;
}