@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

/*  =============================================================

　　基本設定

============================================================= */


/*  全体　基本設定
---------------------------------------------*/

html,
body {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family:  "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , "Meiryo" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 1.6rem;
  line-height:1;
  letter-spacing: 0;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #000;
  margin: 0 auto;
}


[data-aos=fade-down]{transform:translateY(-30px)}

.fadeText {
  visibility: hidden;
}

.fontEn {
  font-family: 'Sacramento', cursive, serif;
}

sup {
  vertical-align:super;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width:768px){

  * {
    -webkit-appearance: none;
  }

}


/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displayTB {
  display: none;
}

.displaySP {
  display: none;
}

.display_pc_tb {
  display: block;
}

.disnon {
  display: none;
}

.visnon {
  visibility:hidden;
}

.disnonPC {
  display: none;
}

.disnonTB {
  display: block;
}

.disnonSP {
  display: block;
}

@media screen and (max-width:768px){
  .displayPC {
    display: none;
  }

  .displayTB {
    display: block;
  }

  .displaySP {
    display: none;
  }

  .display_pc_tb {
    display: block;
  }

  .disnonPC {
    display: block;
  }

  .disnonTB {
    display: none;
  }

  .disnonSP {
    display: block;
  }
}

@media screen and (max-width:480px){
  .displayPC {
    display: none;
  }

  .displayTB {
    display: none;
  }

  .displaySP {
    display: block;
  }

  .display_pc_tb {
    display: none;
  }

  .disnonPC {
    display: block;
  }

  .disnonTB {
    display: block;
  }

  .disnonSP {
    display: none;
  }

}

/*  画像 基本設定
-------------------------- */

img {
  width: 100%;
  vertical-align: top;
  border: none;
}

a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity:0.70;
  opacity:0.70;
  cursor: pointer;
}

@media screen and (max-width:768px){
  a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity:1;
  opacity:1;
  cursor: default;
  }
}

/*  テキスト 共通設定
-------------------------- */

em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {

}

@media screen and (max-width:768px){
  a:hover {
  }
}


/* 　コンテナー　設定
---------------------------------------------*/
.mainContents {
  text-align: left;
}

.mainInner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width:768px){
  .mainInner {
    padding: 0 5%;
  }
}
/*  header
---------------------------------------------*/
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}


/*  ドロワーメニュー
---------------------------------------------*/
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 999;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 33px;
}
#drawer-icon span {
  background:  #000;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #000;
  border-radius: 4px;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -25%;
}
#drawer-icon span::after {
  margin-top: 23.5%;
  width: 80%;
  left: 70%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  width: 683px;
  max-width: 100%;
  height: 100%;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(100%);
  overflow-y: scroll;
  -webkit-overflow-scrolling : touch;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

@media screen and (max-width:768px){
  #drawer-icon {
    top: 30px;
    right: 5%;
  }
}

@media screen and (max-width:480px){
  #drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 999;
    top: 24px;
    right: 5%;
    width: 30px;
    height: 33px;
  }
}


/* 　メニュー
---------------------------------------------*/
.box-nav {
  width: 100%;
  padding: 100px 0;
}

.box-nav__inner {
  width: 525px;
  margin: 0 auto;
}

.box-nav__logo {
  display: none;
}

.box-nav .section-menu {
  margin: 40px 0 0;
  text-align: left;
}

.box-nav .menu-title {
  font-family: 'Lato', sans-serif;
  color: #515252;
  font-size: 2.4rem;
}

.box-nav .menu-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.box-nav .menu-list li {
  width: 45%;
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: normal;
}

.box-nav .menu-list li a {
  color: #000;
}

.box-nav .menu-list li .icon {
  display: inline-block;
  width: 14px;
  margin-left: 5px;
}

.box-nav .menu_form {
    width: 100%;
}

.box-nav .menu_form form{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: 0 0 0 6px
}

.box-nav .menu_form input[type="text"]{
  width: 380px;
  border: none;
  padding: 15px 0;
  background-color: transparent;
  color: #000;
}

.box-nav .menu_form input[type="text"]::placeholder {
  color: #b6b8b8;
}

.box-nav .menu_form input[type="submit"]{
  width: 102px;
  border-radius:0;
  border: none;
  background-image: url('/images/cleansing2/common/btn-search_pc.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
}


@media screen and (max-width: 480px) {
  .box-nav {
    width: 100%;
    padding: 80px 0 50px;
  }

  .box-nav__inner {
    width: 80%;
    margin: 0 auto;
  }

  .box-nav .section-menu {
    margin: 0px 0 0;
  }


  .box-nav .menu-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .box-nav .menu-title .word-break {
    display: block;
  }

  .box-nav .menu-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content:flex-start;
    margin-top: 30px;
  }

  .box-nav .menu-list li {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }


  .box-nav .menu-list li .icon {
    display: inline-block;
    width: 14px;
    margin-right: 5px;
  }

  .box-nav .menu_form {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 20px;
  }

  .box-nav .menu_form form{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 0 6px;
  }

  .box-nav .menu_form input[type="text"]{
    width: 80%;
    border: none;
    padding: 10px 0;
    background-color: transparent;
    color: #000;
  }

  .box-nav .menu_form input[type="text"]::placeholder {
    color: #b6b8b8;
  }

  .box-nav .menu_form input[type="submit"]{
    width: 20%;
    border: none;
    background-image: url('/images/cleansing2/common/btn-search_sp.png');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
  }

}

/*  footer
---------------------------------------------*/
.footer {
  width: 100%;
  padding: 115px 0;
  background: #222;
  color: #fff;
}

.footer__sns {
  text-align: center;
}

