@charset "UTF-8";

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #e3efe5 url("../_images/bg.jpg") no-repeat center top fixed;
  background-size: cover;
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3,
h4,
ul,
button {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.lp-bg {
  position: relative;
  z-index: 1;
  padding: 0;
}

.lp-wrapper {
  min-width: 320px;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.35);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 50px 15px 15px;
  background: #00664c;
}

header p {
  text-align: center;
}

header p img {
  max-width: 300px;
  margin: 0 auto;
}

.nav-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 60;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}

.nav-btn span {
  position: absolute;
  left: 4px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-btn span:nth-child(1) {
  top: 10px;
}

.nav-btn span:nth-child(2) {
  top: 19px;
}

.nav-btn span:nth-child(3) {
  top: 28px;
}

.nav-btn.is-active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.nav-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-btn.is-active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.page-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  width: min(600px, calc(100vw - 32px));
  height: 100vh;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.page-nav__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78%, 466px);
  max-width: calc(100% - 56px);
  height: 100%;
  padding: 110px 42px 40px;
  background: #f2eedf;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.page-nav.is-open .page-nav__inner {
  transform: translateX(0);
}

.page-nav__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
}

.page-nav__close::before,
.page-nav__close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 4px;
  width: 34px;
  height: 3px;
  background: #111;
}

.page-nav__close::before {
  transform: rotate(45deg);
}

.page-nav__close::after {
  transform: rotate(-45deg);
}

.page-nav li+li {
  margin-top: 34px;
}

.page-nav a {
  display: inline-block;
  color: #006f55;
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero {
  padding: 25px 0 0;
  background: #e6d698;
}

.hero h1 img {
  width: 350px;
  margin: 0 auto 25px;
}

.hero>p:last-child img,
.product-visual img,
footer p img {
  width: 100%;
}

.intro {
  padding: 0 20px 24px 24px;
  background: #e6d698;
}

.intro h2,
.intro>p,
.product-detail h4,
.product-detail>p {
}

.intro h2 {
  margin-bottom: 18px;
  margin-top: 40px;
  font-size: 1.9rem;
  line-height: 1.55;
}

.intro>p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
}

.intro .notes {
  margin-top: 0;
}

.shop-info {
  margin-top: 30px;
  padding: 12px 14px;
  border: 1px solid #00664c;
  color: #00664c;
  font-size: 1.0rem !important;
  line-height: 1.8 !important;
}

.product {
  background: #ddd2a3;
}

.product-bar {
  padding: 14px 20px 13px;
  background: #00664c;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
}

.product-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 35px 24px 30px;
  position: relative;
  background-color: #f4ecc6;
}

.product-summary>div {
  flex: 1;
}

.label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 8px 3px;
  border: 1px solid #111;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 700;
}

.product-summary h3 {
  color: #00664c;
  font-size: 1.9rem;
  line-height: 1.45;
  font-weight: 700;
}

.packshot {
  flex: 0 0 auto;
}

.packshot img {
  width: 100%;
}

.product--skin .packshot {
  max-width: 90px;
  position: absolute;
  right: 3.5rem;
  bottom: 1rem;
}

.product--aroma .packshot {
  max-width: 175px;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
}

.product--barrier .packshot {
  max-width: 75px;
  position: absolute;
  right: 5rem;
  bottom: 1rem;
}

.product-detail {
  padding: 50px 24px 30px 24px;
  background: #fbf7e6;
}

.product-detail h4 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.7;
}

.product-detail>p {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.product-detail>p sup {
  font-size: 0.6rem;
}

.detail-note {
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
}

.detail-note+.detail-note {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-grid--six,
.feature-grid--five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid--five li:last-child {
  grid-column: 1;
}

.notes {
  margin-top: 14px;
}

.notes p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid #df6c26;
  background: #f47f51;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.cta img {
  width: 30px;
  height: 30px;
}

.amazon {
  max-width: 150px;
  margin-top: 16px;
}

.amazon a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border: 1px solid #f8bf7d;
  background: #fff;
  position: relative;
}

.amazon img {
  width: 100%;
}

.amazon span {
  color: #b7b7b7;
  font-size: 1.3rem;
  line-height: 1;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

#sideAll {
  position: fixed;
  inset: 0;
  background: url("../_images/bg.jpg") no-repeat center center;
  background-size: cover;
}

#sideL,
#sideR {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc(50% - 300px);
  overflow: hidden;
}

#sideL::before,
#sideR::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#sideL {
  left: 0;
  background: rgba(0, 102, 76, 0.8);
}

#sideL::before {
  background: url("../_images/logo.png") no-repeat center center;
  background-size: contain;
}

#sideR {
  right: 0;
  background: rgba(230, 214, 152, 0.8);
}

#sideR::before {
  background: url("../_images/ttl.png") no-repeat center center;
  background-size: contain;
}

.logos-section {
  background: #fff;
}

.logos-head {
  padding: 26px 20px 28px;
  text-align: center;
}

.logos-head p {
  color: #006f55;
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 700;
}

.logos-body {
  background: #efefef;
}

