/*common_css*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard .article-archive-itemClark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  font-weight: normal;
  vertical-align:baseline;
  background:transparent;
}

body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

/*===追加記述===*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
	width: 100%;
	height: auto;
}

li {
	list-style: none;
}

button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
}

body {
    font-size: 16px;
}

html,
body {
    background-color: #fff;
	color: #202834;
	font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', "メイリオ", sans-serif;
    font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.8;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	width: 100%;
}

body {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

a {
	color: inherit;
	display: inherit;
	transition: all ease-in-out .3s;
}
a:hover {
    opacity: .75;
}
.sp {
	display: none;
}
.pc {
	display: inherit;
}
@media only screen and (max-width: 767px) {
	.sp {
		display: inherit;
	}
	.pc {
		display: none;
	}
}

/*------------------- header -------------------*/
.grobal-logo {
    width: 180px;
    position: fixed;
    /* top: 60px;
    left: 4.2%; */
    top: 30px;
    left: 3.8%;
    z-index: 100;
}

/********************
  Hamburger MENU
********************/

/* ハンバーガーアイコン用　ボタン */
.hamb__checkbox {
	display: none;
}

/* label ハンバーガーアイコン */
.hamb__icon {
	cursor: pointer;
	display: block;
	height: 60px;
	position: fixed;
	top: 20px;
	right: 40px;
	z-index: 10000;
	width: 45px;
}

/* 3本線 */
.hamb__icon-parts:before,
.hamb__icon-parts:after {
	background-color: #202834;
	display: block;
	height: 2px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
}

.hamb__icon-parts:before,
.hamb__icon-parts:after {
	content: "";
}

.hamb__icon-parts:before {
	top: 16px;
}

.hamb__icon-parts:after {
	top: -16px;
}

/* メニュー　開 */
.hamb__menu {
	background: #a4b3b3;
	color: #000;
	width: 33.2%;
	min-width: 466px;
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	right: -100%;
}

.hamb__icon {
	z-index: 4;
}

.hamb__menu {
	z-index: 3;
}

/* 2本線　開閉モーション */
.hamb__checkbox:checked ~ .hamb__icon .hamb__icon-parts:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0;
}

.hamb__checkbox:checked ~ .hamb__icon .hamb__icon-parts:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
}

/* メニュー　開位置 */
.hamb__checkbox:checked ~ .hamb__menu {
	right: 0;
}

/* 開閉をスムーズに */
.hamb__icon-parts:after,
.hamb__icon-parts:before,
.hamb__menu {
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
}

.hamb__ul {
	margin: 100px auto 0;
	padding-left: 12.8%;
}

.hamb__li {
/* 	border-top: solid 1px #a9a8b6; */
	line-height: 55px;
}

