@charset "UTF-8";
/* CSS Document */
/*---------------------------------
  基本
---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
#globalContainer {
  position: relative;
}
:root {
  --enfont: 400 1.6rem 'Yeseva One';
  --minfont: 400 1.6rem 'Noto Serif JP';
}
/*---------------------------------

  header

---------------------------------*/
@media screen and (min-width: 481px) {
  header {
    background: rgba(255, 255, 255, 0.6);
    position: relative;
  }
  header::after {
    content: '';
    background: url("../images/header_bg.jpg") no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  header .wrap {
    margin: auto;
    max-width: 1024px;
    padding: 4rem 0;
    position: relative;
    transition: .3s;
    width: 100%;
  }
  header .wrap #logo {
    margin: auto;
    width: 300px;
  }
  header .wrap #logo a {
    display: block;
  }
  header .wrap #logo img {
    width: 100%;
    vertical-align: bottom;
  }
  header .wrap .hp_link {
    position: absolute;
    right: 0;
    bottom: 3rem;
  }
  header .wrap .hp_link a {
    background: url("../images/arr_next.svg") no-repeat left center/.8rem;
    color: #333;
    display: inline-block;
    padding-left: 2rem;
  }
  /*
  ナビゲーション
  ---------------------------------*/
  header #gnav .sp_logo, header #gnav .sp_link {
    display: none;
  }
  header #gnav {
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  header #gnav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: auto;
    max-width: 1024px;
  }
  header #gnav ul li {
    flex-basis: calc(100%/6);
    text-align: center;
    position: relative;
  }
  header #gnav ul li::before {
    background: #ccc;
    content: '';
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 25px;
    width: 1px;
  }
  header #gnav ul li:last-child::after {
    background: #ccc;
    content: '';
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 25px;
    width: 1px;
  }
  header #gnav ul li a {
    display: block;
    color: #F86841;
    font-weight: 500;
    padding: 1.5rem 2rem;
  }
  header #gnav ul li a span {
    display: inline-block;
    padding-left: 4rem;
    position: relative;
  }
  header #gnav ul li a span::before {
    background-size: contain;
    background-position: center;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
  }
  header #gnav ul li:nth-of-type(1) a span::before {
    background: url("../images/cat_skincara.svg");
  }
  header #gnav ul li:nth-of-type(2) a span::before {
    background: url("../images/cat_mudage.svg");
  }
  header #gnav ul li:nth-of-type(3) a span::before {
    background: url("../images/cat_taiken.svg");
  }
  header #gnav ul li:nth-of-type(4) a span::before {
    background: url("../images/cat_labo.svg");
  }
  header #gnav ul li:nth-of-type(5) a span::before {
    background: url("../images/cat_culture.svg");
  }
  header #gnav ul li:nth-of-type(6) a span::before {
    background: url("../images/cat_herb.svg");
  }
  /*========= 上部固定させるためのCSS ===============*/
  #gnav.fixed {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}
