@charset "utf-8";
/* PUREのCSS */
body {
  background-color: #aadbf6;
  font-size: 14px;
  font-family: "Yu Gothic medium", sans-serif;
  color: #242424;
  line-height: 1;
}
img {
  max-width: 100%;
}
.center_area {
  width: 100%;
}
.campaign_btn {
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 10;
  width: 25%;
}
.first_view {
  background-image: url("../img/first_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.pc_toptext img {
  display: none;
}
.sp_toptext {
  width: 75%;
  padding-top: 20vh;
  padding-left: 10vw;
}
.first_view a {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
}
/* ぼかしから出現 */
.blurTrigger {
  opacity: 0;
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
header {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
header img {
  display: block;
  width: 25%;
  max-width: 125px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.pc_logo {
  display: none;
}
.toggle-menu-button {
  position: fixed;
  top: 0;
  right: 5px;
  width: 50px;
  height: 50px;
  z-index: 10;
}
/*========= ナビゲーションのためのCSS ===============*/
/*

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  height: 100vh;
}
/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(84, 118, 188, 0.9);
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
  background: rgba(84, 118, 188, 0.9);
}
/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}
#g-nav li a {
  font-family: "Bodoni Moda", serif;
  color: #fff;
  text-decoration: none;
  /*margin-top: 30px;*/
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: bold;
}
#g-nav li:nth-child(2), #g-nav li:nth-child(3), #g-nav li:nth-child(4), #g-nav li:nth-child(5), #g-nav li:last-child {
  margin-top: 20px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height: 50px;
  cursor: pointer;
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #fff;
}
.openbtn1 span:nth-of-type(1) {
  top: 18px;
  width: 60%;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.5);
}
.openbtn1 span:nth-of-type(2) {
  top: 25px;
  width: 60%;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.5);
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn1.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}
/*=======================fadeUp====================================*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeLeftTrigger, .flipRightTrigger, .fadeInTrigger, .fadeUpTrigger {
  opacity: 0;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===================導入部CSS=================*/
.introduction .title {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  margin-top: 25px;
}
.introduction .text01, .introduction .text02 {
  line-height: 2;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.introduction .text01 {
  margin-top: 35px;
}
.introduction img {
  max-width: 30%;
  float: left;
  margin-bottom: 50px;
}
/*==================ポイントCSS=====================*/
#point {
  background: linear-gradient(transparent, #fff, #fff, #fff);
  position: relative;
  z-index: -5;
  margin-top: 100px;
  width: 100%;
}
.point_title {
  clear: both;
  display: flex;
  max-width: 430px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#point .point {
  flex-basis: 10%;
  transform: rotate(-90deg);
  position: sticky;
  display: inline-block;
  top: 50px;
  left: 20px;
  height: 100px;
  width: 50px;
}
#point h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 50px;
  font-weight: 400;
  color: #afafaf;
}
#point .container {
  flex-basis: 90%;
  padding-bottom: 80px;
}
#point h3 {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 18px;
}
#point li {
  max-width: 335px;
  position: relative;
}
#point li:nth-child(2), #point li:nth-child(3), #point li:nth-child(4) {
  padding-top: 150px;
}
#point .title, #point .title02 {
  display: flex;
  align-items: center;
}
#point .title02 {
  flex-direction: row-reverse;
}
#point p {
  max-width: 300px;
  margin-top: 15px;
  line-height: 1.5;
  line-break: strict;
}
#point .odd {
  position: absolute;
  right: 47px;
}
#point img {
  width: 80px;
  position: absolute;
  right: 20px;
}
/*========= 流体シェイプを動かす===============*/
.fluid, .fluid_02 {
  width: 80px; /*横幅*/
  height: 80px; /*縦幅*/
  background: #f0e269; /*背景色*/
  animation: fluidrotate 10s ease 0s infinite; /*アニメーションの設定*/
  position: absolute;
  z-index: -1;
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/*========= 流体シェイプを動かす ここまで===============*/
#point::after {
  content: "";
  display: block;
  background-image: url("../img/wave01.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50px;
}
/*======================成分のCSS====================*/
.box {
  opacity: 0;
}
.fadeIn02 {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#component h2 {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 24px;
  color: #527dbf;
  text-align: center;
  padding-top: 40px;
}
#component .icon ul {
  max-width: 430px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}
#component .icon li:nth-child(odd) {
  font-size: 18px;
  font-weight: bold;
  line-height: 75px;
  text-align: center;
  width: 75px;
  height: 75px;
  background-image: url("../img/circle.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#component .icon li:nth-child(even) {
  font-size: 24px;
  color: #fff;
}
#component h3 {
  margin: 50px 0 20px;
  text-align: center;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 18px;
  color: #527dbf;
}
#component p {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
#component .small_text {
  font-size: 11px;
  margin-top: 20px;
}
/*======================おすすめのCSS=====================*/
.recommended {
  padding-top: 80px;
}
.recommended h3 {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
.recommended .search {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.recommended .search img {
  width: 245px;
  margin-top: 35px;
}
.recommended::after {
  content: "";
  display: block;
  background-image: url("../img/wave02.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50px;
}
/*=====================使用方法のCSS=====================*/
#use {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
#use h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
#use h3 {
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
}
#use .use {
  margin-top: 50px;
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
}
#use .use .ex {
  flex-basis: 50%;
  margin-right: 10px;
}
#use p {
  font-size: 12px;
}
#use .lady01, #use .lady02 {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
#use .lady01 {
  width: 50%;
}
#use .lady02 {
  width: 40%;
}
/*========================ここからインタビュー=====================*/
.interview {
  padding-top: 40px;
  padding-bottom: 280px;
  position: relative;
}
.interview p, .interview h2 {
  font-family: "Klee One", cursive;
  text-align: center;
}
.interview .title {
  font-size: 12px;
}
.interview h2 {
  margin-top: 5px;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
}
.interview_box {
  width: 90%;
  max-width: 440px;
  margin: 35px auto 0;
  position: relative;
}
.interview img {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: 50%;
  margin-top: 10px;
}
.interview .name {
  position: absolute;
  top: 30px;
  right: 10%;
  width: 50%;
  background: #527dbf;
  color: #fff;
  padding: 10px 10px 10px 30px;
}
.interview .name .writer {
  font-size: 10px;
}
.interview .text {
  max-width: 245px;
  font-size: 12px;
  line-height: 1.5;
  text-align: inherit;
  padding: 15px;
  background: #fff;
  position: absolute;
  top: 110px;
  right: 0;
  z-index: 2;
}
/*================商品紹介CSS================*/
#product {
  padding: 40px 25px;
  background-color: #fff;
}
#product .pure {
  max-width: 430px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
