@charset "UTF-8";
/* 設定
******************************************************************************************** */
/* txt-maker */
/* btn */
/* $width-pc: 1281px; */
/* $width-smartphone: 600px; */
/* $width-scrollbar: 20px; */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
/* 基本設定
******************************************************************************************** */
html {
  /* overflow-x: hidden; */
  cursor: inherit;
  font-size: 62.5%;
  /* overflow-x: auto; */
}

body {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "Helvetica Neue", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Arial", "メイリオ", "Meiryo", "sans-serif";
  font-weight: 400;
  background: #e3e9eb;
  color: #53575a;
  width: 100%;
  /* min-width: $ww; */
  overflow-x: hidden;
  line-height: normal;
  letter-spacing: 0.05em;
  /* -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; */
}

img {
  filter: blur(0);
  -webkit-filter: blur(0);
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  color: #53575a;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #858a8e;
}

a img {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.pager {
  max-width: 600px;
  margin: 0 auto;
  /*  Smartphone */
  margin: 80px auto;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .pager {
    width: 100%;
  }
}

.pager__single {
  padding: 0;
  list-style: none;
}

.pager__single a {
  color: #53575a;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.pager__single a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #53575a;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  bottom: 1px;
}

.pager__single a:hover::after {
  bottom: -2px;
  opacity: 1;
  visibility: visible;
}

.pager__prev {
  float: left;
  text-align: left;
}

.pager__prev a i {
  margin-right: 10px;
}

.pager__next {
  float: right;
  text-align: right;
}

.pager__next a i {
  margin-left: 10px;
}

.pager__index {
  clear: both;
  text-align: center;
}

.pager__index a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #53575a;
}

.pager__index a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #53575a;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  bottom: 1px;
}

.pager__index a:hover::after {
  bottom: -2px;
  opacity: 1;
  visibility: visible;
}

.pager__index a i {
  margin-right: 10px;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #5d8e13;
  background-color: #FFFFFF;
  padding: 8px 15px !important;
  margin: 0 2px !important;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border: thin dotted #5d8e13 !important;
}

.wp-pagenavi a:hover {
  color: #fff;
  background-color: #5d8e13;
}

.wp-pagenavi span.current {
  color: #fff;
  background-color: #5d8e13;
}

/*-----------------------------
ギャラリー
------------------------------*/
.gallery {
  /** ギャラリーを囲むボックス **/
  width: 100%;
  margin-bottom: 20px !important;
  overflow: hidden;
}

.gallery br {
  display: none;
}

/** 自動で挿入される clearfix の余白解除 **/
.gallery-item {
  /** 画像共通のスタイル **/
  float: left;
  margin-bottom: 0 !important;
}

.gallery-icon {
  /** 画像を囲む dt のスタイル **/
  text-align: center;
}

.gallery-icon img {
  width: 100%;
  height: auto;
  margin-bottom: 10px !important;
}

.gallery-caption {
  /** キャプション **/
  color: #222;
  font-size: 12px;
  margin: 0 0 10px;
  text-align: center;
}

.gallery-columns-1 .gallery-item {
  /** カラムなし **/
  width: 100%;
  margin-right: 0;
}

.gallery-columns-2 .gallery-item {
  /** 2カラム **/
  width: 48%;
  margin: 0 1%;
}

.gallery-columns-3 .gallery-item {
  /** 3カラム **/
  width: 31.33333%;
  margin: 0 1%;
}

.gallery-columns-4 .gallery-item {
  /** 4カラム **/
  width: 23%;
  margin: 0 1%;
}

.gallery-columns-5 .gallery-item {
  /** 5カラム **/
  width: 18%;
  margin: 0 1%;
}

@media screen and (max-width: 640px) {
  /* 640px以下用の記述 */
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item {
    width: 48%;
    margin: 0 1%;
  }
  .gallery-columns-5 .gallery-item {
    width: 31.33333%;
    margin: 0 1%;
  }
}

/* レイアウト設定
******************************************************************************************** */
.drawer--navbarTopGutter {
  padding-top: 0 !important;
}

.header__logo {
  margin: 0;
  padding: 30px 0;
  text-align: center;
}

.glnv {
  max-width: 1050px;
  margin: 0 auto;
  /*  Smartphone */
  position: relative;
  /*padding: 40px;*/
}

