@charset "UTF-8";
.c-peeling-lotion {
  background: #F1F5F7
}

.c-moisture-serum {
  background: #F6F4F0
}

.c-custom-mypad {
  background: #F3F5F5
}

.c-clansing {
  background: #F9F7F3
}

.c-peeling-lotion {
  background: #F1F5F7
}

.c-moisture-serum {
  background: #F6F4F0
}

.c-custom-mypad {
  background: #F3F5F5
}

.c-clansing {
  background: #F9F7F3
}

.upShow {
  animation: jsUpShow .75s cubic-bezier(.25, .46, .45, .94) backwards
}

.leftShow {
  animation: jsLeftShow 1.2s cubic-bezier(.165, .84, .44, 1) backwards
}

@keyframes jsUpShow {
  0% {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
  }
}

@keyframes jsDownShow {
  0% {
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden
  }
  60% {
    opacity: .8
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
  }
}

@keyframes jsLeftShow {
  0% {
    opacity: 0;
    transform: translate(100px);
    visibility: hidden
  }
  60% {
    opacity: .8
  }
  to {
    opacity: 1;
    transform: translate(0);
    visibility: visible
  }
}

@keyframes jsRightShow {
  0% {
    opacity: 0;
    transform: translate(-30px);
    visibility: hidden
  }
  60% {
    opacity: .8
  }
  to {
    opacity: 1;
    transform: translate(0);
    visibility: visible
  }
}

@keyframes jsFedeShow {
  0% {
    opacity: 0
  }
  to {
    opacity: 1;
    visibility: visible
  }
}

@keyframes jsFedeHide {
  0% {
    opacity: 1;
    visibility: visible
  }
  to {
    opacity: 0;
    visibility: hidden
  }
}

@keyframes moveFromTop {
  0% {
    transform: translateY(-100%)
  }
  to {
    transform: translateY(0)
  }
}

@keyframes moveFromLeft {
  0% {
    transform: translate(-100%)
  }
  to {
    transform: translate(0)
  }
}

@keyframes moveFromRight {
  0% {
    transform: translate(100%)
  }
  to {
    transform: translate(0)
  }
}

@keyframes moveFromBottom {
  0% {
    transform: translateY(100%)
  }
  to {
    transform: translateY(0)
  }
}

@keyframes moveToTop {
  0% {
    transform: translateY(0)
  }
  to {
    transform: translateY(-100%)
  }
}

@keyframes moveToLeft {
  0% {
    transform: translate(0)
  }
  to {
    transform: translate(-100%)
  }
}

@keyframes moveToRight {
  0% {
    transform: translate(0)
  }
  to {
    transform: translate(100%)
  }
}

@keyframes moveToBottom {
  0% {
    transform: translateY(100%)
  }
  to {
    transform: translateY(0)
  }
}

@keyframes maskFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
}

@keyframes maskFromLeft {
  0% {
    clip-path: inset(0 0 0 100%);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
}

@keyframes maskFromRight {
  0% {
    clip-path: inset(0 100% 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
}

@keyframes maskFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
}

@keyframes maskToTop {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 100% 0);
    visibility: visible
  }
}

@keyframes maskToLeft {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 100% 0 0);
    visibility: visible
  }
}

@keyframes maskToRight {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(0 0 0 100%);
    visibility: visible
  }
}

@keyframes maskToBottom {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible
  }
  to {
    clip-path: inset(100% 0 0 0);
    visibility: visible
  }
}

[data-mask=FromTop] {
  animation: maskFromTop .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=FromLeft] {
  animation: maskFromLeft .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=FromRight] {
  animation: maskFromRight .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=FromBottom] {
  animation: maskFromBottom .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=ToTop] {
  animation: maskToTop .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=ToLeft] {
  animation: maskToLeft .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=ToRight] {
  animation: maskToRight .5s cubic-bezier(.77, 0, .175, 1) forwards
}

[data-mask=ToBottom] {
  animation: maskToBottom .5s cubic-bezier(.77, 0, .175, 1) forwards
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden
  }
  to {
    opacity: 1;
    visibility: visible
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible
  }
  to {
    opacity: 0;
    visibility: hidden
  }
}

@keyframes animScale {
  0% {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

@keyframes accordionHeight {
  0% {
    height: 0
  }
  to {
    height: 100%
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: .8;
    transform: scale(1.72)
  }
  30% {
    opacity: 1;
    transform: scale(1.72)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.jsStanby {
  visibility: hidden
}

.scrAnim {
  position: relative
}

@keyframes moveAround {
  0% {
    transform: translateY(-15px)
  }
  40% {
    transform: translateY(15px)
  }
  to {
    transform: translateY(-15px)
  }
}

.moveAround {
  animation: moveAround 10s ease-in-out infinite
}

.animShow {
  animation: jsUpShow .75s cubic-bezier(.165, .84, .44, 1) forwards
}

.animScale {
  animation: animScale 1.5s cubic-bezier(.165, .84, .44, 1) backwards
}

.scaleFadeIn {
  animation: scaleFadeIn 1.4s cubic-bezier(.165, .84, .44, 1) backwards;
  will-change: transform
}

.kvFadeIn {
  animation: jsFedeShow 1s cubic-bezier(.165, .84, .44, 1) backwards
}

.scrAnim {
  will-change: transform
}

@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal
}

:root {
  --swiper-theme-color: #007aff
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translateZ(0)
}

.swiper-pointer-events {
  touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform
}

.swiper-slide-invisible-blank {
  visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}

.swiper-3d .swiper-wrapper, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0)
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size)
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
  display: none!important
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next"
}

.swiper-button-lock {
  display: none
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translateZ(0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none!important
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33)
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet:only-child {
  display: none!important
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-vertical>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-lock {
  display: none
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0)
}

.swiper-scrollbar-disabled>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none!important
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}

.swiper-vertical>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
  left: 0;
  top: 0
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.swiper-scrollbar-lock {
  display: none
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.swiper-zoom-container>img, .swiper-zoom-container>svg, .swiper-zoom-container>canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.swiper-slide-zoomed {
  cursor: move
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-cube {
  overflow: visible
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev, .swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible
}

.swiper-cube .swiper-slide-shadow-top, .swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px)
}

.swiper-flip {
  overflow: visible
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-top, .swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height
}

.swiper-cards {
  overflow: visible
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden
}

.c-peeling-lotion {
  background: #F1F5F7
}

.c-moisture-serum {
  background: #F6F4F0
}

.c-custom-mypad {
  background: #F3F5F5
}

.c-clansing {
  background: #F9F7F3
}

html {
  font-size: 62.5%
}

@media screen and (max-width: 1119px) {
  html {
    font-size: 2.6666666667vw
  }
}

@media screen and (min-width: 1120px) {
  html {
    font-size: .78125vw
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 15px
  }
}

@media print {
  html {
    font-size: 8px
  }
}

html.tablet {
  width: 1200px
}

body {
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: Zen Kaku Gothic New, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #6b6b6b;
  background-color: #fff;
  position: relative;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  overscroll-behavior: none
}

body *, body *:before, body *:after {
  box-sizing: border-box
}

.bold {
  font-weight: 700
}

.en {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: .2em
}

::selection {
  color: #6b6b6b;
  background-color: #d9d9d9
}

h1, h3, h4, h5, h6, p {
	margin: 0;
	color: #646464;
	text-align: left;
}

a {
  text-decoration: none;
  color: #2329E5;
  outline: none
}

a:focus {
  outline: none
}

a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

a:visited {
	color: #2329E5;
	text-align: center;
}

i {
  display: inline-block
}

ul {
  padding: 0;
  margin: 0
}

li {
  list-style: none
}

figure {
  margin: 0
}

img {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  vertical-align: top;
  height: auto
}

canvas, video {
  vertical-align: top
}

button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  white-space: normal;
  cursor: pointer
}

video, img, svg {
  width: 100%;
  height: auto
}

@media (min-width: 1120px) {
  .spOnly {
    display: none
  }
}

@media (max-width: 1119px) {
  .pcOnly {
    display: none
  }
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

input:focus, textarea:focus, input[type]:focus, .uneditable-input:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent
}

select, input[type=text], input[type=search], input[type=tel], input[type=url], input[type=email], input[type=password], input[type=number], input[type=file], input[type=date], textarea, select:focus, input[type=text]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus, input[type=file]:focus, input[type=date]:focus, textarea:focus {
  padding: 0 1rem;
  border: 2px solid #000;
  width: 335px;
  height: 56px;
  font-size: 15px;
  font-weight: 700
}

