@charset "UTF-8";
/*  共通 -------------------- */
:root {
  --color-white: #fff;
  --color-navy: #0e4f67;
  --color-green: #1db8bc;
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: var(--color-navy);
  letter-spacing: ;
  line-height: ;
}
.notoSansJP {
  font-family: "Noto Sans JP", sans-serif;
}
h1 {
  color: var(--color-white);
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 0.18em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 66%;
  transform: translateY(-50%) rotate(90deg);
}
h2 {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.26em;
}
h3 {
  font-size: 34px;
  letter-spacing: 0.05em;
}
.br {
  display: block;
}
.fs-15px {
  font-size: 15px;
}
.fs-25px {
  font-size: 25px;
}
.fs-40px {
  font-size: 40px;
}
.fs-56px {
  font-size: 56px;
}
.fs-100px {
  font-size: 100px;
}
/*  component -------------------- */
/* ボタン */
.btn {
  color: var(--color-white);
  font-size: 24px;
  letter-spacing: 0.16em;
  display: inline-block;
  width: 250px;
  height: 60px;
  line-height: 60px;
  text-align: left;
  background-image: linear-gradient(to right, #beb236, #dbd166);
  border: 1px solid #978d2c;
  padding-left: 30px;
  position: relative;
  transition-duration: 0.3s;
}
/* ボタンホバーアニメーション */
.btn:hover {
  transform: scale(1.05);
}
/* ボタン矢印 */
.btn::after {
  content: "";
  display: block;
  background-color: var(--color-white);
  height: 15px;
  width: 20px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left: 200px;
  transform: translateY(-50%) rotate(90deg);
}

/*  header -------------------- */
body {
  width: 1440px;
  margin: 0 auto;
}
header {
  background: url(../img/header_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 900px;
  padding: 40px 120px 0;
  position: relative;
}
header img {
  position: absolute;
  top: 325px;
  left: 80px;
}
.logo {
  color: var(--color-white);
  font-size: 30px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 20px rgba(0, 38, 255, 0.35);
  margin-bottom: 37px;
}
.header-h2 {
  color: var(--color-white);
  font-size: 75px;
  letter-spacing: 0.29em;
  text-shadow: 0 0 20px rgba(0, 38, 255, 0.35);
}
.sentence01 {
  margin-bottom: 8px;
}
.sentence02 {
  margin-left: 192px;
}
header img {
  width: 395px;
}
.square-container-green,
.square-container-white {
  width: 385px;
  height: 105px;
  display: flex;
  justify-content: space-between;
}
.square-container-green {
  color: var(--color-white);
  margin-top: 90px;
  margin-left: 300px;
}
.square-container-white {
  color: #25a1cf;
  margin-left: 406px;
}
.square {
  width: 170px;
  position: relative;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.5;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.square::before {
  content: "";
  display: inline-block;
  border: 2px solid red;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}
.square-container-green .square::before {
  background-color: var(--color-green);
  border-image: linear-gradient(135deg, #fff5a9, #b2a436) 1;
}
.square-container-white .square::before {
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  border-image: linear-gradient(135deg, #fff 0%, #25a1cf 84%, #1b7a9d 100%) 1;
}
.lavender {
  position: relative;
}
.lavender::after {
  content: "";
  display: inline-block;
  background: url(../img/lavender.png) no-repeat center/cover;
  width: 145px;
  height: 64px;
  position: absolute;
  top: 58px;
  left: 35px;
  transform: rotate(-14deg);
}
.copy {
  color: var(--color-white);
  font-size: 30px;
  letter-spacing: 0.2em;
  margin-top: 170px;
  text-align: center;
}
.copy::before {
  content: "";
  display: inline-block;
  background: url(../img/tsubokusa.png) no-repeat center/cover;
  width: 257px;
  height: 217px;
  position: absolute;
  top: 710px;
  left: 80px;
  animation-name: movingTsubokusa;
  animation-duration: 2.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes movingTsubokusa {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(24deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
/*  product01 -------------------- */
.product01 {
  background: url(../img/product_bg.jpg) no-repeat center/cover;
  width: 100%;
  padding: 115px 120px 115px;
}
.product-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-text {
  flex-basis: 55%;
  height: 460px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  text-align: center;
}
.product-container img {
  width: 500px;
  transform: scaleX(-1);
}
.product-h2 {
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.product-name {
  font-size: 24px;
  margin-left: 8px;
}
.product-capacity {
  font-size: 16px;
  margin-left: 8px;
  margin-right: 8px;
}
.normal-price {
  margin-top: 32px;
}
.price-wrapper {
  width: 450px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 40px;
}
.price-container {
  color: var(--color-white);
  background-color: var(--color-green);
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  width: 165px;
  height: 85px;
  display: flex;
  align-items: center;
}
.discount {
  color: var(--color-white);
  font-size: 66px;
  margin-left: 10px;
  margin-right: 6px;
}
.percent-off {
  display: flex;
  flex-direction: column;
}
.percent {
  font-size: 42px;
}
.off {
  font-size: 19px;
  letter-spacing: 0.12em;
}
.price {
  font-size: 58px;
  letter-spacing: 0.05em;
}
.yen {
  font-size: 20px;
}
.free,
.oneTime {
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-navy);
  display: inline-block;
  padding: 5px 8px;
  margin-top: 5px;
}
.oneTime {
  margin-left: 25px;
}

/*  ingredient -------------------- */
.ingredient {
}
.worries {
  font-size: 42px;
  letter-spacing: 0.15em;
  text-align: center;
  background: url(../img/hand.jpg);
  height: 450px;
  padding-top: 70px;
}
.worries p:not(:first-child) {
  margin-bottom: 8px;
}
.worries-4 {
  font-size: 122px;
  font-style: italic;
  margin-right: 10px;
  background: linear-gradient(135deg, #0e4f67, #1cb0cd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.16));
}
.worries-ingredients {
  color: var(--color-white);
  font-weight: 600;
  background-image: linear-gradient(to right, #0e4f67, #1cb0cd);
  padding: 5px 8px;
  display: inline-block;
  margin-right: 10px;
}
.worries-sensitive {
  font-size: 58px;
  background: linear-gradient(to right, #0e4f67, #1cb0cd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.items {
  padding-top: 60px;
  background: url(../img/ingredient_bg.jpg) no-repeat left/cover;
}

.ingredient-grid-container {
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: 1200px;
  margin: 230px auto 0;
  display: grid;
  grid-template-columns: 27.5% 45% 27.5%;
  grid-template-rows: 210px 210px 210px 210px;
  counter-reset: number 0;
}
.counter {
  position: relative;
  z-index: 1;
}
.counter::before {
  font-size: 90px;
  font-style: italic;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  background: linear-gradient(135deg, #0e4f67, #1cb0cd);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.18));
  position: absolute;
  top: -210px;
  text-align: right;
  padding-right: 15px;
}
.right.counter::before {
  right: 0;
}
.items ol li h3 {
  margin-bottom: 8px;
}
.item01 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.item02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.item03 {
  grid-column: 3/4;
  grid-row: 3/4;
}
.item04 {
  grid-column: 1/2;
  grid-row: 4/5;
}
.item05 {
  grid-column: 2/3;
  grid-row: 1/5;
  text-align: center;
  align-self: center;
}
.item05 img {
  width: 372px;
  margin-bottom: 30px;
}
.item01.counter::after {
  content: "";
  display: inline-block;
  background: url(../img/jojoba.png) no-repeat center/cover;
  width: 370px;
  height: 298px;
  position: absolute;
  top: -240px;
  left: -70px;
  z-index: -1;
}
.item02.counter::after {
  content: "";
  display: inline-block;
  background: url(../img/lavender.png) no-repeat center/cover;
  width: 475px;
  height: 210px;
  position: absolute;
  top: -170px;
  left: -70px;
  z-index: -1;
}
.item03.counter::after {
  content: "";
  display: inline-block;
  background: url(../img/tsubokusa.png) no-repeat center/cover;
  width: 358px;
  height: 302px;
  position: absolute;
  top: -230px;
  left: -50px;
  z-index: -1;
}
.item04.counter::after {
  content: "";
  display: inline-block;
  background: url(../img/komenuka.png) no-repeat center/cover;
  width: 425px;
  height: 278px;
  position: absolute;
  top: -220px;
  left: -20px;
  z-index: -1;
}
/*  user voice-------------------- */
.user-voice {
  background: url(../img/voice_bg.jpg) no-repeat center/cover;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}
.user-voice::before,
.user-voice::after {
  content: "";
  display: block;
  width: 622px;
  height: 305px;
  position: absolute;
  z-index: -1;
}
.user-voice::before {
  background: url(../img/voice_woman01.png) no-repeat center/cover;
  top: 150px;
  right: 0;
}
.user-voice::after {
  background: url(../img/voice_woman02.png) no-repeat center/cover;
  margin-top: 120px;
  top: 350px;
  left: 0;
}
.user-voice h2 {
  margin-left: 120px;
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
.user-voice h2::before {
  content: attr(data-user-voice);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 98px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: linear-gradient(to bottom, #c9efe0, #aaeef4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
}
.voice01,
.voice02,
.voice03 {
  position: relative;
  margin-bottom: 80px;
  padding-left: 45px;
}
.voice01 {
  margin-left: 340px;
}
.voice02 {
  margin-left: 440px;
}
.voice03 {
  margin-left: 540px;
  margin-bottom: 80px;
}
.age-position {
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: var(--color-white);
  width: 100px;
  height: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(135deg, #68bad0, #80e1e0);
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.16));
  position: absolute;
  top: -45px;
  left: 0;
  z-index: 1;
}
.voice-text {
  letter-spacing: 0.08em;
  line-height: 1.5;
  width: 650px;
  background-color: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.18));
  padding: 16px 18px 16px 72px;
  z-index: -1;
}
.voice-btn-container {
  margin-left: 1020px;
}
/*  development story-------------------- */
.development-story {
  background: url(../img/development_bg.jpg) no-repeat right/cover;
  padding-top: 140px;
  position: relative;
}
.development-story h2 {
  text-align: center;
  margin-bottom: 93px;
  position: relative;
  z-index: 1;
}
.development-story h2::before {
  content: attr(data-story);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 98px;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: linear-gradient(to bottom, #dce7e9, #b2e2eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.development-story img {
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.18));
  width: 800px;
  margin-bottom: 80px;
}
.development-story .story-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background: url(../img/beaker.jpg) no-repeat center/cover;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.18));
  width: 800px;
  padding: 50px 120px 50px 50px;
  position: absolute;
  top: 430px;
  right: 0;
}

.story-text h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 45px;
}
.story-text p:not(:last-child) {
  margin-bottom: 16px;
}
.development-btn-conteiner {
  padding-left: 190px;
  padding-bottom: 180px;
}
/*  faq -------------------- */
.faq {
  background: url(../img/faq_bg.jpg) no-repeat center/cover;
  padding-top: 140px;
  padding-bottom: 30px;
}
.faq h2 {
  text-align: center;
  position: relative;
  z-index: 1;
}
.faq h2::after {
  content: attr(data-faq);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 98px;
  font-weight: 400;
  letter-spacing: 0.15em;
  background: linear-gradient(to bottom, #c2f0fe, #a2c6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.faq-container {
  width: 750px;
  margin: 93px auto;
}
.faq-item {
  margin-bottom: 65px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.16));
}
.faq-q,
.faq-a {
  display: flex;
  align-items: center;
  padding: 25px 35px;
}
.faq-q {
  background-image: linear-gradient(
    45deg,
    rgba(0, 132, 169, 0.55),
    rgba(45, 205, 199, 0.55)
  );
  border-radius: 0 20px 0 0;
}
.faq-a {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 20px 20px;
}
.faq-q .faq-text {
  color: var(--color-white);
}
.faq-icon {
  font-size: 26px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  flex-basis: 7.4%;
}
.icon-q {
  color: #0084a9;
  background-color: var(--color-white);
}
.icon-a {
  color: var(--color-white);
  background-image: linear-gradient(
    135deg,
    rgba(0, 132, 169, 0.7),
    rgba(45, 205, 199, 0.7)
  );
}
.faq-text {
  letter-spacing: 0.15em;
  line-height: 1.8;
  flex-basis: 92.6%;
  padding-left: 24px;
}

/*  product02 -------------------- */
.product02 {
  background: url(../img/product_bg.jpg) no-repeat center/cover;
  width: 100%;
  padding: 115px 120px 115px;
  transform: scaleX(-1);
}
.product02 .product-container {
  flex-direction: row-reverse;
  transform: scaleX(-1);
}
.product02 .product-container img {
  transform: scaleX(1);
}

/*  footer -------------------- */
footer {
  color: var(--color-white);
  background: url(../img/footer_bg.jpg) no-repeat center/cover;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 55px;
}
.companyName {
  font-size: 30px;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}
footer small {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2em;
}