@media screen and (max-width: 896px) and (min-width: 481px) {
  header .wrap {
    padding: 2rem 0;
  }
  header .wrap #logo {
    width: 200px;
  }
  header .wrap .hp_link {
    right: 1rem;
    bottom: 3rem;
  }
  header #gnav ul li a {
    padding: 1rem 1rem;
  }
  header #gnav ul li a span {
    padding-left: 0;
    padding-top: 3.5rem;
  }
  header #gnav ul li a span::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
  }
}
/*  
  1024px〜トグルメニュー（ipad proサイズから）
---------------------------------*/
@media screen and (max-width: 480px) {
  header {
    background: rgba(255, 255, 255, 0.6);
    position: relative;
  }
  header::after {
    content: '';
    background: url("../images/header_bg.jpg") no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  header .wrap {
    padding: 3rem 2.5%;
    width: 100%;
  }
  header .wrap #logo {
    margin: auto;
    position: relative;
    top: 6px;
    width: 20rem;
  }
  header .wrap .hp_link {
    display: none;
  }
  header #gnav {
    width: 100%;
    display: block;
    z-index: 100;
    position: relative;
  }
  .navToggle {
    background: #fff;
    color: #333;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 10px;
    line-height: 1;
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2.2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #333;
  }
  .navToggle span:nth-of-type(1) {
    top: 7px;
  }
  .navToggle span:nth-of-type(2) {
    top: 17px;
  }
  .navToggle span:nth-of-type(3) {
    top: 27px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 17px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 17px;
    right: 0;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    transform: translateY(0%);
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    background: #fff;
    color: #333;
    text-align: left;
    transform: translateX(100%);
    transition: all 0.6s;
    max-width: 30rem;
    width: 90%;
    height: 100vh;
    overflow-y: scroll;
  }
  header .overlay {
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  header .overlay.active {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  /* :::::: drawer menu :::::: */
  header #gnav .gnav .pc_none {
    display: block;
  }
  header #gnav .sp_logo {
    margin: 8rem auto 1rem;
    max-width: 15rem;
  }
  header #gnav .sp_logo a {
    display: block;
  }
  header #gnav .sp_logo img {
    width: 100%;
    vertical-align: bottom;
  }
  header #gnav .gnav ul {
    list-style-type: none;
    margin: 2rem 0;
    padding: 0;
  }
  header #gnav .gnav ul li {
    text-align: center;
    width: 100%;
  }
  header #gnav .gnav ul li a {
    color: #F86841;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2rem 2.5rem;
    position: relative;
  }
  header #gnav .gnav ul li a:hover {
    opacity: 1;
  }
  header #gnav .gnav .sp_link {
    background: #E0EED4;
    padding: 2rem;
    text-align: center;
  }
  header #gnav .gnav .sp_link a {
    display: block;
    color: #F86841;
    padding: 1rem 0;
  }
  header #gnav ul li a span {
    display: block;
    padding-left: 4rem;
    position: relative;
  }
  header #gnav ul li a span::before {
    background-size: contain;
    background-position: center;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 1rem;
    bottom: 0;
    width: 3rem;
    height: 3rem;
  }
  header #gnav ul li:nth-of-type(1) a span::before {
    background: url("../images/cat_skincara.svg");
  }
  header #gnav ul li:nth-of-type(2) a span::before {
    background: url("../images/cat_mudage.svg");
  }
  header #gnav ul li:nth-of-type(3) a span::before {
    background: url("../images/cat_taiken.svg");
  }
  header #gnav ul li:nth-of-type(4) a span::before {
    background: url("../images/cat_labo.svg");
  }
  header #gnav ul li:nth-of-type(5) a span::before {
    background: url("../images/cat_culture.svg");
  }
  header #gnav ul li:nth-of-type(6) a span::before {
    background: url("../images/cat_herb.svg");
  }
}
@media screen and (max-width: 480px) {}
/* メニューが開いたらscrollしない */
body.no-scroll {
  overflow: hidden;
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #295B4B;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
/*---------------------------------
	コピーライト
---------------------------------*/
footer .copylight small {
  font-size: 12px;
  letter-spacing: 1px;
}
/*---------------------------------
	pagetop
---------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#page-top a {
  background: #333;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #aaa;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------
  ページ共通
---------------------------------*/
figure img {
  width: 100%;
  vertical-align: bottom;
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadcrumb {
  border-top: 1px solid #f2f2f2;
}
#breadcrumb ul {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 10px 0;
  list-style: none;
}
#breadcrumb ul li {
  display: inline-block;
  font-size: 13px;
  font-size: 0.813em;
}
#breadcrumb ul li a {
  color: #006d4b;
}
#breadcrumb ul li::after {
  content: '';
  width: 5px;
  height: 10px;
  margin: 0 10px;
  background: url("https://s-herb.com/images/a_arr.png") no-repeat;
  background-size: contain;
  display: inline-block;
}
#breadcrumb ul li:last-child::after {
  content: none;
}
/*---------------------------------
  カテゴリー共通
---------------------------------*/
.cat {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  position: relative;
}
.cat::before {
  background-size: contain;
  background-position: center;
  content: '';
  margin: 0 .5rem 0 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.cat.skincare {
  color: #9BC5C8;
}
.cat.skincare::before {
  background: url("../images/cat_skincara.svg");
}
.cat.haircare {
  color: #E7A267;
}
.cat.haircare::before {
  background: url("../images/cat_mudage.svg");
}
.cat.story {
  color: #C7B299;
}
.cat.story::before {
  background: url("../images/cat_taiken.svg");
}
.cat.labo {
  color: #A1BAD4;
}
.cat.labo::before {
  background: url("../images/cat_labo.svg");
}
.cat.culture {
  color: #E09F9A;
}
.cat.culture::before {
  background: url("../images/cat_culture.svg");
}
.cat.herb {
  color: #99AE6E;
}
.cat.herb::before {
  background: url("../images/cat_herb.svg");
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .cat {
    font-size: 1rem;
  }
  .cat::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}