@media (max-width: 1119px) {
  select, input[type=text], input[type=search], input[type=tel], input[type=url], input[type=email], input[type=password], input[type=number], input[type=file], input[type=date], textarea, select:focus, input[type=text]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus, input[type=file]:focus, input[type=date]:focus, textarea:focus {
    padding: 0 15px;
    height: 42px;
    font-size: 12px;
    border: 1px solid #000;
    width: 100%
  }
  html.ANDROID select, html.ANDROID input[type=text], html.ANDROID input[type=search], html.ANDROID input[type=tel], html.ANDROID input[type=url], html.ANDROID input[type=email], html.ANDROID input[type=password], html.ANDROID input[type=number], html.ANDROID input[type=file], html.ANDROID input[type=date], html.ANDROID textarea, html.ANDROID select:focus, html.ANDROID input[type=text]:focus, html.ANDROID input[type=search]:focus, html.ANDROID input[type=tel]:focus, html.ANDROID input[type=url]:focus, html.ANDROID input[type=email]:focus, html.ANDROID input[type=password]:focus, html.ANDROID input[type=number]:focus, html.ANDROID input[type=file]:focus, html.ANDROID input[type=date]:focus, html.ANDROID textarea:focus {
    padding: 0 15px
  }
}

input[type=search]::-webkit-search-cancel-button {
  display: none
}

select {
  cursor: pointer;
  font-weight: 700
}

@media (max-width: 1119px) {
  select {
    background-position: right 1.2rem top 50%;
    background-size: 1.2rem
  }
}

textarea, textarea:focus {
  font-weight: 700;
  height: 135px
}

input[type=checkbox], input[type=radio], input[type=checkbox]:focus, input[type=radio]:focus {
  width: 20px;
  height: 20px;
  border: 1px solid #CCCCCC;
  margin-right: 10px;
  position: relative
}

input[type=checkbox][type=radio], input[type=radio][type=radio], input[type=checkbox]:focus[type=radio], input[type=radio]:focus[type=radio] {
  border-radius: 20px
}

input[type=checkbox]:checked:before, input[type=radio]:checked:before {
  background-color: #333;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px)
}

input[type=checkbox]:checked[type=radio], input[type=radio]:checked[type=radio] {
  border-radius: 20px
}

input[type=checkbox]:checked[type=radio]:before, input[type=radio]:checked[type=radio]:before {
  border-radius: 20px
}

* {
  -webkit-tap-highlight-color: transparent
}

.c-peeling-lotion {
  background: #F1F5F7
}

.c-moisture-serum {
  background: #F6F4F0
}

.c-custom-mypad {
  background: #F3F5F5
}

.c-clansing {
  background: #F9F7F3
}

.flex {
  display: flex
}

.btn {
  transition: opacity .5s
}

@media (hover: hover) and (pointer: fine) {
  .btn:focus {
    opacity: .5
  }
  .btn:hover {
    opacity: .5
  }
}
.heading07 {
	position: relative;
	padding-top: 50px;
	padding-left: 30px;
	font-size: 26px;
	text-align: left;
}

.heading07 span {
	position: relative;
	z-index: 2;
}

.heading07::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
	top: -20px;
	left: 0;
	color: rgba(224,66,114,0.6);
	font-size: 80px;
	font-weight: 400;
	font-family: luxus-brut, cursive;
	font-style: italic;
}
.heading08 {
	position: relative;
	padding-top: 50px;
	padding-left: 30px;
	font-size: 26px;
}

.heading08 span {
	position: relative;
	z-index: 2;
}

.heading08::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-2deg);
	top: -20px;
	left: 0;
	color: rgba(0,0,255,0.5);
	font-size: 80px;
	font-weight: 400;
	font-family: luxus-brut, cursive;
	font-style: italic;
}
/*
.h2 {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .h2 {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .h2 {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .h2 {
    font-size: 2rem
  }
}
*/
.nowrap {
  white-space: nowrap
}

.header {
  height: 125px;
　width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  
   /*以下はレイアウトのためのCSS*/
  background:#fff;
  color:#333;
  text-align: center;
  padding: 20px;
}
/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
.header.HeightMin{
  position: fixed;
    z-index: 999;/*最前面へ*/
  height:50px;
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-10px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}


@media all and (min-width: 1120px) {
  .header {
    height: 6.5rem
  }
}

@media all and (max-width: 1119px) {
  .header {
    height: 4rem
  }
}

@media all and (min-width: 1120px) {
  .header {
    padding: 2rem
  }
}

@media all and (max-width: 1119px) {
  .header {
    padding: 1rem
  }
}

.header:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  transition: all .4s
}

@media all and (min-width: 1120px) {
  .header:after {
    height: 6.5rem
  }
}

@media all and (max-width: 1119px) {
  .header:after {
    height: 4rem
  }
}

.header.bg-active:after {
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px)
}

.header .logo {
  position: fixed;
  z-index: 4
}

@media all and (min-width: 1120px) {
  .header .logo {
    width: 18.5rem
  }
}

@media all and (max-width: 1119px) {
  .header .logo {
    width: 18.5rem
  }
}

@media all and (min-width: 1120px) {
  .header .logo {
    top: 2rem
  }
}

@media all and (max-width: 1119px) {
  .header .logo {
    top: 1rem
  }
}