.footer__snsTitle {
  margin: 0 0 30px;
  font-size: 2.4rem;
}

.footer__snsLink {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  margin: 0 0 60px;
}

.footer__snsLink img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}

.footer__snsLink a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
}

.footer__snsLink span {
  display: block;
  margin-top: 15px;
}

.footer__snsLink li {
  margin: 0 30px;
  text-align: center;
}

.footer__snsLink .fb img {
  width: 42px;
}

.footer__snsLink .line img {
  width: 42px;
}

.footer__snsLink .tw img {
  width: 36px;
  padding-bottom: 5px;
}

.footer__snsLink .ig img {
  width: 44px;
}

.footer__snsLink .yt img {
  width: 36px;
  padding-bottom: 5px;
}

.breadcrumbs {
  margin: 0 0 50px;
}

.breadcrumbs ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.breadcrumbs ul li {
  position: relative;
  padding: 0 15px 0 10px;
  color: #fff;
  font-size: 1.2rem;
}

.breadcrumbs ul li:first-child {
  padding: 0 15px 0 0;
}

.breadcrumbs ul li a {
  color: #fff;
}

.breadcrumbs ul li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: ">";
}

.breadcrumbs ul li:last-child::after {
  display: none;
}

.footer__copyright small {
  font-size: 1.0rem;
}

.footer__nav {
  margin: 0 0 120px;
}

.footer__nav ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
}

.footer__nav ul li {
  position: relative;
  padding: 0 12px 0 5px;
}

.footer__nav ul li a {
  color: #fff;
}

.footer__nav ul li:first-child {
  padding: 0 12px 0 0;
}

.footer__nav ul li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "/";
}

.footer__nav ul:last-child li:last-child::after {
  display: none;
}

.footer__logo {
  width: 175px;
  margin: 0 auto 30px;
}


@media screen and (max-width:768px){

}

@media screen and (max-width:480px){
  .footer {
    width: 100%;
    padding: 70px 5% 50px;
    background: #222;
    color: #fff;
  }

  .footer__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column-reverse;
  }

  .footer__sns {
    text-align: center;
  }

  .footer__snsTitle {
    margin: 0 0 30px;
    font-size: 2.4rem;
  }

  .footer__snsLink {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 0 60px;
  }

  .footer__snsLink img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    line-height: 0;
  }

  .footer__snsLink a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
  }

  .footer__snsLink span {
    display: block;
    margin-top: 15px;
  }

  .footer__snsLink li {
    margin: 0 20px 30px;
    text-align: center;
  }

  .footer__snsLink .fb img {
    width: 42px;
  }

  .footer__snsLink .line img {
    width: 42px;
  }

  .footer__snsLink .tw img {
    width: 36px;
    padding-bottom: 5px;
  }

  .footer__snsLink .ig img {
    width: 44px;
  }

  .footer__snsLink .yt img {
    width: 36px;
    padding-bottom: 5px;
  }

  .breadcrumbs {
    margin: 0 0 50px;
  }

  .breadcrumbs ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .breadcrumbs ul li {
    position: relative;
    margin: 0 0 10px;
    padding: 0 15px 0 10px;
    color: #fff;
    font-size: 1.2rem;
  }

  .breadcrumbs ul li:first-child {
    padding: 0 15px 0 10px;
  }

  .breadcrumbs ul li a {
    color: #fff;
  }

  .breadcrumbs ul li::after {
    position: absolute;
    top: 0;
    right: 0;
    content: ">";
  }

  .breadcrumbs ul li:last-child::after {
    display: none;
  }

  .footer__copyright small {
    font-size: 1.0rem;
  }

  .footer__nav {
    margin: 0 0 50px;
  }

  .footer__nav ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.2rem;
  }

  .footer__nav ul li {
    position: relative;
    margin: 0 0 10px;
    padding: 0 12px 0 5px;
  }

  .footer__nav ul li a {
    color: #fff;
  }

  .footer__nav ul li:first-child {
    padding: 0 12px 0 5px;
  }

  .footer__nav ul li::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "/";
  }

  .footer__nav ul:last-child li:last-child::after {
    display: none;
  }

  .footer__logo {
    display: none;
  }
}


/*--------------------
全成分表
--------------------*/
#overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9900;
  opacity: 0.6;
  background-color: rgb(136, 136, 136);
  display: none;
}
#component {
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  display: none;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  height: 80%;
  z-index: 9999;
}
#component .cinner {
  padding: 5%;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
#component .m_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(/images/cleansing2/common/close.png)no-repeat 0 0;
  cursor: pointer;
}
#component .title {
  font-size: 18px;
  font-weight: normal;
  color: #666666;
  text-align: center;
}
#component .component_inner {
  margin: 50px 0;
  padding: 50px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}
#component .component_inner p {
  line-height: 1.6;
  color: #666666;
  padding-bottom: 20px;
  font-size: 14px;
}
#component .component_inner p span {
  font-size: 12px;
}
#component .component_inner p:last-child {
  padding-bottom: 0;
}
#component .m_close_button {
  display: block;
  width: 260px;
  line-height: 50px;
  background: #8e8e8e;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
}

#component .sp_show {
  display: none;
}

@media screen and (max-width: 768px) {
  #component {
    position: fixed;
    top: 5%;
    left: 0%;
    right: 0;
    display: none;
    width: 90%;
    max-width: 980px;
    background: #fff;
    text-align: center;
    height: 80%;
    z-index: 9999;
  }

}

@media screen and (max-width: 480px) {

  #component .m_close {
    display: none;
  }

  #component .sp_show {
    display: block;
    margin-bottom: 50px;
  }
}
