:root {
	--color-white: #fff;
	--color-gray700: #5a5a5a;
	--color-gray350: #ababab;
	--color-gray150: #dadada;
	--color-gray100: #e8e8e8;
	--color-gray050: #f4f4f4;
	--color-black: #1f1f1f;
	--color-blue: #12288b;
	--color-yellow: #fff000;
	--color-gold: #cb9f33;
	--color-orange: #ffcd78;
	--color-red: #ff5050;
	--space-v-xxs: 5px;
	--space-v-xs: 10px;
	--space-v-s: 15px;
	--space-v-m: 20px;
	--space-v-l: 30px;
	--space-v-xl: 60px;
	--space-v-xxl: 90px;
	--sp-h-xxs: 1px;
	--sp-h-xxs-negative: -1px;
	--sp-h-xs: 3px;
	--sp-h-xs-negative: -3px;
	--sp-h-s: 5px;
	--sp-h-s-negative: -5px;
	--sp-h-m: 9px;
	--sp-h-m-negative: -9px;
	--sp-h-l: 15px;
	--sp-h-l-negative: -15px;
	--sp-h-xl: 30px;
	--sp-h-xl-negative: -30px;
	--pc-h-xxs: 1px;
	--pc-h-xs: 5px;
	--pc-h-s: 10px;
	--pc-h-m: 15px;
	--pc-h-l: 20px;
	--pc-h-xl: 40px;
	--pc-h-xxl: 60px;
	--hover-transition-slow: 0.8s;
	--hover-transition-normal: 0.6s;
	--hover-transition-fast: 0.4s;
	--feature-color-light: #fdecf5;
	--feature-color-dark: #ea6182
}
.p-loader {
	opacity: 1;
	transition: opacity .8s
}
.p-loader_container {
	background-color: #fff;
	background-color: var(--color-white);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000000;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateZ(101vw)
}
.p-loader_logo {
	position: relative;
	width: 40px;
	height: 40px;
	transform: translateY(100px);
	opacity: 0;
	margin-right: 7px
}
.p-loader_logoImage {
	width: 100%
}
.p-loader_text {
	position: relative;
	width: 168px;
	transform: translateY(-100px);
	opacity: 0;
	margin-left: 6px
}
.p-loader_textImage {
	width: 100%
}
.p-homeHero {
	overflow: hidden;
	position: relative;
	height: calc(100vh - 50px)
}
.p-homeHero_video {
	vertical-align: bottom;
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity .8s
}
.p-homeHero_videoButton {
	width: 40px;
	position: absolute;
	bottom: 15px;
	right: 15px;
	transition: all .6s;
	transition: all var(--hover-transition-normal)
}
[data-splash-show=false].p-homeHero_videoButton {
	opacity: 0
}
[data-splash-show=true].p-homeHero_videoButton {
	opacity: 1
}
.p-homeHero_videoButton img {
	width: 100%
}
.p-homeHero_body {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0, -50%, 0);
	color: #fff;
	color: var(--color-white);
	text-align: center
}
.p-homeHero_heading {
	width: 240px;
	margin: auto
}
.p-homeHero_lead {
	margin-top: 15px;
	margin-top: var(--space-v-s);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1.35px;
	line-height: 1.4
}
.p-homeHero_arrow {
	transition: 1.2s;
	display: inline-block;
	line-height: 1;
	font-weight: 700;
	font-size: 11px;
	transform: rotate(-90deg);
	color: #fff;
	color: var(--color-white);
	position: absolute;
	left: 50%;
	bottom: 92px;
	transition: all .6s;
	transition: all var(--hover-transition-normal)
}
.p-homeHero_arrow:before {
	background-color: hsla(0, 0%, 100%, .4)
}
.p-homeHero_arrow:after, .p-homeHero_arrow:before {
	content: "";
	position: absolute;
	bottom: 5px;
	right: 55px;
	height: 1px;
	width: 50px
}
.p-homeHero_arrow:after {
	background-color: #fff;
	background-color: var(--color-white);
	animation-name: scroll_line_sp;
	animation-duration: 3.6s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite
}
[data-splash-show=false].p-homeHero_arrow {
	opacity: 0
}
[data-splash-show=true].p-homeHero_arrow {
	opacity: 1
}
@keyframes scroll_line_sp {
	0% {
		width: 0;
		right: 55px
	}
	25% {
		width: 50px;
		right: 55px
	}
	75% {
		width: 50px;
		right: 55px
	}
	to {
		width: 0;
		right: 105px
	}
}
@keyframes scroll_line_pc {
	0% {
		width: 0;
		right: 55px
	}
	25% {
		width: 70px;
		right: 55px
	}
	75% {
		width: 70px;
		right: 55px
	}
	to {
		width: 0;
		right: 125px
	}
}
.p-intro {
	margin-top: 40px
}
.p-intro_container {
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-intro_heading {
	font-size: 22px;
	line-height: 31px;
	letter-spacing: 0.5px;
	font-weight: 300
}
.p-intro_bodyText {
	margin-top: 15px;
	margin-top: var(--space-v-s);
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.5px;
}
.p-anchor_container {
	/*
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	*/
	text-align: center
}
.p-anchor_list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.p-anchor_item {
	/*
	width: calc(50% - 7.5px);
	width: calc(50% - var(--sp-h-l)/2)
	*/
	width: 50%;
	border-top: 1px solid #DADADA;
	border-bottom: 1px solid #DADADA;
}
.p-anchor_item:first-child {
	border-right: 1px solid #DADADA;
}
/*
.p-anchor_item:nth-child(n+3) {
	margin-top: 15px;
	margin-top: var(--space-v-s)
}
*/
.p-anchor_itemLink {
	padding-top: 10px;
	padding-top: var(--space-v-xs);
	padding-bottom: 10px;
	padding-bottom: var(--space-v-xs);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.5px;
	font-weight: 300;
	min-height: 78px
}
.p-anchor_itemLink:before {
	width: 100%;
	background-color: #1f1f1f;
	background-color: var(--color-black)
}
.p-anchor_itemLink:after, .p-anchor_itemLink:before {
	display: block;
	content: none;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0
}
.p-anchor_itemLink:after {
	width: 0;
	background-color: #fff;
	background-color: var(--color-white);
	transition: all .4s
}
.p-anchor_itemHeading {
	text-align: center
}
.p-anchor_itemHeading:after {
	display: block;
	content: none;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7.5px solid #000;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -3.75px
}
@keyframes animate_bar {
	0% {
		width: 0;
		left: 0
	}
	50% {
		width: 100%;
		left: 0
	}
	51% {
		width: 100%;
		left: inherit;
		right: 0
	}
	to {
		width: 0;
		left: inherit;
		right: 0
	}
}
.p-update {
	margin-top: 60px;
	margin-top: var(--space-v-xl)
}
.p-update_head {
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-update_heading {
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	letter-spacing: .8px
}
.p-update_body {
	margin-top: 10px;
	margin-top: var(--space-v-xs);
	font-weight: 300;
	font-size: 12px;
	line-height: 18px
}
.p-update_list {
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l)
}
.p-update_item {
	border-bottom: 1px solid #dadada;
	border-bottom: 1px solid var(--color-gray150);
	position: relative
}
.p-update_item:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7.5px solid #000;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -3.75px
}
.p-update_link {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 10px 0;
	padding: var(--space-v-xs) 0
}
.p-update_date {
	width: 55px
}
.p-update_description {
	width: calc(100% - 95px);
	padding-left: 20px
}
.p-keyword {
	margin-top: -50px;
	padding-top: 50px
}
.p-keyword_head {
	margin-top: 60px;
	margin-top: var(--space-v-xl);
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-keyword_heading {
	font-size: 20px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0.5px
}
.p-keyword_description {
	margin-top: 10px;
	margin-top: var(--space-v-xs);
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.5px;
}
.p-keyword_item {
	margin: 0 0 0 0;
	/*margin-top: var(--space-v-m)*/
}
.p-keyword_item + .p-keyword_item {
	margin-top: 60px;
	margin-top: var(--space-v-xl)
}
.p-keyword_item.-joyful .p-keyword_itemHeadText {
	top: auto;
	bottom: 134px;
	color: #faff00;
}
.p-keyword_itemHeadDescription {
	font-size: 28px;
	line-height: 28px;
	letter-spacing: 0.5px;
}
.p-keyword_item.-gender-mix .p-keyword_itemHeadText {
	top: auto;
	bottom: 154px;
}
.p-keyword_item.-gender-mix .p-keyword_itemHeadTitle {
	font-size: 28px;
	line-height: 31px;
	letter-spacing: 0.5px;
	font-weight: 300;
	width: 80%;
	margin: 0 auto
}
.p-keyword_itemHead {
	position: relative;
	z-index: 0;
	/*
	padding-left: 15px;
	padding-left: var(--sp-h-l);
	padding-right: 15px;
	padding-right: var(--sp-h-l)
	*/
}
.p-keyword_itemHeadLink {
	position: relative;
	display: block
}
.p-keyword_itemHeadImage:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(27, 27, 27, 0) 60%, #1B1B1B 100%);
}
.p-keyword_itemHeadImage {
	overflow: hidden
}
.p-keyword_itemHeadImage img {
	/*
	transition: all .6s;
	transform: scale(1)
	*/
}
.p-keyword_itemHeadText {
	position: absolute;
	left: 0;
	top: 20px;
	top: var(--space-v-m);
	width: 100%;
	color: #fff;
	color: var(--color-white);
	text-align: center;
	font-weight: 700
}
.p-keyword_itemHeadTitle {
	font-size: 28px;
	line-height: 31px;
	letter-spacing: 0.5px;
	text-shadow: 0px 2px 1px rgba(0,0,0,.3);
}
.p-keyword_itemHeadLead {
	margin-top: 10px;
	margin-top: var(--space-v-xs);
	font-size: 10px;
	line-height: 10px
}
.p-keyword_itemHeadButton {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	padding: 7px 3px 8px;
	width: 185px;
	border: 1px solid transparent;
	background-color: #fff;
	background-color: var(--color-white);
	color: #1f1f1f;
	color: var(--color-black);
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	outline: none;
	transition: all .6s;
	font-size: 13px;
	line-height: 20px;
	/*min-height: 44px;*/
	letter-spacing: 0.5px;
	border-radius: 8px;
}
.p-keyword_itemHeadButton:after, .p-keyword_itemHeadButton:before {
	position: absolute;
	z-index: 2;
	content: "";
	width: 0;
	height: 0;
	border: 1px solid transparent;
	box-sizing: content-box
}
.p-keyword_itemHeadButton:before {
	top: -1px;
	left: -1px
}
.p-keyword_itemHeadButton:after {
	bottom: -1px;
	right: -1px
}
.p-keyword_itemHeadDescription {
	margin-top: 20px;
	margin-top: var(--space-v-m);
	line-height: 21px;
	position: absolute;
	width: 100%;
	bottom: 86px;
	font-size: 14px;
	color: #FFF;
	padding: 0 8%;
	text-align: center;
}
.p-keyword_itemProductsHead {
	margin-top: 40px;
	padding-left: 15px;
	padding-left: var(--sp-h-l);
	padding-right: 15px;
	padding-right: var(--sp-h-l);
	text-align: center;
	position: relative
}
.p-keyword_itemProductsHead:after {
	position: absolute;
	display: block;
	content: "";
	width: calc(100% - 30px);
	width: calc(100% - var(--sp-h-l)*2);
	height: 1px;
	background-color: #dadada;
	background-color: var(--color-gray150);
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1
}
.p-keyword_itemProductsHeading {
	font-size: 18px;
	line-height: 25px;
	letter-spacing: .9px;
	font-weight: 700;
	display: inline-block;
	padding-left: 15px;
	padding-left: var(--sp-h-l);
	padding-right: 15px;
	padding-right: var(--sp-h-l);
	background-color: #fff;
	background-color: var(--color-white)
}
.p-keyword_itemProductsBody {
	margin-top: 20px;
	margin-top: var(--space-v-m)
}
.p-keyword_itemRelatedHead {
	margin-top: 15px;
	margin-top: var(--space-v-s);
	padding-left: 15px;
	padding-left: var(--sp-h-l);
	padding-right: 15px;
	padding-right: var(--sp-h-l);
	text-align: center;
	position: relative
}
.p-keyword_itemRelatedHead:after {
	position: absolute;
	display: block;
	content: "";
	width: calc(100% - 30px);
	width: calc(100% - var(--sp-h-l)*2);
	height: 1px;
	background-color: #dadada;
	background-color: var(--color-gray150);
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1
}
.p-keyword_itemRelatedBody, .p-keyword_itemRelatedHeading {
	padding-left: 15px;
	padding-left: var(--sp-h-l);
	padding-right: 15px;
	padding-right: var(--sp-h-l)
}
.p-keyword_itemRelatedHeading {
	font-size: 18px;
	line-height: 25px;
	letter-spacing: .9px;
	font-weight: 700;
	display: inline-block;
	background-color: #fff;
	background-color: var(--color-white)
}
.p-keyword_itemRelatedLink {
	margin-top: 20px;
	margin-top: var(--space-v-m);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start
}
.p-keyword_itemRelatedLinkHead {
	width: calc(50% - 15px);
	width: calc(50% - var(--sp-h-l))
}
.p-keyword_itemRelatedLinkBody {
	width: 50%
}
.p-keyword_itemRelatedLinkHeading {
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	letter-spacing: .8px;
	color: #1f1f1f;
	color: var(--color-black)
}
.p-keyword_itemRelatedLinkDescription {
	margin-top: 10px;
	margin-top: var(--space-v-xs);
	font-size: 13px;
	line-height: 18px;
	color: #1f1f1f;
	color: var(--color-black)
}
.p-look {
	margin-top: -50px;
	padding-top: 50px
}
.p-look_head {
	margin-top: 60px;
	margin-top: var(--space-v-xl);
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-look_heading {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	letter-spacing: 1.2px
}
.p-look_body {
	margin-top: 20px;
	margin-top: var(--space-v-m);
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l)
}
.p-look_list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap
}
.p-look_item {
	width: calc(50% - 1.5px)
}
.p-look_item:nth-child(n+3) {
	margin-top: 3px
}
.p-look_item:nth-child(2n) {
	margin-left: 3px
}
.p-look_link {
	display: block
}
.p-look_button {
	margin-top: 40px;
	display: flex;
	justify-content: center
}
.p-recommend {
	margin-top: 60px;
	margin-top: var(--space-v-xl)
}
.p-recommend_head {
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-recommend_heading {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	letter-spacing: 1.2px
}
.p-recommend_body {
	margin-top: 20px;
	margin-top: var(--space-v-m)
}
.p-recommend_list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap
}
.p-recommend_item {
	width: calc(50% - 1.5px)
}
.p-recommend_item:nth-child(n+3), .p-recommend_item:nth-child(n+5) {
	margin-top: 20px;
	margin-top: var(--space-v-m)
}
.p-recommend_itemHeading {
	margin-top: 15px;
	margin-top: var(--space-v-s);
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	font-size: 13px;
	line-height: 18px;
	color: #1f1f1f;
	color: var(--color-black)
}
.p-forGood {
	margin-top: 60px;
	margin-top: var(--space-v-xl)
}
.p-forGood_head {
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	text-align: center
}
.p-forGood_heading {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	letter-spacing: 1.2px
}
.p-forGood_body {
	margin-top: 20px;
	margin-top: var(--space-v-m)
}
.p-forGood_list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap
}
.p-forGood_item {
	width: calc(50% - 1.5px);
	margin-bottom: 20px;
	margin-bottom: var(--space-v-m)
}
.p-forGood_item:nth-child(n+3), .p-forGood_item:nth-child(n+5) {
	margin-top: 20px;
	margin-top: var(--space-v-m)
}
.p-forGood_itemHeading {
	margin-top: 15px;
	margin-top: var(--space-v-s);
	margin-left: 15px;
	margin-left: var(--sp-h-l);
	margin-right: 15px;
	margin-right: var(--sp-h-l);
	font-size: 13px;
	line-height: 18px;
	color: #1f1f1f;
	color: var(--color-black)
}
ul.p-keyword_list {
	width: 100%;
	display: block;
	padding-top: 20px;
}
ul.p-keyword_list li {
	width: 100%;
}
#_followingMenu.transform {
	position: fixed;
	top: 50px;
	width: 100%;
	background-color: #FFF;
	z-index: 0;
}
.-home .l-header[data-is-active=true] .l-header_inner {
	background-color: #FFF;
	z-index: 100;
}
.-home .l-header[data-is-active=true] #_followingMenu.transform {
	position: fixed;
	top: 50px;
	width: 100%;
	background-color: #FFF;
	z-index: 0;
}