@media only screen and (max-width: 640px) {
  .glnv {
    width: 100%;
  }
}

.glnv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  margin: 0;
}

.glnv__list li {
  margin: 0 20px;
}

.glnv__list li a {
  cursor: pointer;
}

.glnv__list li a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
}



ul#sp-fixed-open-menu {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 9pt 60px 11px 8px;
	list-style: none
}

ul#sp-fixed-open-menu li.sp-header-menu__item {
	width: 31.33333%
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a {
	display: block;
	padding: .5em 0;
	background-color: #8f9ca0;
	color: #fff;
	border-radius: 20px;
	font-size: 14px
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu {
	position: relative;
	padding-right: 10px
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu:after {
	display: block;
	content: "";
	position: absolute;
	top: 46%;
	right: 8px;
	width: .6em;
	height: .6em;
	margin-top: -4px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transition: .3s
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu.active:after {
	top: 53%;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg)
}

ul#sp-fixed-sub-menu {
	list-style: none;
	padding: 2% 0 5%;
	margin: 0;
	display: none
}

ul#sp-fixed-sub-menu li.sp-header-sub-menu__item {
	margin-bottom: .5em
}

ul#sp-fixed-sub-menu li.sp-header-sub-menu__item>a {
	display: block;
	padding: .5em 0;
	width: 80%;
	margin: 0 auto;
	border-bottom: 1px solid #e3e9eb
}

body.drawer-open #sp-fixed-menu {
	display: none
}
/*共通フッター追加分*/
.glnv__list li a:focus{color: #53575a;}
.glnv__list li a .line{display: block; width: 56%; height: auto;}
.glnv__list li a:hover {text-decoration:none; color: #53575a;}
.glnv__list li a:hover:after {opacity: 1;}
.glnv__list li .top_line:after,.glnv__list li .topics_line:after,.glnv__list li .lineup_line:after,.glnv__list li .shop_line:after,.glnv__list li .column_line:after,.glnv__list li .faq_line:after,.glnv__list li .skindept_line:after,.glnv__list li .subscription_line:after,.glnv__list li .component_line:after
{	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-image: url(../../templates/img/top_line.png);
	background-size: contain;
	opacity: 0;
}
.glnv__list li .top_line:after{background-image: url(../../templates/img/top_line.png);}
.glnv__list li .topics_line:after{background-image: url(../../templates/img/topics_line.png);}
.glnv__list li .lineup_line:after{background-image: url(../../templates/img/lineup_line.png);}
.glnv__list li .shop_line:after{background-image: url(../../templates/img/shop_line.png);}
.glnv__list li .column_line:after{background-image: url(../../templates/img/column_line.png);}
.glnv__list li .faq_line:after{background-image: url(../../templates/img/faq_line.png);}
.glnv__list li .skindept_line:after{background-image: url(../../templates/img/skindept_line.png);}
.glnv__list li .subscription_line:after{background-image: url(../../templates/img/subscription_line.png);}
.glnv__list li .component_line:after{background-image: url(../../templates/img/component_line.png);}
/*共通フッター追加分 END*/
/*現在地に合わせてカレント表示*/
[data-current-nav="top"] nav ul li .top_line::after,
[data-current-nav="topics"] nav ul li .topics_line:after,
[data-current-nav="lineup"] nav ul li .lineup_line:after,
[data-current-nav="column"] nav ul li .column_line:after,
[data-current-nav="faq"] nav ul li .faq_line:after{
	opacity: 1;
}
/*現在地に合わせてカレント表示 END*/



.glnv__hover {
  display: none;
  position: absolute;
  z-index: 2;
  padding-top: 30px;
}

.glnv__hover--lineup {
  left: 35%;
  margin-top: -5px;
}

.glnv__hover--lineup .glnv__hover-in {
  padding: 40px 50px;
  padding-bottom: 10px;
}

.glnv__hover--shop {
  display: none;
  left: 33%;
}

.glnv__hover-in {
  font-size: 14px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 50px;
  padding-bottom: 10px;
}

.glnv__hover-sub {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.glnv__listcol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #53575a;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.glnv__listcol--nb {
  border: 0;
  margin-bottom: 20px;
}

.glnv__listcol li {
  margin: 0 25px;
}

.glnv__listcol li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.glnv__listcol li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #53575a;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform .3s;
  transform-origin: right top;
}

.glnv__listcol li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.glnv__listin li {
  margin-bottom: 30px;
}

.glnv__listin li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.glnv__listin li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #53575a;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform .3s;
  transform-origin: right top;
}