#product img {
  flex-basis: 40%;
  width: 30%;
  max-width: 185px;
  margin-right: 25px;
}
.product_detil {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.btn_area {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 40px;
  background: #f0e269;
  border-radius: 24px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.btn_area a {
  display: block;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
.btn_area a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/cart.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  vertical-align: middle;
  margin-right: 10px;
}
/*=============================ボタンのホバー=====================================*/
/*キラッと光る*/
.btnshine::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -30%;
  /*キラッと光る形状*/
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}
/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.3s;
}
@keyframes shine {
  100% {
    left: 80%;
  }
}
/*=============================ボタンのホバーここまで=====================================*/
.product_detil p {
  flex-basis: 10%;
}
.product_detil .price {
  flex-basis: 20%;
  display: flex;
}
#product .product_name {
  flex-basis: 50%;
  margin-top: 50px;
}
#product .product_name dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#product dd {
  font-size: 10px;
}
.product_detil .price dd {
  line-height: 14px;
}
/*====================キャンペーンのCSS===============*/
#campaign {
  margin: 0 auto;
  padding: 50px 20px;
  background: #fff;
}
.contents_box {
  max-width: 400px;
  background-image: url("../img/campaign_bg.png");
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: top 35% center;
  margin-left: auto;
  margin-right: auto;
}
#campaign .limited {
  width: 30%;
}
#campaign .present {
  transform-origin: center bottom;
  animation: yurayura 1.8s linear infinite;
}
@keyframes yurayura {
  0%, 100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
}
#campaign p {
  display: block;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
#campaign .campaign_text {
  margin-top: 20px;
}
#campaign .text_bold {
  font-size: 18px;
  font-weight: bold;
}
#campaign .campaign_img {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
#campaign .plus {
  display: block;
  width: 120px;
}
#campaign .bottle {
  display: block;
  width: 30px;
}
#campaign .btn_area {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  max-width: 240px;
}
footer {
  padding: 60px 0 15px 0;
}
footer .logo {
  display: block;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}
footer .sns {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
footer .sns img {
  display: block;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}
footer a {
  transition-duration: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .sns a {
  transition-duration: 0.3s;
}
footer .sns a:hover {
  filter: brightness(0.5);
}
footer .text {
  color: #e74d4d;
  margin-top: 35px;
  text-align: center;
}
.copyright {
  font-size: 10px;
  text-align: center;
  margin-top: 20px;
}
/*==============================ここからPC============================*/
@media (min-width: 960px) {
  body {
    font-size: 16px;
    background-color: transparent;
  }
  .center_area {
    width: 30%;
    min-width: 375px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100vh;
  }
  .first_view {
    height: 100vh;
    background-image: none;
    background-color: transparent;
  }
  .first_view img {
    width: 10%;
  }
  .campaign_btn {
    width: 10%;
    bottom: 15px;
  }
  .campaign_btn a img {
    transition-duration: 0.5s;
  }
  .campaign_btn a img:hover {
    transform: scale(1.1);
  }
  .first_view a {
    position: absolute;
    bottom: 10px;
    right: 30px;
    font-size: 12px;
  }
  .pc_bg {
    height: 100vh;
    width: 100vw;
    background-image: url("../img/pc_first_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    z-index: -10;
  }
  header img {
    display: block;
    width: 30%;
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 5vh;
    margin-left: 3vw;
  }
  .pc_logo {
    display: block;
  }
  .sp_logo, .sp_toptext {
    display: none;
  }
  .pc_toptext {
    margin-top: 30vh;
    margin-left: 3vw;
  }
  .pc_toptext img {
    display: block;
    width: 25%;
  }
  /*===============PCの導入CSS======================*/
  .introduction::before {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, transparent, transparent, #aadbf6);
  }
  .introduction {
    background: linear-gradient(transparent, #aadbf6, #aadbf6, #aadbf6, #aadbf6, #aadbf6, #aadbf6);
    margin-top: 200px;
    padding-bottom: 50px;
  }
  .introduction .title {
    margin-top: 0;
  }
  #point {
    background: linear-gradient(#aadbf6, #fff, #fff, #fff);
    margin-top: 0;
    padding-top: 50px;
  }
  #component, .recommended, .interview {
    background: #aadbf6;
  }
  footer {
    width: 30%;
    min-width: 375px;
    margin-left: auto;
    margin-right: auto;
    background-color: #aadbf6;
  }
}