.hamb-menu-flexbox {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

.hamb-menu-flexbox ul:nth-of-type(1) {
    width: 40%;
}
.hamb-menu-flexbox ul:nth-of-type(2) {
    width: 60%;
}

.grobal-menu-en {
    color: #788e8d;
    font-size: 12px;
    margin-left: 8%;
}
@media only screen and (max-width: 767px) {
    .grobal-logo {
        width: 80px;
        top: 20px;
        left: 20px;
    }
    .hamb__ul {
        padding-left: 40px;
        font-size: 14px;
    }
    .hamb__li {
        line-height: 1.8;
        margin-bottom: 24px;
    }
    .hamb__icon {
        width: 32px;
        right: 20px;
        top: 0;
    }
    .hamb__menu {
        width: 100%;
        min-width: auto;
    }
    .hamb-menu-flexbox ul:nth-of-type(1),
    .hamb-menu-flexbox ul:nth-of-type(2){
        width: 50%;
    }
}


/*------------------- footer -------------------*/
/* footer-contact */
.footer-contact-wrapper {
    margin: 0 auto;
    min-width: 846px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	--webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 160px 0 120px;
}

/* footer */
.common-footer {
    color: #464d55;
    background-color: #f3f5f4;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
  	font-size: 14px;
  	padding: 100px 60px 95px;
  	width: 100%;
}
.footer-logo {
    margin-bottom: 80px;
    width: 100px;
}
.footer-grobal-list {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	width: 55%;
}
.footer-grobal-item {
    margin-right: 35px;
    margin-top: 30px;
}
.footer-sns-list {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  	margin-bottom: 20px;
}
.footer-sns-item:not(:nth-child(1)) {
    margin-left: 20px;
}
.copyright {
    font-weight: normal;
    font-size: 12px;
    text-align: right;
}
@media only screen and (max-width: 767px) {
    .footer-contact-wrapper {
        min-width: auto;
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
      	-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
    	padding: 80px 0 80px;
    	margin: 0 auto;
    	width: 90%;
    }
    .common-footer {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
      	padding: 50px 25px 60px;
    }
    .footer-logo {
        margin: 0 auto 20px;
    }
    .footer-grobal-list {
        width: 100%;
    }
    .footer-grobal-item {
        width: calc((100% - 30px) / 2);
        margin-right: 15px;
    }
    .footer-sns-contents {
        width: 100%;
    }
    .footer-sns-list {
        -webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
    	margin-top: 50px;
    }
    .copyright {
        text-align: center;
    }
}

/*------------------- common -------------------*/
/* SNS */
.sns-item {
    width: 26px;
}
/* モジュール */
.page-title-en {
    color: #a4b3b3;
    font-size: 17px;
    margin-bottom: 30px;
}
.page-heading {
    font-size: 38px;
    margin-bottom: 35px;
}
.page-text {
    font-size: 16px;
    line-height: 2.3;
    margin-bottom: 55px;
    max-width: 400px;
}
.page-link a {
    color: #464d55;
    display: inline-block;
    position: relative;
}
.page-link.typeA a {
    padding-left: 15px;
}
.page-link.typeA a::before {
    content: "";
    display: block;
    background-color: #464d55;
    border-radius: 50%;
    height: 6px;
    width: 6px;
    position: absolute;
    left: 0;
    bottom: 12px;
}
.page-link.typeA a::after {
    content: "";
    background-image: url(/_img/ja/cssjs/5/image/_/);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 60px;
    height: 7px;
    position: absolute;
    right: -70px;
    bottom: 8px;
    transition: all .3s ease-in-out;
}
.page-link.typeA a:hover::after {
    right: -85px;
}

@media only screen and (max-width: 1024px) {
    .page-title-en {
        font-size: 16px;
    }
    .page-heading {
        font-size: 28px;
    }
    .page-text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .page-title-en {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .page-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-text {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 30px;
        max-width: auto;
    }
}


/* button共通 */
.common-button {
    border-top: solid 1px #464d55;
    border-bottom: solid 1px #464d55;
    color: #464d55;
    position: relative;
    transition: all .3s ease-in-out;
}
.common-button:hover {
    opacity: .75;
}
.common-button::before,
.common-button::after {
    content: "";
    display: block;
    background-color: #464d55;
    width: 1px;
    position: absolute;
}
.common-button::before {
    bottom: 0;
    left: 0;
}
.common-button::after {
    top: 0;
    right: 0;
}
.button-link {
    width: 100%;
    height: 100%;
}


/* button A */
.common-button.typeA {
    height: 150px;
}
.common-button.typeA::before,
.common-button.typeA::after {
    height: 140px;
}
.common-button.typeA .button-link {
    padding-top: 35px;
    font-size: 26px;
}
.common-button.typeA .button-text-en {
    color: #a4b3b3;
    font-size: 14px;
    display: block;
}
.common-button.typeA .button-text {
    text-align: center
}
/* button B */
.common-button.typeB {
    height: 100px;
    line-height: 100px;
}
.common-button.typeB::before,
.common-button.typeB::after {
    height: 86px;
}

.common-button.typeB .button-link {
    padding: 0 40px;
    width: 100%;
}

.common-button.typeB .button-link::after {
    content: "";
    display: block;
    background-image: url(/_img/ja/cssjs/6/image/_/);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 40px;
    top: 25px;
}
/* button C */
.common-button.typeC {
    height: 56px;
    line-height: 56px;
    min-width: 310px;
    padding: 0 20px;
    display: inline-block;
}
.common-button.typeC::before,
.common-button.typeC::after {
    height: 45px;
}

@media only screen and (max-width: 767px)  {
    .common-button.typeA {
        height: 100px;
    }
    .common-button.typeA::before,
    .common-button.typeA::after {
        height: 90px;
    }
    .common-button.typeA .button-link {
        padding-top: 20px;
        font-size: 18px;
    }
    .common-button.typeA .button-text-en {
        font-size: 14px;
    }
    .common-button.typeC {
        min-width: unset;
        width: 100%;
    }
}


/* TOP productDetail button */
.show-detail-button-link{
    color: #f3f5f4;
    display: block;
    text-align: center;
    background-color: #788e8d;
    line-height: 120px;
    height: 120px;
    font-size: 26px;
    position: relative;
}
.show-detail-button-link::after {
    content: "";
    background-size: contain;
    background-image: url(/_img/ja/cssjs/7/image/_/);
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 35px;
    right: 40px;
}

/* VIEW MORE */
.text-decoration {
    color: #464d55;
    position: relative;
    padding-left: 85px;
}
.text-decoration::before,
.text-decoration::after{
    background-color: #464d55;
    content: "";
    display: block;
    position: absolute;
}
.text-decoration::before {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    left: 0;
    bottom: 10px;
}
.text-decoration::after {
    width: 50px;
    left: 13px;
    bottom: 12px;
    height: 1px;
}


/* BRAND METHOD の見出し */
.list-heading {
    display: inline-block;
    font-size: 24px;
    border-bottom: solid 1px #a4b3b3;
    padding-bottom: 10px;
    margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
    .list-heading {
        font-size: 20px;
        padding-bottom: 8px;
        margin-bottom: 30px;   
    }
}

/* アーティクル */
.article-archive-container {
    z-index: 1;
    position: relative;
    padding-bottom: 100px;
    padding-left: 12.8%;
  	padding-right: 15.7%;
}
.article-archive-container::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 194px);
    background-color: #f3f5f4;
    position: absolute;
    top: 210px;
    left: 0;
    z-index: -1;
}