.global-menu {
  z-index: 5;
  position: fixed;
  pointer-events: none;
  overflow: auto;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.global-menu::-webkit-scrollbar {
  display: none
}

.loaded .global-menu {
  display: block
}

.global-menu.active {
  pointer-events: all
}

.global-menu.active .menu-inner {
  opacity: 1
}

.global-menu .menu-inner {
  transition: all .4s;
  opacity: 0;
  background: #ffffff;
  border: 1px solid #F8F8F8;
  display: flex
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner {
    padding: 3rem 4.5rem 3.4rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner {
    padding: 7.3rem 4.5rem 7.6rem
  }
}

@media (min-width: 1120px) {
  .global-menu .menu-inner {
    border-radius: 2rem;
    width: 64.5rem;
    margin: 1rem 1rem auto auto;
    gap: 4.5rem
  }
}

@media (max-width: 1119px) {
  .global-menu .menu-inner {
    width: 100%;
    flex-direction: column
  }
}

.global-menu .menu-inner .inner {
  display: flex;
  flex-direction: column
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .inner {
    width: 25.5rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .inner {
    width: 28.5rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-section {
    padding: 1.5rem 0rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-section {
    padding: 1.5rem 0rem
  }
}

.global-menu .menu-inner .nav-btn-section:not(.bottom-none) {
  border-bottom: 1px solid #ffffff
}
/*
.global-menu .menu-inner .h2 {
  line-height: 1;
  color: #6b6b6b
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .h2 {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .global-menu .menu-inner .h2 {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .h2 {
    font-size: 1.5rem
  }
}
*/
.global-menu .menu-inner .nav-btn-lineup {
  width: auto;
  display: flex;
  align-items: center;
  position: relative
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-lineup {
    margin-bottom: .5rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-lineup {
    margin-bottom: .5rem
  }
}

.global-menu .menu-inner .nav-btn-lineup:last-of-type {
  margin-bottom: 0
}

@media (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-lineup:last-of-type {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ffffff
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .item-img {
    width: 3rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .item-img {
    width: 3rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .item-img {
    margin-right: 1rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .item-img {
    margin-right: 1rem
  }
}

.global-menu .menu-inner .item-name {
  color: #6b6b6b
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .item-name {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .global-menu .menu-inner .item-name {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .item-name {
    font-size: 1rem
  }
}

.global-menu .menu-inner .nav-btn-shop {
  width: auto;
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-shop {
    height: 3.4rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-shop {
    height: 3.4rem
  }
}

.global-menu .menu-inner .nav-btn-shop .text {
  color: #fff;
  padding-left: .2em;
  padding-top: .1em
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-shop .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .global-menu .menu-inner .nav-btn-shop .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-shop .text {
    font-size: 1rem
  }
}

.global-menu .menu-inner .nav-btn-shop:not(:last-of-type) {
  margin-bottom: 3px
}

@media (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-shop:last-of-type {
    margin-bottom: 1.5rem
  }
}

.global-menu .menu-inner .company-info {
  position: relative;
  width: auto;
  border-top: 1px solid #ffffff
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .company-info {
    margin-top: 0rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .company-info {
    margin-top: 4.6rem
  }
}

@media (min-width: 1120px) {
  .global-menu .menu-inner .company-info {
    padding-top: 1.5rem
  }
}

.global-menu .menu-inner .nav-btn-company {
  display: block
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-company {
    margin-top: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-company {
    margin-top: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-company {
    margin-bottom: 1rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-company {
    margin-bottom: 1rem
  }
}

.global-menu .menu-inner .nav-btn-company .text {
  line-height: 1;
  color: #6b6b6b
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .nav-btn-company .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .global-menu .menu-inner .nav-btn-company .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .nav-btn-company .text {
    font-size: 1rem
  }
}

.global-menu .menu-inner .sns-icons {
  display: flex;
  align-items: center;
  position: absolute
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .sns-icons {
    bottom: .8rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .sns-icons {
    bottom: 1.1rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .sns-icons {
    right: 0rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .sns-icons {
    right: 0rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .sns-icons {
    gap: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .sns-icons {
    gap: 1.5rem
  }
}

.global-menu .menu-inner .icon-sns svg {
  fill: #6b6b6b;
  display: block
}

@media (min-width: 1120px) {
  .global-menu .menu-inner .icon-sns {
    margin-bottom: .3rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .icon-sns.instagram {
    width: 1.8rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .icon-sns.instagram {
    width: 1.8rem
  }
}

@media all and (min-width: 1120px) {
  .global-menu .menu-inner .icon-sns.twitter {
    width: 2rem
  }
}

@media all and (max-width: 1119px) {
  .global-menu .menu-inner .icon-sns.twitter {
    width: 2rem
  }
}

.btn-grobalmenu {
  position: fixed;
  z-index: 10;
  cursor: pointer
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu {
    width: 5rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu {
    width: 5rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu {
    height: 5.5rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu {
    height: 4rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu {
    right: 1rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu {
    right: 0rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu {
    top: .5rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu {
    top: 0rem
  }
}

.btn-grobalmenu span {
  height: 3px;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  background-color: #6b6b6b
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu span {
    left: 1rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu span {
    left: 1rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu span:nth-of-type(1) {
    top: 2.2rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu span:nth-of-type(1) {
    top: 1.3rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu span:nth-of-type(1) {
    width: 3rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu span:nth-of-type(1) {
    width: 3rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu span:nth-of-type(2) {
    top: 2.9rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu span:nth-of-type(2) {
    top: 2.1rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu span:nth-of-type(2) {
    width: 3rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu span:nth-of-type(2) {
    width: 3rem
  }
}

.btn-grobalmenu.active span:nth-of-type(1) {
  transform: translateY(-.6rem) rotate(-45deg)
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu.active span:nth-of-type(1) {
    top: 3.2rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu.active span:nth-of-type(1) {
    top: 2.3rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu.active span:nth-of-type(1) {
    left: 1rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu.active span:nth-of-type(1) {
    left: 1rem
  }
}

.btn-grobalmenu.active span:nth-of-type(2) {
  transform: translateY(-.6rem) rotate(45deg)
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu.active span:nth-of-type(2) {
    top: 3.2rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu.active span:nth-of-type(2) {
    top: 2.3rem
  }
}

@media all and (min-width: 1120px) {
  .btn-grobalmenu.active span:nth-of-type(2) {
    left: 1rem
  }
}

@media all and (max-width: 1119px) {
  .btn-grobalmenu.active span:nth-of-type(2) {
    left: 1rem
  }
}

.footer .menu-inner {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative
}

@media all and (min-width: 1120px) {
  .footer .menu-inner {
    padding: 9rem 20rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner {
    padding: 9rem 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner {
    margin-bottom: 37.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner {
    margin-bottom: .5rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .logo {
    width: 15.2rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .logo {
    width: 15.3rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .logo {
    margin-bottom: 4.4rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .logo {
    margin-bottom: 4.5rem
  }
}

.footer .menu-inner .nav-btn-section-outer:not(.bottom-none) {
  border-bottom: 1px solid #F8F8F8
}

.footer .menu-inner .nav-btn-section {
  display: inline-block
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-section {
    width: 76rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-section {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-section {
    padding: 1.5rem 0rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-section {
    padding: 1.5rem 0rem
  }
}

.footer .menu-inner .nav-btn-lineup-wrap {
  display: flex;
  border-bottom: 1px solid #F8F8F8
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-lineup-wrap {
    padding-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-lineup-wrap {
    padding-bottom: 1.5rem
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .nav-btn-lineup-wrap {
    flex-direction: column
  }
}

.footer .menu-inner .nav-btn-lineup {
  display: flex;
  align-items: center;
  position: relative
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-lineup {
    width: 27rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-lineup {
    width: 33.5rem
  }
}

@media (min-width: 1120px) {
  .footer .menu-inner .nav-btn-lineup:not(:last-of-type) {
    margin-right: .5rem
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .nav-btn-lineup:not(:last-of-type) {
    margin-bottom: .5rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .item-img {
    width: 3rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .item-img {
    width: 7rem
  }
}

.footer .menu-inner .item-name {
  color: #6b6b6b
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .item-name {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .item-name {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .item-name {
    font-size: 1.5rem
  }
}

.footer .menu-inner .nav-btn-shop-wrap {
  display: flex
}

@media (max-width: 1119px) {
  .footer .menu-inner .nav-btn-shop-wrap {
    align-items: center;
    flex-direction: column
  }
}

.footer .menu-inner .nav-btn-shop {
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-shop {
    width: 27rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-shop {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-shop {
    height: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-shop {
    height: 4.5rem
  }
}

@media (min-width: 1920px) {
  .footer .menu-inner .nav-btn-shop {
    max-width: 405px
  }
}

.footer .menu-inner .nav-btn-shop .text {
  color: #fff;
  padding-left: .2em;
  padding-top: .1em
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-shop .text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .nav-btn-shop .text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-shop .text {
    font-size: 1.5rem
  }
}

@media (min-width: 1120px) {
  .footer .menu-inner .nav-btn-shop:not(:last-of-type) {
    margin-right: 3px
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .nav-btn-shop:not(:last-of-type) {
    margin-bottom: 3px
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .shop-info-text {
    margin-top: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .shop-info-text {
    margin-top: 2rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .shop-info-text {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .shop-info-text {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .shop-info-text {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .info-text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .info-text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .info-text {
    font-size: 1rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .info-text {
    margin-top: 6rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .info-text {
    margin-top: 6rem
  }
}

.footer .menu-inner .sns-icons {
  display: flex;
  align-items: center
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .sns-icons {
    bottom: 1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .sns-icons {
    bottom: 1rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .sns-icons {
    right: 0rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .sns-icons {
    right: 0rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .sns-icons {
    gap: 3rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .sns-icons {
    gap: 3rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .sns-icons {
    margin-top: 7.1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .sns-icons {
    margin-top: 7.1rem
  }
}

.footer .menu-inner .icon-sns svg {
  fill: #6b6b6b
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .icon-sns.instagram {
    width: 2.2rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .icon-sns.instagram {
    width: 2.2rem
  }
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .icon-sns.twitter {
    width: 2.5rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .icon-sns.twitter {
    width: 2.5rem
  }
}

.footer .menu-inner .nav-btn-company {
  display: inline-block
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-company {
    margin-right: 3rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-company {
    margin-right: 0rem
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .nav-btn-company:not(:first-of-type) {
    margin-top: 3rem
  }
}

.footer .menu-inner .nav-btn-company .text {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .nav-btn-company .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .nav-btn-company .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .nav-btn-company .text {
    font-size: 1.5rem
  }
}

.footer .menu-inner .flex {
  display: flex
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .flex {
    margin-top: 4.7rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .flex {
    margin-top: 4.5rem
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .flex {
    flex-direction: column
  }
}

.footer .menu-inner .copyLight {
 /* margin-right: 0;
  margin-left: auto;
  */
    text-align: center;
  line-height: 1
}

@media all and (min-width: 1120px) {
  .footer .menu-inner .copyLight {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .footer .menu-inner .copyLight {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .footer .menu-inner .copyLight {
    font-size: 1rem
  }
}

@media (max-width: 1119px) {
  .footer .menu-inner .copyLight {
    margin: 6rem auto 0
  }
}

@media (min-width: 1120px) {
  [data-cateid=products] .footer .menu-inner {
    padding: 9rem 10rem;
    margin-bottom: 6rem
  }
  [data-cateid=products] .footer .menu-inner .nav-btn-section {
    width: 65rem
  }
  [data-cateid=products] .footer .menu-inner .nav-btn-shop {
    width: 21.3rem
  }
  [data-cateid=products] .footer .menu-inner .nav-btn-lineup {
    width: 32rem
  }
}

@media all and (min-width: 1120px) {
  [data-cateid=question] .footer .menu-inner {
    margin-bottom: 6rem
  }
}

@media all and (max-width: 1119px) {
  [data-cateid=question] .footer .menu-inner {
    margin-bottom: 1.5rem
  }
}

.c-peeling-lotion {
  background: #F1F5F7
}

.c-moisture-serum {
  background: #F6F4F0
}

.c-custom-mypad {
  background: #F3F5F5
}

.c-clansing {
  background: #F9F7F3
}

body {
  background-color: #ecf0ef
}

.kv-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1
}

.kv-video video {
  object-fit: cover;
  height: 100%;
  width: 100%
}

.g-wrapper:not([data-cateid=home]):before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000
}

.loaded .g-wrapper:not([data-cateid=home]):before {
  animation: fadeOut 1s forwards
}

.note {
  display: inline-block;
  transform: scale(.8);
  transform-origin: top left;
  margin-right: -.35em
}

.contents {
  background: rgba(255, 255, 255, 255);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  position: relative
}

@media (max-width: 1919px) and (min-width: 1120px) {
  .contents {
    margin-left: 3rem
  }
}

@media (max-width: 1919px) and (max-width: 1119px) {
  .contents {
    margin-left: .5rem
  }
}

@media (max-width: 1919px) and (min-width: 1120px) {
  .contents {
    margin-right: 3rem
  }
}

@media (max-width: 1919px) and (max-width: 1119px) {
  .contents {
    margin-right: .5rem
  }
}

@media (min-width: 1920px) {
  .contents {
    width: 100%;
    max-width: 1830px;
    margin: auto
  }
}

.contents .-wrapper:nth-child(1) {
    position: relative;
    font-weight: bold;
}

.contents .-wrapper:nth-child(1) .-pic-serum-wave {
  position: absolute
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    top: -7.7rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    top: 9.6rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    left: -3.3rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    left: -11.4rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    width: 26.6rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave {
    width: 26.2rem
  }
}

@media (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-serum-wave img {
    transform: rotate(26.77deg)
  }
}

.contents .-wrapper:nth-child(1) .-pic-lotion-wave {
  position: absolute
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    top: 4.9rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    top: -9.8rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    right: -3.1rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    right: -8.6rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    width: 25.3rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-wrapper:nth-child(1) .-pic-lotion-wave {
    width: 17.8rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-top {
    margin-bottom: 37.6rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-top {
    margin-bottom: 37.5rem
  }
}

.contents .-lineup-wrapper {
  margin: auto
}

@media all and (min-width: 1120px) {
  .contents .-lineup-wrapper {
    padding: 8.5rem 0rem 9rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-lineup-wrapper {
    padding: 8.6rem 0rem 9rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-lineup-wrapper {
    width: 82rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-lineup-wrapper {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-products {
	  font-size: 20px;
    margin-left: 40rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-lineup-wrapper .-h2tex {
	  font-size: 20px;
	  
    padding: 8.5rem 0rem 9rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-lineup-wrapper .-h2tex{
    padding: 8.6rem 0rem 9rem
  }
}

@media all and (min-width: 1120px) {
  .contents .-lineup-wrapper .-h2tex{
    width: 82rem
  }
}

@media all and (max-width: 1119px) {
  .contents .-lineup-wrapper .-h2tex{
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-products {
    margin-left: 40rem
  }
}
@media all and (max-width: 1119px) {
  .contents.-products {
    margin-left: .5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-products {
    margin-right: 3rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-products {
    margin-right: .5rem
  }
}

@media (min-width: 1920px) {
  .contents.-products {
    max-width: 1275px
  }
}

@media all and (min-width: 1120px) {
  .contents.-products .-wrapper.description {
    padding: 6rem 10rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-products .-wrapper.description {
    padding: 6rem 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-products .-wrapper {
    padding: 9rem 10rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-products .-wrapper {
    padding: 9rem 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-products .-wrapper.footer {
    padding: 0rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-products .-wrapper.footer {
    padding: 0rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-question .-wrapper {
    padding: 9rem 20rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-question .-wrapper {
    padding: 9rem 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .contents.-question .-wrapper.footer {
    padding: 0rem
  }
}

@media all and (max-width: 1119px) {
  .contents.-question .-wrapper.footer {
    padding: 0rem
  }
}

.blur-trigger {
  width: 100%;
  height: 1px;
  position: absolute;
  transform: translateY(-100%)
}

@media all and (min-width: 1120px) {
  .blur-trigger {
    padding-top: 6.5rem
  }
}

@media all and (max-width: 1119px) {
  .blur-trigger {
    padding-top: 4rem
  }
}

@media all and (min-width: 1120px) {
  [data-cateid=products] .blur-trigger {
    margin-top: 1rem
  }
}

@media all and (max-width: 1119px) {
  [data-cateid=products] .blur-trigger {
    margin-top: -7rem
  }
}

@media all and (min-width: 1120px) {
  [data-cateid=question] .blur-trigger {
    margin-top: 1rem
  }
}

@media all and (max-width: 1119px) {
  [data-cateid=question] .blur-trigger {
    margin-top: 0rem
  }
}

@media (max-width: 1119px) {
  [data-cateid=question] .blur-trigger {
    transform: translateY(10%);
    top: 0
  }
}

.blur-end-trigger {
  position: relative;
  width: 100%;
  height: 1px
}

.section-partition {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #F8F8F8
}

.section-main {
  position: relative;
  background-color: transparent;
  overflow-x: hidden
}

@media (min-width: 1120px) {
  .section-main {
    padding-top: 100vh
  }
}

@media (max-width: 1119px) {
  .section-main {
    padding-top: 100vh
  }
}

.section-main .kv-img {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%
}

@media (max-width: 1119px) {
  .section-main .kv-img {
    height: auto
  }
}

.section-main .kv-img img {
  object-fit: cover;
  width: 100%
}

@media (min-width: 1120px) {
  .section-main .kv-img img {
    height: 100%
  }
}

@media (max-width: 1119px) {
  .section-main .kv-img img {
    height: 100%
  }
}

.section-main .page-title {
  text-align: center;
  line-height: 1;
  letter-spacing: .3em
}

@media all and (min-width: 1120px) {
  .section-main .page-title {
    font-size: 40px
  }
}

@media all and (min-width: 1280px) {
  .section-main .page-title {
    font-size: 4rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .page-title {
    font-size: 3.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .page-title {
    padding-top: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .page-title {
    padding-top: 9rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .page-title {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .page-title {
    margin-bottom: 2rem
  }
}

@media (min-width: 1120px) {
  .section-main .page-title {
    margin-left: .2em
  }
}

@media (max-width: 1119px) {
  .section-main .page-title {
    width: 18.5rem;
    fill: #6b6b6b;
    margin-left: auto;
    margin-right: auto
  }
}

.section-main .page-text {
  text-align: center
}

@media all and (min-width: 1120px) {
  .section-main .page-text {
    font-size: 30px
  }
}

@media all and (min-width: 1280px) {
  .section-main .page-text {
    font-size: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .page-text {
    font-size: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .page-text {
    padding-bottom: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .page-text {
    padding-bottom: 8.8rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .-contents-ttl {
    margin-bottom: 4.1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-contents-ttl {
    margin-bottom: 3.9rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .-contents-ttl {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-main .-contents-ttl {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-contents-ttl {
    font-size: 2rem
  }
}
@media all and (min-width: 1120px) {
  .section-main  {
	  font-size: 20px;
    margin-bottom: 4.1rem;
	text-align: center
	
  }
}


.section-main .ingredients {
  margin: auto
      
}

@media all and (min-width: 1120px) {
  .section-main .ingredients {
    width: 82rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients {
    padding-top: 8.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients {
    padding-top: 8.6rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients {
    padding-bottom: 8.9rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients {
    padding-bottom: 8.8rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-contents-ttl {
    margin-bottom: 4.1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-contents-ttl {
    margin-bottom: 3.9rem
  }
}

.section-main .ingredients .-box {
  display: flex
}

@media (min-width: 1120px) {
  .section-main .ingredients .-box {
    justify-content: space-between
  }
}

@media (max-width: 1119px) {
  .section-main .ingredients .-box {
    flex-direction: column
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-imgl {
    width: auto;
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-img {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-img {
    margin-right: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-img {
    margin-right: 3rem
  }
}

@media (max-width: 1119px) {
  .section-main .ingredients .-img {
    margin-bottom: 3rem
  }
}

@media (min-width: 1120px) {
  .section-main .ingredients .-details {
    flex: 1
  }
}

@media (max-width: 1119px) {
  .section-main .ingredients .-details {
    width: 100%
  }
}

.section-main .ingredients .-details-ttl {
  font-weight: 400
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-details-ttl {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-details-ttl {
    margin-bottom: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-details-ttl {
    font-size: 30px
  }
}

@media all and (min-width: 1280px) {
  .section-main .ingredients .-details-ttl {
    font-size: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-details-ttl {
    font-size: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .ingredients .-details-txt {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-main .ingredients .-details-txt {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .ingredients .-details-txt {
    font-size: 1.5rem
  }
}

@media (min-width: 1120px) {
  .section-main .ingredients .-details-txt {
    line-height: 2
  }
}

@media (max-width: 1119px) {
  .section-main .ingredients .-details-txt {
    line-height: 1.5
  }
}

.section-main .gray-box {
  margin: auto
}

@media all and (min-width: 1120px) {
  .section-main .gray-box {
    width: 82rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-skin {
    padding-top: 8.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-skin {
    padding-top: 8.6rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-skin {
    margin-bottom: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-skin {
    margin-bottom: 5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-skin .-contents-ttl {
    margin-bottom: 4.1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-skin .-contents-ttl {
    margin-bottom: 3.9rem
  }
}

@media (max-width: 1119px) {
  .section-main .gray-box.-skin .column {
    padding-bottom: 3rem
  }
}

.section-main .gray-box.-skin .-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-skin .-img {
    height: 21rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-skin .-img {
    height: 18rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-method {
    padding-bottom: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-method {
    padding-bottom: 9rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box.-method .column {
    padding: 4.6rem 4.5rem 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box.-method .column {
    padding: 2.9rem 1.5rem 3rem
  }
}

@media (min-width: 1120px) {
  .section-main .gray-box.-method .-img {
    flex-direction: column;
    align-items: flex-start;
    justify-content: baseline
  }
}

.section-main .gray-box .column {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column {
    padding: 4.2rem 4.5rem 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column {
    padding: 3rem 1.5rem 3.8rem
  }
}

.section-main .gray-box .column .-column-ttl {
  position: relative;
  font-weight: 400;
  line-height: 1.4
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl {
    margin-bottom: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl {
    margin-bottom: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl {
    margin-left: 2.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl {
    margin-left: 2.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .column .-column-ttl {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl {
    font-size: 2rem
  }
}

.section-main .gray-box .column .-column-ttl:before {
  content: "";
  position: absolute;
  top: .5rem;
  background-repeat: no-repeat;
  background-size: cover
}

@media (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl:before {
    width: 2rem;
    height: 2rem;
    left: -2.3rem
  }
}

@media (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl:before {
    width: 2rem;
    height: 2rem;
    left: -2.5rem
  }
}

.section-main .gray-box .column .-column-ttl.-water:before {
  background-image: url()
}

.section-main .gray-box .column .-column-ttl.-cane {
  margin-left: 3rem
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl.-cane {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl.-cane {
    margin-bottom: 1.5rem
  }
}

.section-main .gray-box .column .-column-ttl.-cane:before {
  background-image: url()
}

@media (min-width: 1120px) {
  .section-main .gray-box .column .-column-ttl.-cane:before {
    left: -3rem
  }
}

@media (max-width: 1119px) {
  .section-main .gray-box .column .-column-ttl.-cane:before {
    left: -3rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-txt {
    margin-bottom: 4.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-txt {
    margin-bottom: 3rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .column .-column-txt {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .column .-column-txt {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .column .-column-txt {
    font-size: 1.5rem
  }
}

.section-main .gray-box .definition {
  display: flex
}

@media (min-width: 1120px) {
  .section-main .gray-box .definition {
    justify-content: space-between
  }
}

@media (max-width: 1119px) {
  .section-main .gray-box .definition {
    flex-direction: column
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .definition .-item {
    margin: 0rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .definition .-item {
    margin: 0rem 0rem 3rem
  }
}

@media (min-width: 1120px) {
  .section-main .gray-box .definition .-item {
    width: 35rem
  }
}

.section-main .gray-box .definition .-item:last-child {
  margin-bottom: 0
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .definition .-txt {
    margin-bottom: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .definition .-txt {
    margin-bottom: 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .definition .-txt {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .definition .-txt {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .definition .-txt {
    font-size: 1.5rem
  }
}

.section-main .gray-box .definition .-img {
  margin: 0
}

@media (min-width: 1120px) {
  .section-main .gray-box .definition .-img {
    display: flex
  }
}

.section-main .gray-box .definition .-append {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .definition .-append {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .definition .-append {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .definition .-append {
    font-size: 1.2rem
  }
}

@media (max-width: 1119px) {
  .section-main .gray-box .definition .-append {
    margin-top: 1.8rem
  }
}

.section-main .gray-box .definition .-link {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #6B6B6B;
  transition: all .4s
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .definition .-link {
    margin-top: .6rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .definition .-link {
    margin-top: .7rem
  }
}

@media (hover: hover) and (pointer: fine) {
  .section-main .gray-box .definition .-link:focus {
    opacity: .7
  }
  .section-main .gray-box .definition .-link:hover {
    opacity: .7
  }
}

.section-main .gray-box .merit {
  background: #f0f8ff
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit {
    margin-bottom: 4rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit {
    margin-bottom: 2.8rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit {
    padding: 1.5rem 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit {
    padding: 1.2rem 3rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit {
    border-radius: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit {
    border-radius: 2rem
  }
}

.section-main .gray-box .merit .-merit-ttl {
  font-family: Montserrat, sans-serif
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-ttl {
    margin-bottom: .8rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-ttl {
    margin-bottom: .6rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-ttl {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .merit .-merit-ttl {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-ttl {
    font-size: 1.5rem
  }
}

.section-main .gray-box .merit .-merit-item {
  position: relative
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-item {
    margin-left: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-item {
    margin-left: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-item {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-main .gray-box .merit .-merit-item {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-item {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-item {
    margin-bottom: .4rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-item {
    margin-bottom: .4rem
  }
}

.section-main .gray-box .merit .-merit-item:last-child {
  margin-bottom: 0
}

.section-main .gray-box .merit .-merit-item:before {
  content: "";
  position: absolute;
  top: .4rem;
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/top/icon-check.png)
}

@media all and (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-item:before {
    left: -1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .gray-box .merit .-merit-item:before {
    left: -1.5rem
  }
}

@media (min-width: 1120px) {
  .section-main .gray-box .merit .-merit-item:before {
    top: .2rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-contents-ttl {
    margin-bottom: 4.1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-contents-ttl {
    margin-bottom: 4.2rem
  }
}

.section-main .-lineup .-lineup-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-lineup-list {
    gap: 1.5rem 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-lineup-list {
    gap: 3rem 1.5rem
  }
}

@media (max-width: 1119px) {
  .section-main .-lineup .-lineup-list {
    justify-content: flex-start
  }
}

.section-main .-lineup .-lineup-item {
  position: relative
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-lineup-item {
    width: 17.8rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-lineup-item {
    width: 16rem
  }
}

.section-main .-lineup .-lineup-link {
  position: relative;
  display: block;
  transition: all .4s
}

@media (hover: hover) and (pointer: fine) {
  .section-main .-lineup .-lineup-link:focus {
    opacity: .7
  }
  .section-main .-lineup .-lineup-link:hover {
    opacity: .7
  }
}

.section-main .-lineup .-new .-lineup-link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  border-radius: 100px;
  background-color: #6b6b6b
}

.section-main .-lineup .-new .-lineup-link:after {
  content: "NEW";
  position: absolute;
  top: 1.7rem;
  right: .7rem;
  z-index: 1;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: .09em;
  color: #fff
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-new .-lineup-link:after {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-main .-lineup .-new .-lineup-link:after {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-new .-lineup-link:after {
    font-size: 1.2rem
  }
}

.section-main .-lineup .-lineup-name {
  text-align: center
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-lineup-name {
    margin-top: .8rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-lineup-name {
    margin-top: .8rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .-lineup .-lineup-name {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-main .-lineup .-lineup-name {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .-lineup .-lineup-name {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .note-txt {
    padding: 9rem 20rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .note-txt {
    padding: 9rem 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-main .note-txt {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .section-main .note-txt {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-main .note-txt {
    font-size: 1rem
  }
}

@media (min-width: 1120px) {
  .section-main .note-txt {
    text-align: center
  }
}

.section-question {
  position: relative;
  background-color: transparent
}

@media all and (min-width: 1120px) {
  .section-question {
    padding-top: 6rem
  }
}

@media all and (max-width: 1119px) {
  .section-question {
    padding-top: 1.5rem
  }
}

.section-question .kv-img {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%
}

@media (max-width: 1119px) {
  .section-question .kv-img {
    height: auto
  }
}

.section-question .kv-img img {
  object-fit: cover;
  width: 100%
}

@media (min-width: 1120px) {
  .section-question .kv-img img {
    height: 100%
  }
}

@media (max-width: 1119px) {
  .section-question .kv-img img {
    height: 100%
  }
}

.section-question .page-title {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-question .page-title {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-question .page-title {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .page-title {
    font-size: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .page-title {
    margin-bottom: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .page-title {
    margin-bottom: 4.5rem
  }
}

.section-question .page-text {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-question .page-text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-question .page-text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .page-text {
    font-size: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .page-text {
    margin-bottom: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .page-text {
    margin-bottom: 3rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block:not(:last-of-type) {
    margin-bottom: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block:not(:last-of-type) {
    margin-bottom: 3.1rem
  }
}

.section-question .question-block .inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: start
}

@media all and (min-width: 1120px) {
  .section-question .question-block .inner {
    width: 82rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .inner {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .inner {
    padding: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .inner {
    padding: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .inner {
    border-radius: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .inner {
    border-radius: 2rem
  }
}

.section-question .question-block .inner .close, .section-question .question-block .inner[aria-expanded=true] .open {
  display: none
}

.section-question .question-block .inner[aria-expanded=true] .close {
  display: block
}

.section-question .question-block .title {
  display: flex
}

@media all and (min-width: 1120px) {
  .section-question .question-block .title {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-question .question-block .title {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .title {
    font-size: 1.5rem
  }
}

@media (max-width: 1119px) {
  .section-question .question-block .title {
    width: 28rem
  }
}

.section-question .question-block .mark {
  display: inline-block
}

@media all and (min-width: 1120px) {
  .section-question .question-block .mark {
    margin-right: .7rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .mark {
    margin-right: .7rem
  }
}

.section-question .question-block .answer {
  text-align: start
}

@media all and (min-width: 1120px) {
  .section-question .question-block .answer {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-question .question-block .answer {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .answer {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .answer {
    margin-top: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .answer {
    margin-top: 1.5rem
  }
}

.section-question .question-block .open, .section-question .question-block .close {
  margin: auto 0;
  display: inline-block;
  position: absolute
}

@media all and (min-width: 1120px) {
  .section-question .question-block .open, .section-question .question-block .close {
    width: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .open, .section-question .question-block .close {
    width: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .open, .section-question .question-block .close {
    height: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .open, .section-question .question-block .close {
    height: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .open, .section-question .question-block .close {
    top: 1.8rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .open, .section-question .question-block .close {
    top: 1.8rem
  }
}

@media all and (min-width: 1120px) {
  .section-question .question-block .open, .section-question .question-block .close {
    right: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .question-block .open, .section-question .question-block .close {
    right: 1.5rem
  }
}

.section-question .question-block .open svg, .section-question .question-block .close svg {
  fill: #6b6b6b
}

@media all and (min-width: 1120px) {
  .section-question .-wrapper.note .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .section-question .-wrapper.note .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-question .-wrapper.note .text {
    font-size: 1rem
  }
}

.section-products {
  position: relative;
  background-color: transparent
}

@media (min-width: 1120px) {
  .section-products {
    padding-top: 6rem
  }
}

@media (max-width: 1119px) {
  .section-products {
    padding-top: 37.5rem
  }
}

@media (min-width: 1920px) {
  .section-products {
    width: 1920px;
    margin: auto
  }
}

.section-products .bg {
  width: 100%;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0
}

.section-products .bg.clensing-gel {
  background: linear-gradient(#F7F8F7, #F0EFE3)
}

.section-products .bg.clensing-gel .bg-item {
  background-image: url(https://www.blanchoney.jp/assets/img/products/clansing/kv-bg-item.png)
}

@media all and (min-width: 1120px) {
  .section-products .bg.clensing-gel .bg-item {
    background-size: 68rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .bg.clensing-gel .bg-item {
    background-size: 37rem
  }
}

@media (min-width: 1920px) {
  .section-products .bg.clensing-gel .bg-item {
    background-size: calc(68rem + 100vw - 1920px)
  }
}

.section-products .bg.custom-maypad {
  background: linear-gradient(#F3F5F5, #D2E3EB)
}

.section-products .bg.custom-maypad .bg-item {
  background-image: url(../img/products/custom-mypad/kv-bg-item.png)
}

@media all and (min-width: 1120px) {
  .section-products .bg.custom-maypad .bg-item {
    background-size: 74rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .bg.custom-maypad .bg-item {
    background-size: 74rem
  }
}

@media (min-width: 1920px) {
  .section-products .bg.custom-maypad .bg-item {
    background-size: calc(74rem + 100vw - 1920px)
  }
}

@media (max-width: 1119px) {
  .section-products .bg.custom-maypad .bg-item {
    background-size: 100%;
    background-image: url(../img/products/custom-mypad/kv-bg-item-sp.png)
  }
}

.section-products .bg.moisture-serum {
  background: linear-gradient(#F7F8F7, #F0EFE3)
}

.section-products .bg.moisture-serum .bg-item {
  background-image: url(../img/products/moisture-serum/kv-bg-item.png)
}

@media all and (min-width: 1120px) {
  .section-products .bg.moisture-serum .bg-item {
    background-size: 68rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .bg.moisture-serum .bg-item {
    background-size: 39rem
  }
}

@media (max-width: 1119px) {
  .section-products .bg.moisture-serum .bg-item {
    background-position-x: 6.5rem
  }
}

@media (min-width: 1920px) {
  .section-products .bg.moisture-serum .bg-item {
    width: 1920px;
    margin: auto
  }
}

.section-products .bg.peeling-lotion {
  background: linear-gradient(#F6F8F8, #DFEBF0)
}

.section-products .bg.peeling-lotion .bg-item {
  background-image: url(../img/products/peeling-lotion/kv-bg-item.png)
}

@media all and (min-width: 1120px) {
  .section-products .bg.peeling-lotion .bg-item {
    background-size: 68rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .bg.peeling-lotion .bg-item {
    background-size: 40rem
  }
}

@media (max-width: 1119px) {
  .section-products .bg.peeling-lotion .bg-item {
    background-size: 100%;
    background-image: url(../img/products/peeling-lotion/kv-bg-item-sp.png)
  }
}

@media (min-width: 1920px) {
  .section-products .bg.peeling-lotion .bg-item {
    width: 1920px;
    margin: auto
  }
}

.section-products .bg-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat
}

.section-products .kv-img-container {
  width: 100%;
  height: 100%
}

@media (min-width: 1920px) {
  .section-products .kv-img-container {
    width: 1920px;
    margin: auto
  }
}

.section-products .kv-img {
  position: relative;
  width: 40rem
}

@media (max-width: 1119px) {
  .section-products .kv-img {
    width: 100%;
    height: auto
  }
}

.section-products .kv-img img {
  object-fit: cover;
  width: 100%
}

@media (min-width: 1120px) {
  .section-products .kv-img img {
    height: 100%
  }
}

@media (max-width: 1119px) {
  .section-products .kv-img img {
    height: 100%
  }
}

.section-products .note {
  display: inline-block;
  transform: scale(.6);
  transform-origin: top left;
  margin-right: -.35em
}

.section-products .icon-badge {
  line-height: 1.3;
  position: absolute;
  border-radius: 50%;
  background: #6b6b6b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  z-index: 1
}

@media all and (min-width: 1120px) {
  .section-products .icon-badge {
    width: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .icon-badge {
    width: 9rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .icon-badge {
    height: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .icon-badge {
    height: 9rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .icon-badge {
    top: 0rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .icon-badge {
    top: 0rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .icon-badge {
    padding-left: .2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .icon-badge {
    padding-left: .2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .icon-badge {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .icon-badge {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .icon-badge {
    font-size: 1.2rem
  }
}

@media (min-width: 1120px) {
  .section-products .icon-badge {
    left: 0;
    transform: translate(-50%)
  }
}

@media (max-width: 1119px) {
  .section-products .icon-badge {
    right: 0;
    transform: translateY(-50%)
  }
}

.section-products .brand {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .brand {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .brand {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .brand {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .brand {
    margin-bottom: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .brand {
    margin-bottom: 1rem
  }
}

.section-products .product-title {
  line-height: 1.2;
  white-space: nowrap
}

@media all and (min-width: 1120px) {
  .section-products .product-title {
    font-size: 30px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-title {
    font-size: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-title {
    font-size: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-title {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-title {
    margin-bottom: 1.5rem
  }
}

.section-products .product-info {
  line-height: 1.5
}

@media all and (min-width: 1120px) {
  .section-products .product-info {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-info {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-info {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-info {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-info {
    margin-bottom: 1.5rem
  }
}

.section-products .tags-wrap {
  flex-wrap: wrap
}

@media all and (min-width: 1120px) {
  .section-products .tags-wrap {
    gap: .5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .tags-wrap {
    gap: .5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .tags-wrap {
    margin-bottom: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .tags-wrap {
    margin-bottom: 1.5rem
  }
}

.section-products .tag {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .tag {
    padding: .8rem 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .tag {
    padding: .8rem 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .tag {
    border-radius: 2px
  }
}

@media all and (max-width: 1119px) {
  .section-products .tag {
    border-radius: 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .tag {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .tag {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .tag {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-summary {
    margin-bottom: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-summary {
    margin-bottom: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-summary {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-summary {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-summary {
    font-size: 1.5rem
  }
}

@media (min-width: 1120px) {
  .section-products .product-summary {
    line-height: 2
  }
}

.section-products .product-summary .note {
  top: 3px;
  position: relative
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs {
    gap: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs {
    gap: 1.5rem
  }
}

.section-products .product-imgs .img {
  display: flex;
  flex-direction: column;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .img {
    width: 17.8rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .img {
    width: 16rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .img {
    margin-left: 7rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .img {
    margin-left: 0rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .img {
    margin-right: 7rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .img {
    margin-right: 0rem
  }
}

.section-products .product-imgs .icon-badge {
  line-height: 1.3;
  right: 0;
  left: auto;
  transform: translate(0)
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .icon-badge {
    width: 5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .icon-badge {
    width: 5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .icon-badge {
    height: 5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .icon-badge {
    height: 5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .icon-badge {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-imgs .icon-badge {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .icon-badge {
    font-size: 1rem
  }
}

.section-products .product-imgs .price {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .price {
    margin-top: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .price {
    margin-top: 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .price {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-imgs .price {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .price {
    font-size: 1rem
  }
}

.section-products .product-imgs .area-buy-btn {
  display: flex;
  flex-direction: column
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .area-buy-btn {
    margin-top: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .area-buy-btn {
    margin-top: 1rem
  }
}

.section-products .product-imgs .btn-buy {
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .btn-buy {
    width: 17.8rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .btn-buy {
    width: 16rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .btn-buy {
    height: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .btn-buy {
    height: 3rem
  }
}

.section-products .product-imgs .btn-buy .text {
  color: #fff;
  padding-left: .2em;
  padding-top: .1em
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .btn-buy .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .section-products .product-imgs .btn-buy .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .btn-buy .text {
    font-size: 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .product-imgs .btn-buy:not(:last-of-type) {
    margin-bottom: .2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .product-imgs .btn-buy:not(:last-of-type) {
    margin-bottom: .5rem
  }
}

.section-products .recommend-process .process-holder {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "areaA areaC areaE areaF" "areaB areaD areaE areaF"
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    width: 65rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    border-radius: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    border-radius: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    padding: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    padding: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    height: 8.9rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    height: 8.9rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    gap: .5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    gap: .5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .process-holder {
    grid-template-columns: 2.5rem 19.33rem 19.33rem 19.33rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .process-holder {
    grid-template-columns: 2rem 10.2rem 8.4rem 8.4rem
  }
}

.section-products .recommend-process .inner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b6b6b;
  background: #ffffff;
  text-align: center
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .inner-item {
    border-radius: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .inner-item {
    border-radius: 1rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .inner-item {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .recommend-process .inner-item {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .inner-item {
    font-size: 1rem
  }
}

.section-products .recommend-process .inner-item.icon {
  background: none
}

.section-products .recommend-process .inner-item.use {
  background: #6b6b6b;
  color: #fff
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .icon {
    height: 2.7rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .icon {
    height: 2.7rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .icon {
    width: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .icon {
    width: 1.5rem
  }
}

.section-products .recommend-process .icon svg {
  fill: #6b6b6b
}

.section-products .recommend-process .itemA {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: areaA
}

.section-products .recommend-process .itemB {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: areaB
}

.section-products .recommend-process .itemC {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: areaC
}

.section-products .recommend-process .itemD {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: areaD
}

.section-products .recommend-process .itemE {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: areaE
}

.section-products .recommend-process .itemF {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  grid-area: areaF
}

@media all and (min-width: 1120px) {
  .section-products .recommend-process .txt-holder {
    margin-top: -3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .recommend-process .txt-holder {
    margin-top: -1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit, .section-products .-wrapper.howto {
    gap: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit, .section-products .-wrapper.howto {
    gap: 1.5rem
  }
}

.section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
    margin-bottom: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
    margin-bottom: 4.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .block-title, .section-products .-wrapper.howto .block-title {
    font-size: 2rem
  }
}

.section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
  display: flex;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
    gap: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
    gap: 3rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
    margin-bottom: 9rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
    margin-bottom: 4.5rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block, .section-products .-wrapper.howto .inner-block {
    flex-direction: column
  }
}

@media (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block:nth-child(odd), .section-products .-wrapper.howto .inner-block:nth-child(odd) {
    flex-direction: row-reverse
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block:last-child, .section-products .-wrapper.howto .inner-block:last-child {
    margin-bottom: 0rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block:last-child, .section-products .-wrapper.howto .inner-block:last-child {
    margin-bottom: 0rem
  }
}

.section-products .-wrapper.benefit .inner-block.align-top, .section-products .-wrapper.howto .inner-block.align-top {
  align-items: flex-start
}

.section-products .-wrapper.benefit .inner-block.type-clumn, .section-products .-wrapper.howto .inner-block.type-clumn {
  flex-direction: column;
  align-items: flex-start
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn, .section-products .-wrapper.howto .inner-block.type-clumn {
    gap: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn, .section-products .-wrapper.howto .inner-block.type-clumn {
    gap: 3rem
  }
}

.section-products .-wrapper.benefit .inner-block.type-clumn .text-area, .section-products .-wrapper.howto .inner-block.type-clumn .text-area {
  width: auto
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn .title, .section-products .-wrapper.howto .inner-block.type-clumn .title {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn .title, .section-products .-wrapper.howto .inner-block.type-clumn .title {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn .title, .section-products .-wrapper.howto .inner-block.type-clumn .title {
    font-size: 2rem
  }
}

@media (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn .title, .section-products .-wrapper.howto .inner-block.type-clumn .title {
    line-height: 1
  }
}

@media (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.type-clumn .text, .section-products .-wrapper.howto .inner-block.type-clumn .text {
    line-height: 1
  }
}

.section-products .-wrapper.benefit .img, .section-products .-wrapper.howto .img {
  display: flex;
  flex-direction: column;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .img, .section-products .-wrapper.howto .img {
    width: 31.75rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .img, .section-products .-wrapper.howto .img {
    width: 15rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .imgs, .section-products .-wrapper.howto .imgs {
    gap: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs, .section-products .-wrapper.howto .imgs {
    gap: 3rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs, .section-products .-wrapper.howto .imgs {
    flex-direction: column
  }
}

.section-products .-wrapper.benefit .imgs .img, .section-products .-wrapper.howto .imgs .img {
  align-items: baseline
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .imgs .img, .section-products .-wrapper.howto .imgs .img {
    width: 31.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs .img, .section-products .-wrapper.howto .imgs .img {
    width: 33.5rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs .img, .section-products .-wrapper.howto .imgs .img {
    margin: auto
  }
}

.section-products .-wrapper.benefit .imgs .text, .section-products .-wrapper.howto .imgs .text {
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .imgs .text, .section-products .-wrapper.howto .imgs .text {
    margin-top: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs .text, .section-products .-wrapper.howto .imgs .text {
    margin-top: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .imgs .text, .section-products .-wrapper.howto .imgs .text {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs .text, .section-products .-wrapper.howto .imgs .text {
    margin-bottom: 1.5rem
  }
}

.section-products .-wrapper.benefit .imgs .tags-wrap, .section-products .-wrapper.howto .imgs .tags-wrap {
  margin-bottom: 0
}

.section-products .-wrapper.benefit .imgs .tag, .section-products .-wrapper.howto .imgs .tag {
  background: rgba(255, 255, 255, 0);
  border: 2px solid #F3F5F5
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .imgs .tag, .section-products .-wrapper.howto .imgs .tag {
    padding: .6rem .8rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .imgs .tag, .section-products .-wrapper.howto .imgs .tag {
    padding: .6rem .8rem
  }
}

.section-products .-wrapper.benefit .pic, .section-products .-wrapper.howto .pic {
  display: flex;
  justify-content: center;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .pic, .section-products .-wrapper.howto .pic {
    width: 31rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .pic, .section-products .-wrapper.howto .pic {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area, .section-products .-wrapper.howto .text-area {
    width: 31.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area, .section-products .-wrapper.howto .text-area {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .title, .section-products .-wrapper.howto .text-area .title {
    font-size: 20px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .text-area .title, .section-products .-wrapper.howto .text-area .title {
    font-size: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .title, .section-products .-wrapper.howto .text-area .title {
    font-size: 2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .title, .section-products .-wrapper.howto .text-area .title {
    margin-bottom: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .title, .section-products .-wrapper.howto .text-area .title {
    margin-bottom: 1.5rem
  }
}

.section-products .-wrapper.benefit .text-area .title .note, .section-products .-wrapper.howto .text-area .title .note {
  top: 3px;
  position: relative
}

.section-products .-wrapper.benefit .text-area .text, .section-products .-wrapper.howto .text-area .text {
  line-height: 2
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .text, .section-products .-wrapper.howto .text-area .text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .text-area .text, .section-products .-wrapper.howto .text-area .text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .text, .section-products .-wrapper.howto .text-area .text {
    font-size: 1.5rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .text, .section-products .-wrapper.howto .text-area .text {
    line-height: 1.5
  }
}

.section-products .-wrapper.benefit .text-area .text .mini, .section-products .-wrapper.howto .text-area .text .mini {
  display: block
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .text .mini, .section-products .-wrapper.howto .text-area .text .mini {
    font-size: 12px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .text-area .text .mini, .section-products .-wrapper.howto .text-area .text .mini {
    font-size: 1.2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .text .mini, .section-products .-wrapper.howto .text-area .text .mini {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .tags-wrap, .section-products .-wrapper.howto .text-area .tags-wrap {
    margin-bottom: 0rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .tags-wrap, .section-products .-wrapper.howto .text-area .tags-wrap {
    margin-bottom: 0rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .tags-wrap, .section-products .-wrapper.howto .text-area .tags-wrap {
    width: 32.5rem
  }
}

.section-products .-wrapper.benefit .text-area .tags-wrap.has-group, .section-products .-wrapper.howto .text-area .tags-wrap.has-group {
  flex-direction: column
}

.section-products .-wrapper.benefit .text-area .group-title, .section-products .-wrapper.howto .text-area .group-title {
  line-height: 1;
  display: block
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .group-title, .section-products .-wrapper.howto .text-area .group-title {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .text-area .group-title, .section-products .-wrapper.howto .text-area .group-title {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .group-title, .section-products .-wrapper.howto .text-area .group-title {
    font-size: 1rem
  }
}

.section-products .-wrapper.benefit .text-area .group, .section-products .-wrapper.howto .text-area .group {
  display: flex;
  flex-wrap: wrap
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .group, .section-products .-wrapper.howto .text-area .group {
    gap: .5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .group, .section-products .-wrapper.howto .text-area .group {
    gap: .5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .group:not(:last-of-type), .section-products .-wrapper.howto .text-area .group:not(:last-of-type) {
    margin-bottom: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .group:not(:last-of-type), .section-products .-wrapper.howto .text-area .group:not(:last-of-type) {
    margin-bottom: 1rem
  }
}

.section-products .-wrapper.benefit .text-area .tag, .section-products .-wrapper.howto .text-area .tag {
  background: rgba(255, 255, 255, 0);
  border: 2px solid #F8F8F8;
  line-height: 1
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .tag, .section-products .-wrapper.howto .text-area .tag {
    padding: .6rem .8rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .tag, .section-products .-wrapper.howto .text-area .tag {
    padding: .6rem .8rem
  }
}

[data-pageid=peeling-lotion] .section-products .-wrapper.benefit .text-area .tag, [data-pageid=peeling-lotion] .section-products .-wrapper.howto .text-area .tag {
  border: 2px solid #F1F5F7
}

[data-pageid=moisture-serum] .section-products .-wrapper.benefit .text-area .tag, [data-pageid=moisture-serum] .section-products .-wrapper.howto .text-area .tag {
  border: 2px solid #F6F4F0
}

[data-pageid=custom-mypad] .section-products .-wrapper.benefit .text-area .tag, [data-pageid=custom-mypad] .section-products .-wrapper.howto .text-area .tag {
  border: 2px solid #F3F5F5
}

[data-pageid=clansing] .section-products .-wrapper.benefit .text-area .tag, [data-pageid=clansing] .section-products .-wrapper.howto .text-area .tag {
  border: 2px solid #F9F7F3
}

.section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
  display: inline-block;
  line-height: 1.5
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
    margin-top: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
    margin-top: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .btn-link, .section-products .-wrapper.howto .text-area .btn-link {
    font-size: 1.5rem
  }
}

.section-products .-wrapper.benefit .text-area .btn-link.btn, .section-products .-wrapper.howto .text-area .btn-link.btn {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  line-height: 1
}

.section-products .-wrapper.benefit .text-area .btn-link .btn, .section-products .-wrapper.howto .text-area .btn-link .btn {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .text-area .btn-link .btn, .section-products .-wrapper.howto .text-area .btn-link .btn {
    margin-left: .3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .text-area .btn-link .btn, .section-products .-wrapper.howto .text-area .btn-link .btn {
    margin-left: .3rem
  }
}

.section-products .-wrapper.benefit .nav-btn-shop, .section-products .-wrapper.howto .nav-btn-shop {
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .nav-btn-shop, .section-products .-wrapper.howto .nav-btn-shop {
    width: 65rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .nav-btn-shop, .section-products .-wrapper.howto .nav-btn-shop {
    width: 31.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .nav-btn-shop, .section-products .-wrapper.howto .nav-btn-shop {
    height: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .nav-btn-shop, .section-products .-wrapper.howto .nav-btn-shop {
    height: 4.5rem
  }
}

.section-products .-wrapper.benefit .nav-btn-shop .text, .section-products .-wrapper.howto .nav-btn-shop .text {
  color: #fff
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .nav-btn-shop .text, .section-products .-wrapper.howto .nav-btn-shop .text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .nav-btn-shop .text, .section-products .-wrapper.howto .nav-btn-shop .text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .nav-btn-shop .text, .section-products .-wrapper.howto .nav-btn-shop .text {
    font-size: 1.5rem
  }
}

.section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
  flex-direction: row;
  background: #ffffff;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    gap: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    gap: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    padding: 3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    padding: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    border-radius: 2rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    border-radius: 2rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray, .section-products .-wrapper.howto .inner-block.bg-gray {
    flex-direction: column
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .pic, .section-products .-wrapper.howto .inner-block.bg-gray .pic {
    width: 28.75rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .pic, .section-products .-wrapper.howto .inner-block.bg-gray .pic {
    width: 30.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text-area, .section-products .-wrapper.howto .inner-block.bg-gray .text-area {
    width: 28.7rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text-area, .section-products .-wrapper.howto .inner-block.bg-gray .text-area {
    width: 30.5rem
  }
}

.section-products .-wrapper.benefit .inner-block.bg-gray .text, .section-products .-wrapper.howto .inner-block.bg-gray .text {
  line-height: 1.8
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text, .section-products .-wrapper.howto .inner-block.bg-gray .text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text, .section-products .-wrapper.howto .inner-block.bg-gray .text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text, .section-products .-wrapper.howto .inner-block.bg-gray .text {
    font-size: 1.2rem
  }
}

@media (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .text, .section-products .-wrapper.howto .inner-block.bg-gray .text {
    line-height: 1.5
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .btn-link, .section-products .-wrapper.howto .inner-block.bg-gray .btn-link {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .btn-link, .section-products .-wrapper.howto .inner-block.bg-gray .btn-link {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.benefit .inner-block.bg-gray .btn-link, .section-products .-wrapper.howto .inner-block.bg-gray .btn-link {
    font-size: 1.2rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.buy .btn-buy-outer:not(:last-of-type) {
    margin-bottom: .3rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.buy .btn-buy-outer:not(:last-of-type) {
    margin-bottom: .3rem
  }
}

.section-products .-wrapper.buy .btn-buy {
  background: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: center
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.buy .btn-buy {
    width: 65rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.buy .btn-buy {
    width: 33.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.buy .btn-buy {
    height: 4.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.buy .btn-buy {
    height: 4.5rem
  }
}

.section-products .-wrapper.buy .btn-buy .text {
  color: #fff;
  padding-left: .2em;
  padding-top: .1em
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.buy .btn-buy .text {
    font-size: 15px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.buy .btn-buy .text {
    font-size: 1.5rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.buy .btn-buy .text {
    font-size: 1.5rem
  }
}

@media all and (min-width: 1120px) {
  .section-products .-wrapper.page-note .text {
    font-size: 10px
  }
}

@media all and (min-width: 1280px) {
  .section-products .-wrapper.page-note .text {
    font-size: 1rem
  }
}

@media all and (max-width: 1119px) {
  .section-products .-wrapper.page-note .text {
    font-size: 1rem
  }
}

[class*=uk-animation-] {
  animation: .5s ease-out both
}

.uk-animation-slide-top-small {
  animation-name: uk-fade, uk-slide-top-small
}

.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: .8s;
  animation-timing-function: linear
}

@keyframes uk-slide-top-small {
  0% {
    transform: translateY(-10px)
  }
  to {
    transform: translateY(0)
  }
}

@keyframes uk-fade {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.uk-sticky[class*=uk-animation-], .uk-sticky.uk-animation-reverse {
  animation-duration: .2s
}

.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in
}

.uk-animation-fast {
  animation-duration: .1s
}

.picture {
	margin-right: 3px;
}

p.note { margin-left: 1em; 
	
	
	text-indent: -1em;
}
p.note:before { content:"※ ";
	text-align: right;
	font-size: 15px;
}
.marker02 {
	font-size: 38px;
	color: #DB7093;
	text-decoration-line: underline;
	text-underline-offset: 4px;//位置
    text-decoration-thickness: 10px; //太さ
    text-align: center;
}
p.logo-img img {
    width: 300px;  /* 横幅を200pxに */
	padding: 0  ;
}
p.sdgs-img img {
    width: 300px;  /* 横幅を200pxに */
}
p.ggap-img img {
    width: 300px;  /* 横幅を200pxに */
	text-align: center;
}
.col3 {
  display: flex;
}

.col3 li {
  width: calc(100% / 2);
}


ul,
li {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

li {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #fff;
}

.comp-info {
	font-size: 15px;
	color:000;
	text-align: left;
}
.col1 img  {
	display: flex;
  width: 300px;
height: auto;
}
.col1 li {
  width: calc(100% / 2);
}

ul,
li {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

li {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #fff;
}
img .col2 {
  width: 100%;
    max-width: 100%;
height: auto;
    
}
.col2 li {
  width: calc(100% / 1);
}

ul,
li {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

li {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #fff;
}
.col4 {
	display: flex;
}
.col4 img  {
  width: 200px;
height: auto;
}
.col4 li {
  width: calc(100% / 3);
}

ul,
li {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

li {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #fff;
}
.col5 {
	display: flex;
}
.col5 img  {
  width: 200px;
height: auto;
}
.col5 li {
  width: calc(100% / 2);
}

ul,
li {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

li {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #fff;
}
.overflow-wrap {
  display: flex;
}

.overflow-wrap div {
  margin: 0 0px;
  
}

.overflow-wrap.normal {
  overflow-wrap: normal;
}

.overflow-wrap.break-word {
  overflow-wrap: break-word;
}

.example7{
    
  
}
.example7 img{
    text-align: center;
    width: 900px;
height: auto;
}

.sample1oya{
  background  : #ffffff;
  padding     : 20px;
	font-size: 30px;
}
.sample1{
  display     : inline-block;
  font-size   : 160%;
  font-weight : bold;
  color       : #ffffff;
  text-shadow:  2px  2px 10px #777 ,
               -2px  2px 10px #777 ,
                2px -2px 10px #777 ,
               -2px -2px 10px #777;
  
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
#wrap{
	width:94%;
	margin:0 3%;
}
#wrap ul{
	overflow: hidden;
}
#wrap ul li{
	height:400px;
	margin-top:20px;
	margin-right:20px;
	float:left;
	background:#fff;
	width: 33.33333%;
	width: calc((100% - 40px) / 3);
	width: -webkit-calc((100% - 40px) / 3);
	width: -moz-calc((100% - 40px) / 3);
}
@media all and (-ms-high-contrast:none){
	#demo-wrap ul.column3 li{
		width: calc((100% - 41px) / 3);
	}
}
#wrap ul li:last-child {
	margin-right:0;
}
/*media query*/
@media screen and (max-width: 480px) {
	#wrap ul li{
		float:none;
		width:100%;
	}
}