.logos-main {
  position: relative;
  margin: 0;
  padding: 20px 30px 50px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-color: #00664c;
  background-image: url("../_images/bg_special.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.logos-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 52, 38, 0.8) 0%, rgba(0, 111, 85, 0.30) 60%, rgba(0, 102, 76, 0.0) 100%);
  pointer-events: none;
  z-index: 0;
}

.logos-main>* {
  position: relative;
  z-index: 1;
}

.logos-main h2 {
  color: #fff;
  width: 80%;
  margin: 0 auto 30px auto;
}

.logos-sub {
  margin-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.logos-catch {
  margin-bottom: 32px;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.logos-copy p {
  font-size: 1.1rem;
  line-height: 2.2;
  font-weight: normal;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.logos-cta {
  margin-top: 36px;
}

.btn-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 15px;
  background: #fff;
  color: #00664c;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}

.btn-logos .arrow {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 10px;
  margin-bottom: 6px;
}

.logos-footer {
  background: #006f55;
}

.logos-footer p {
  max-width: 230px;
  margin: 0 auto;
  padding: 18px 0 20px;
}



/* ==========================================================
   scroll reveal
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal--left {
  transform: translate3d(-28px, 0, 0);
}

.reveal--right {
  transform: translate3d(28px, 0, 0);
}

.reveal--scale {
  transform: translate3d(0, 30px, 0) scale(0.96);
}

.reveal.is-visible.reveal--left,
.reveal.is-visible.reveal--right,
.reveal.is-visible.reveal--scale {
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

.hero h1 img,
.intro h2,
.intro>p,
.shop-info,
.product-visual,
.product-bar,
.product-summary,
.product-detail h4,
.product-detail>p,
.detail-note,
.notes,
.cta,
.amazon,
.logos-head,
.logos-main h2,
.logos-sub,
.logos-catch,
.logos-copy,
.logos-cta,
.logos-footer {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media screen and (max-width: 767px) {
  #sideAll,
  #sideL,
  #sideR {
    display: none;
  }

  .lp-bg {
    padding: 0;
  }

  .lp-wrapper {
    box-shadow: none;
  }

  header {
    padding: 10px 12px;
  }

  header p img {
    width: 12rem;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }

  .nav-btn span {
    left: 3px;
    width: 32px;
  }

  .page-nav {
    left: 0;
    width: 100%;
    transform: none;
  }

  .page-nav__inner {
    width: calc(100% - 54px);
    max-width: none;
    padding: 84px 22px 30px;
  }

  .page-nav__close {
    top: 18px;
    right: 14px;
  }

  .page-nav a {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .page-nav li+li {
    margin-top: 22px;
  }

  .hero {
    padding: 14px 0 0;
  }

  .hero h1 img {
    width: 270px;
    margin-bottom: 10px;
  }

  .intro {
    padding: 0 1.0rem 1.6rem 1.0rem;
  }

  .product-detail {
    padding: 3rem 1.0rem 1.6rem 1.0rem;
  }

  .intro h2 {
    margin-top: 2.0rem;
    margin-bottom: 1.0rem;
    font-size: 1.3rem;
  }

  .intro>p,
  .product-detail>p {
    font-size: 0.85rem;
    line-height: 1.85;
    margin-bottom: 0.1rem;
  }

  .product-bar {
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .product-summary {
    gap: 10px;
    padding: 2rem 1rem;
  }

  .product-summary h3 {
    font-size: 1.3rem;
    font-weight: 800;
  }

  .product--skin .packshot {
    width: 4.3rem;
    right: 2rem;
  }

  .product--aroma .packshot {
    width: 7.8rem;
    right: 1.2rem;
  }

  .product--barrier .packshot {
    width: 3.3rem;
    right: 3rem;
    bottom: 0.7rem;
  }

  .product-detail h4 {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .detail-note,
  .notes p {
    font-size: 0.7rem !important;
    line-height: 1.65 !important;
    padding-left: 0.4rem;
    text-indent: -0.4rem;
  }

  .shop-info {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 1.4rem 0 0 0;
  }

  .amazon {
    max-width: initial;
    margin-top: 1rem;
  }

  .amazon a {
    padding: 1rem 1rem;
    width: 30%;
  }

  .cta {
    font-size: 1rem !important;
    padding: 0.3rem 0;
  }

  .cta img {
    width: 18px;
    height: 18px;
  }

  .feature-grid {
    gap: 12px;
    margin-top: 20px;
  }

  .logos-head {
    padding: 22px 16px 24px;
  }

  .logos-head p {
    font-size: 1.25rem;
  }

  .logos-main {
    margin: 0;
    padding: 1.2rem 1rem 2rem;
  }

  .logos-main h2 {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
  }

  .logos-sub {
    font-size: 0.88rem;
  }

  .logos-catch {
    margin-bottom: 28px;
    font-size: 1.8rem;
  }

  .logos-copy p {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .btn-logos {
    font-size: 1rem;
    padding: 1rem;
    font-weight: 700;
  }

  .logos-footer p {
    width: 160px;
    padding: 16px 0;
  }
}

@media screen and (max-width: 600px) {
  .page-nav__inner {
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
    padding: 76px 28px 32px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {

  .amazon a,
  .btn-logos {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .amazon a:hover,
  .btn-logos:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}