.article-category-menu {
    font-size: 15px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	margin-bottom: 70px;
}
.article-category-item {
    position: relative;
}
.article-category-item:not(:last-child) {
    margin-right: 40px;
}
.article-category-item:not(:last-child)::after {
    content: "／";
    display: block;
    position: absolute;
    right: -28px;
    bottom: 0;
}
.article-archive-list {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  	//max-width: 1220px;
  	width: 100%;
}
.product-archive-list::before {
    content: "";
    display: block;
    width: calc((100% - 80px) / 3);
}
.column-archive-list::after {
    content: "";
    display: block;
    width: calc((100% - 80px) / 3);
}
.article-archive-item {
    width: calc((100% - 80px) / 3);
    position: relative;
}
.article-link {
    display: block;
}
.article-thumbnail img {
    height: 100.1%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100.1%;
	transition: all .3s ease-in-out;
}
/* .article-link:hover {
    opacity: 1;
} */
.article-link:hover .article-thumbnail img {
    height: 115%;
    width: 115%;
}
@media only screen and (max-width: 767px)  {
    .article-archive-container {
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
    .article-category-menu {
        font-size: 14px;
        margin: 0 auto 60px;
        width: 90%;
        -ms-flex-wrap: wrap;
  	    flex-wrap: wrap;
    }
    .show-detail-button-link {
        line-height: 100px;
        height: 100px;
        font-size: 18px;
        margin: 0 auto;
        width: 90%;
    }
    .show-detail-button-link::after {
        width: 30px;
        height: 30px;
        top: 35px;
    }
    .article-archive-list {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
      	width: 90%;
      	padding-left: 0;
      	margin: 0 auto;
    }
    .article-archive-item {
        width: 100%;
        min-width: 100%;
    }
}

/* 商品 */
.product-container {
    /* padding-left: 12.8%;
          padding-right: 15.7%; */
}
.product-container .article-archive-item {
    margin-bottom: 60px;
}

.product-thumbnail {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 20px;
}
.product-name {
    font-size: 20px;
}
.product-price {
    color: #788e8d;
    font-size: 14px;
    margin-bottom: 20px;
}
/*.product-price::before {
    content: "¥";
}*/
.product-buy-button {
    color: #f3f5f4;
    background-color: #788e8d;
    text-align: center;
    height: 48px;
    line-height: 48px;
}
@media only screen and (max-width: 767px) {
    .product-container .article-archive-item {
        margin-bottom: 30px;
    }
}

/* コラム */
.column-container .article-archive-item {
    margin-bottom: 80px;
}
.column-tag {
    position: absolute;
    top: 0;
    right: 0;
}
.column-img-box {
    position: relative;
}
.column-thumbnail {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 61%;
    position: relative;
    margin-bottom: 35px;
}
.column-archive-info-box {
    border-radius: 0 10px 0 0;
    background-color: #f3f5f4;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 40px 0 20px;
}
.column-date {
    font-size: 12px;
}
.column-title {
    font-size: 16px;
    max-width: 270px;
}
.column-excerpt {
    padding: 0 20px;
    font-size: 14px;
}
.article-date {
    color: #464d55;
}
.article-tag {
    background-color: #202834;
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 4px 14px 4px;
    font-size: 14px;
    text-align: center;
    z-index: 10;
}
@media only screen and (max-width: 767px) {
    .product-name {
        font-size: 16px;
    }
    .product-price {
        font-size: 12px;
    }
    .column-thumbnail {
        margin-bottom: 20px;
    }
}

.common-pagination {
    text-align: center;
    font-size: 15px;
    margin: 100px auto;
}
@media only screen and (max-width: 767px) {
    .column-container .article-archive-item {
        margin-bottom: 30px;
    }
    .common-pagination {
        font-size: 14px;
        margin: 50px auto;
    }
}/*widget:b3274e64-1836-472a-b761-d057cf3a9609*/[data-lib="68"]{width: 100%;
	padding-left: 5%;
	padding-right: 15.7%;
	position: relative;
	margin: 0 auto 180px;}[data-lib="68"] .first-view-trim{width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 57%;
	position: relative;}[data-lib="68"] .first-view-trim::after{content: "";
	display: block;
	background-color: #202834;
	opacity: .2;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;}[data-lib="68"] .first-view-trim img{height: 100.1%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100.1%;
	transition: all .3s ease-in-out;}[data-lib="68"] .article-page-title{color: #fff;
	font-size: 32px;
	text-align: center;
	position: absolute;
	right: calc(15.7% + 7.2%);
	top: 37.5%;}[data-lib="68"] .article-page-title span{font-size: 14px;
	display: block;}[data-lib="68"] .first-view-text-wrapper{position: relative;}[data-lib="68"] .first-view-text{background-color: #fff;
	display: inline-block;
	padding: 40px;
	font-size: 24px;
	position: absolute;
	top: -120px;
	right: 0;}@media only screen and (max-width: 767px){[data-lib="68"]{padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;}[data-lib="68"] .article-page-title{font-size: 24px;
	top: 18%;
	left: 0;
	right: 0;
	margin: 0 auto;}[data-lib="68"] .article-page-title span{font-size: 14px;}[data-lib="68"] .first-view-text-wrapper{margin: 0 auto;}[data-lib="68"] .first-view-text{font-size: 18px;
	padding: 45px 5% 80px;
	position: static;
	margin: 0 auto;
	width: 100%;
	text-align: center;}}/*widget:84598ba5-c34c-4fa7-bbb3-fbb9c9dd9b53*/[data-lib="1"] .grobal-action-wrapper{position: fixed;
	top: 100px;
	right: 50px;
	z-index: 10;}[data-lib="1"] .grobal-action-list{padding-top: 45px;
	margin-bottom: 30px;
	position: relative;}[data-lib="1"] .grobal-action-item a{display: block;
	position: relative;}[data-lib="1"] .grobal-action-item:nth-child(1) a{margin-bottom: 75px;}[data-lib="1"] .grobal-action-item:nth-child(1) a::before{content: "";
	display: block;
	background-image: url(/_img/ja/cms_parts_library/98/image/_/);
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -45px;
	left: -1px;}[data-lib="1"] .grobal-action-item:nth-child(2) a::before{content: "";
	display: block;
	background-image: url(/_img/ja/cms_parts_library/99/image/_/);
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -45px;
	left: -1px;}[data-lib="1"] .grobal-action-link{-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;}[data-lib="1"] .grobal-sns-item{margin-bottom: 25px;}@media only screen and (max-width: 767px){[data-lib="1"] .grobal-action-wrapper{display: none;}}/*widget:86c9b976-93f6-466a-9597-ef137f797143*/[data-lib="20"] .page-title-en{position: relative;}[data-lib="20"] .page-title-en::before{content: "";
	display: block;
	background-color: #a4b3b3;
	height: 1px;
	width: 50px;
	position: absolute;
	left: -70px;
	bottom: 16px;}@media only screen and (max-width: 767px){[data-lib="20"]{margin-bottom: 60px;}[data-lib="20"] .page-title-en::before{display: none;}}/*widget:46f78680-d197-4610-a5d4-0c9c7c17d0af*/[data-lib="26"] .common-tel-box{margin-bottom: 45px;}[data-lib="26"] .common-tel-number{font-size: 52px;
	font-weight: 200;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-bottom: 10px;}[data-lib="26"] .common-business-hours{color: #a4b3b3;
	letter-spacing: normal;}[data-lib="26"] .business_hours_memo{font-size: 12px;}@media only screen and (max-width: 767px){[data-lib="26"]{width: 100%;
	margin: 0 auto;}[data-lib="26"] .common-tel-number{font-size: 40px;}[data-lib="26"] .business_hours_memo{display: block;}}