#_followingMenu.transform.hide {
	transition: .5s;
}
#_followingMenu.transform.hide {
	transform: translateY(-100%);
}
#_followingMenu.transform.show {
	transition: .5s;
}
#_followingMenu.transform.show {
	transform: translateY(0%);
}
@media screen and (min-width:813px) {
	.p-loader_logo {
		width: 60px;
		height: 60px;
		transform: translateY(200px)
	}
	.p-loader_text {
		width: 253px;
		transform: translateY(-200px)
	}
	.p-homeHero {
		width: 100%;
		max-width: 100%;
		height: calc(100vh - 70px)
	}
	.p-homeHero_video {
		height: 56%
	}
	.p-homeHero_videoButton {
		width: 50px;
		right: 30px;
		opacity: 1
	}
	.p-homeHero_videoButton:hover {
		opacity: .6
	}
	.p-homeHero_heading {
		width: 465px
	}
	.p-homeHero_lead {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		font-size: 20px
	}
	.p-homeHero_arrow:after, .p-homeHero_arrow:before {
		width: 70px
	}
	.p-homeHero_arrow {
		left: 50%;
		bottom: 137px;
	}
	.p-homeHero_arrow:after {
		animation-name: scroll_line_pc
	}
	.p-intro {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 40px auto 0
	}
	.p-intro_heading {
		font-size: 32px;
		line-height: 45px;
		letter-spacing: 0.5px
	}
	.p-intro_bodyText {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		font-size: 15px;
		line-height: 23px;
		letter-spacing: 0.5px;
	}
	.p-anchor_container {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 0 auto
	}
	.p-anchor_list {
		justify-content: center
	}
	.p-anchor_item {
		width: 50%;
		border: none!important;
	}
	.p-anchor_item:nth-child(n+3) {
		margin-top: 0
	}
	.p-anchor_item + .p-anchor_item {
		margin-left: 0;
		/*margin-left: var(--sp-h-xl)*/
	}
	.p-anchor_itemLink {
		border: 1px solid #DADADA;
		padding-top: 20px;
		padding-top: var(--space-v-m);
		padding-bottom: 20px;
		padding-bottom: var(--space-v-m);
		font-size: 17px;
		line-height: 26px;
		letter-spacing: .5px;
		cursor: pointer;
		min-height: 80px
	}
	.p-anchor_itemLink:first-child {
		margin-right: -1px;
	}
	.p-anchor_itemLink:hover:after {
		animation-name: animate_bar;
		animation-duration: .8s;
		animation-timing-function: ease-out
	}
	.p-update {
		width: 100%;
		max-width: 820px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 90px auto 0;
		margin: var(--space-v-xxl) auto 0
	}
	.p-update_heading {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 1px
	}
	.p-update_body {
		margin-top: 5px;
		font-size: 15px;
		line-height: 21px
	}
	.p-update_link {
		padding: 15px 0;
		transition: opacity .6s;
		transition: opacity var(--hover-transition-normal);
		cursor: pointer
	}
	.p-update_link:hover {
		opacity: .6
	}
	.p-update_date {
		width: 70px
	}
	.p-keyword {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 0 auto
	}
	.p-keyword_heading {
		font-size: 24px;
		line-height: 34px;
		letter-spacing: 0.5px
	}
	.p-keyword_description {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		font-size: 15px;
		line-height: 23px;
	}
	.p-keyword_item {
		margin: 30px 0 0 0;
		/*
		margin-top: var(--space-v-l)
		*/
	}
	.p-keyword_item + .p-keyword_item {
		margin-top: 90px;
		margin-top: var(--space-v-xxl)
	}
	.p-keyword_item.-joyful .p-keyword_itemHeadText {
		bottom: 144px;
	}
	.p-keyword_item.-joyful .p-keyword_itemHeadTitle {
		font-size: 32px;
		line-height: 45px;
	}
	.p-keyword_item.-gender-mix .p-keyword_itemHeadText {
		bottom: 144px;
	}
	.p-keyword_item.-gender-mix .p-keyword_itemHeadTitle {
		font-size: 32px;
		line-height: 32px;
		width: 100%
	}
	.p-keyword_itemHead {
		padding-left: 0;
		padding-right: 0
	}
	.p-keyword_itemHeadLink:hover .p-keyword_itemHeadImage img {
		/*transform: scale(1.1)*/
	}
	.p-keyword_itemHeadLink:hover .p-keyword_itemHeadButton {
		background-color: #fff;
		background-color: var(--color-white);
		color: #1f1f1f;
		color: var(--color-black)
	}
	.p-keyword_itemHeadLink:hover .p-keyword_itemHeadButton:after, .p-keyword_itemHeadLink:hover .p-keyword_itemHeadButton:before {
		width: 100%;
		height: 100%
	}
	.p-keyword_itemHeadLink:hover .p-keyword_itemHeadButton:before {
		border-bottom-color: #1f1f1f;
		border-bottom-color: var(--color-black);
		border-left-color: #1f1f1f;
		border-left-color: var(--color-black);
		transition: height .3s, width .3s .3s
	}
	.p-keyword_itemHeadLink:hover .p-keyword_itemHeadButton:after {
		border-top-color: #1f1f1f;
		border-top-color: var(--color-black);
		border-right-color: #1f1f1f;
		border-right-color: var(--color-black);
		transition: height .3s, width .3s .3s
	}
	.p-keyword_itemHeadText {
		top: 30px;
		top: var(--space-v-l)
	}
	.p-keyword_itemHeadTitle {
		font-size: 65px;
		line-height: 65px
	}
	.p-keyword_itemHeadLead {
		font-size: 14px;
		line-height: 10px;
		letter-spacing: 1.5px
	}
	.p-keyword_itemHeadButton {
		bottom: 30px;
		padding: 7px 3px 7px;
		width: 168px;
		font-size: 13px;
		line-height: 16px;
		letter-spacing: .5px
	}
	.p-keyword_itemHeadDescription {
		font-size: 15px;
		line-height: 23px;
		text-align: center;
		padding: 0 10%;
	}
	.p-keyword_itemBody {
		width: 100%;
		max-width: 960px;
		margin: 0 auto
	}
	.p-keyword_itemProductsHead {
		margin-top: 60px;
		margin-top: var(--space-v-xl);
		padding-left: 0;
		padding-right: 0
	}
	.p-keyword_itemProductsHead:after {
		width: 100%
	}
	.p-keyword_itemProductsHeading {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 1px
	}
	.p-keyword_itemProductsAlias {
		display: flex
	}
	.p-keyword_itemRelatedHead {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		padding-left: 0;
		padding-right: 0
	}
	.p-keyword_itemRelatedHead:after {
		width: 100%
	}
	.p-keyword_itemRelatedBody {
		padding-left: 0;
		padding-right: 0;
		display: flex
	}
	.p-keyword_itemRelatedHeading {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 1px
	}
	.p-keyword_itemRelatedLink {
		width: 50%
	}
	.p-keyword_itemRelatedLinkHead {
		width: calc(50% - 20px);
		width: calc(50% - var(--pc-h-l))
	}
	.p-keyword_itemRelatedLinkImage {
		overflow: hidden
	}
	.p-keyword_itemRelatedLinkImage img {
		transition: all .6s;
		transform: scale(1)
	}
	.p-keyword_itemRelatedLink:hover .p-keyword_itemRelatedLinkImage img {
		transform: scale(1.1)
	}
	.p-keyword_itemRelatedLinkHeading {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 1px
	}
	.p-keyword_itemRelatedLinkDescription {
		font-size: 17px;
		line-height: 24px
	}
	.p-look {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 0 auto
	}
	.p-look_heading {
		font-size: 30px;
		line-height: 42px;
		letter-spacing: 1.5px
	}
	.p-look_body {
		margin-top: 30px;
		margin-top: var(--space-v-l);
		margin-left: 0;
		margin-right: 0
	}
	.p-look_item {
		width: calc(25% - 3px);
		margin-right: 4px
	}
	.p-look_item:nth-child(n+3) {
		margin-top: 0
	}
	.p-look_item:nth-child(2n) {
		margin-left: 0
	}
	.p-look_item:nth-child(4n) {
		margin-right: 0
	}
	.p-look_item:nth-child(n+5) {
		margin-top: 4px
	}
	.p-look_itemImage {
		overflow: hidden
	}
	.p-look_itemImage img {
		transition: all .6s;
		transform: scale(1)
	}
	.p-look_link:hover .p-look_itemImage img {
		transform: scale(1.1)
	}
	.p-look_button {
		margin-top: 30px;
		margin-top: var(--space-v-l)
	}
	.p-recommend {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 90px auto 0;
		margin: var(--space-v-xxl) auto 0
	}
	.p-recommend_body {
		margin-top: 30px;
		margin-top: var(--space-v-l)
	}
	.p-recommend_list {
		justify-content: start
	}
	.p-recommend_item {
		width: calc(25% - 30px);
		width: calc(25% - var(--pc-h-xl)*3/4);
		margin-right: 40px;
		margin-right: var(--pc-h-xl)
	}
	.p-recommend_item:nth-child(n+3) {
		margin-top: 0
	}
	.p-recommend_item:nth-child(n+5) {
		margin-top: 40px
	}
	.p-recommend_item:nth-child(4n) {
		margin-right: 0
	}
	.p-recommend_itemHeading {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		margin-left: 0;
		margin-right: 0;
		font-size: 15px;
		line-height: 21px
	}
	.p-recommend_itemLink {
		display: block;
		transition: opacity .6s;
		transition: opacity var(--hover-transition-normal)
	}
	.p-recommend_itemLink:hover {
		opacity: .75
	}
	.p-forGood {
		width: 100%;
		max-width: 1200px;
		padding-left: 20px;
		padding-left: var(--pc-h-l);
		padding-right: 20px;
		padding-right: var(--pc-h-l);
		margin: 90px auto 0;
		margin: var(--space-v-xxl) auto 0
	}
	.p-forGood_body {
		margin-top: 30px;
		margin-top: var(--space-v-l)
	}
	.p-forGood_list {
		justify-content: start
	}
	.p-forGood_item {
		width: calc(25% - 30px);
		width: calc(25% - var(--pc-h-xl)*3/4);
		margin-right: 40px;
		margin-right: var(--pc-h-xl)
	}
	.p-forGood_item:nth-child(n+3) {
		margin-top: 0
	}
	.p-forGood_item:nth-child(n+5) {
		margin-top: 40px
	}
	.p-forGood_item:nth-child(4n) {
		margin-right: 0
	}
	.p-forGood_itemHeading {
		margin-top: 20px;
		margin-top: var(--space-v-m);
		margin-left: 0;
		margin-right: 0;
		font-size: 15px;
		line-height: 21px
	}
	.p-forGood_itemLink {
		display: block;
		transition: opacity .6s;
		transition: opacity var(--hover-transition-normal)
	}
	.p-forGood_itemLink:hover {
		opacity: .75
	}
	ul.p-keyword_list {
		width: 100%;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: flex-start;
	}
	ul.p-keyword_list li {
		width: 49.5%;
		margin: 0;
	}
	ul.p-keyword_list li:nth-child(odd) {
		margin: 0 1% 0 0;
	}
	#_followingMenu.transform {
		position: fixed;
		top: 70px;
		width: 100%;
		background-color: #FFF;
		z-index: 0;
	}
	.-home .l-header[data-is-active=true] .l-header_inner {
		background-color: #FFF;
		z-index: 100;
	}
	.-home .l-header[data-is-active=true] #_followingMenu.transform {
		position: fixed;
		top: 70px;
		width: 100%;
		background-color: #FFF;
		z-index: 0;
	}
}