.glnv__listin li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.main {
  /*padding-top: 100px;*/
  padding-top: 110px;
}

.footer {
  background: #fff;
}

.footer__in {
  max-width: 1050px;
  margin: 0 auto;
  /*  Smartphone */
  text-align: center;
  padding: 50px;
}

@media only screen and (max-width: 640px) {
  .footer__in {
    width: 100%;
  }
}

.footer .fnav__ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 33px;
}

.footer .fnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin-bottom: 35px;
}

.footer .fnav__list li {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
}

.footer .fnav__list li::after {
  content: "|";
  padding: 0 0.8em 0 0.9em;
}

.footer .fnav__list li.nb::after {
  display: none;
}

.footer .fnav__list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 5px;
}

.footer .fnav__list li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #53575a;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform .3s;
  transform-origin: right top;
}

.footer .fnav__list li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.copyright {
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "futura-pt", "Noto Sans JP", "Helvetica Neue", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Arial", "メイリオ", "Meiryo", "sans-serif";
  margin: 0;
  display: block;
  margin-top: -10px;
}

/* FLOAT CONFIG
******************************************************************************************** */
.clear {
  clear: both;
}

.flr {
  float: right;
}

.fll {
  float: left;
}

.center {
  text-align: center;
}

.center img {
  display: inline;
}

.left {
  text-align: left;
}

.flrpic {
  display: inline;
  float: right;
  margin: 0 0 0 15px;
}

.flrpic img {
  display: inline;
  margin-bottom: 5px;
}

.fllpic {
  float: left;
  margin: 0 15px 0 0;
}

.fllpic img {
  display: inline;
  margin-bottom: 5px;
}

.centerpic {
  margin: 0 auto;
  text-align: center;
}

.centerpic img {
  display: inline;
}

.flrtbl {
  float: right;
  margin: 0 0 25px 25px;
}

.flltbl {
  float: left;
  margin: 0 25px 25px 0;
}

.alr {
  text-align: right;
}

.alr img {
  display: inline;
}

.inline {
  display: inline;
}

.all {
  text-align: left;
}

/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

/* 共通設定 */
.pc-mode {
  display: block;
}

.sp-mode {
  display: none;
}
@media only screen and (max-width:640px) {
	.footer__in, .glnv, .pager {
		width: 100%
	}
}

@media screen and (max-width:640px) {
	.gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
		width: 48%;
		margin: 0 1%
	}
	.gallery-columns-5 .gallery-item {
		width: 31.33333%;
		margin: 0 1%
	}
}

#sp-fixed-menu {
	position: fixed;
	left: 0;
	top: 0;
	background-color: #fff;
	background-color: hsla(0, 0%, 100%, .85);
	width: 100%;
	opacity: 0;
	z-index: -1;
	transition: .5s;
	margin: 0;
	padding: 0
}

ul#sp-fixed-open-menu {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 9pt 60px 11px 8px;
	list-style: none
}

ul#sp-fixed-open-menu li.sp-header-menu__item {
	width: 31.33333%
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a {
	display: block;
	padding: .5em 0;
	background-color: #8f9ca0;
	color: #fff;
	border-radius: 20px;
	font-size: 14px
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu {
	position: relative;
	padding-right: 10px
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu:after {
	display: block;
	content: "";
	position: absolute;
	top: 46%;
	right: 8px;
	width: .6em;
	height: .6em;
	margin-top: -4px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transition: .3s
}

ul#sp-fixed-open-menu li.sp-header-menu__item>a#js-toggele-sub-menu.active:after {
	top: 53%;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg)
}

ul#sp-fixed-sub-menu {
	list-style: none;
	padding: 2% 0 5%;
	margin: 0;
	display: none
}

ul#sp-fixed-sub-menu li.sp-header-sub-menu__item {
	margin-bottom: .5em
}

ul#sp-fixed-sub-menu li.sp-header-sub-menu__item>a {
	display: block;
	padding: .5em 0;
	width: 80%;
	margin: 0 auto;
	border-bottom: 1px solid #e3e9eb
}

body.drawer-open #sp-fixed-menu {
	display: none
}