@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(60px);
		transform: translateY(60px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(60px);
		transform: translateY(60px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes loading {
	50% {
		opacity: .1;
	}
}

@keyframes loading {
	50% {
		opacity: .1;
	}
}

.fadeIn {
	opacity: 0;
}

.fadeIn.-animate {
	display: block;
	-webkit-animation: fadeIn 1s ease-in-out 0s both;
	animation: fadeIn 1s ease-in-out 0s both;
}

.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(60px);
	-ms-transform: translateY(60px);
	transform: translateY(60px);
}

.fadeInUp.-animate {
	display: block;
	-webkit-animation: fadeInUp 1s ease-in-out 0s both;
	animation: fadeInUp 1s ease-in-out 0s both;
}

.diag-loadsvg {
	display: none;
}

.diag-content {
	position: relative;
	min-height: calc(100vh - 100px);
	line-height: 1.38;
}

.diag-content .diag-check {
	position: relative;
	display: inline-block;
	padding-left: 27px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%23e2d9c2%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.52%22%20d%3D%22M4.21%209.9l3.36%203.36%207.8-6.79%22%2F%3E%3C%2Fsvg%3E");
	background-position: 0 3px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

.diag-content .diag-check.-selected {
	background: 0 0 no-repeat;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%238a7149%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.52%22%20d%3D%22M4.21%209.9l3.36%203.36%207.8-6.79%22%2F%3E%3C%2Fsvg%3E");
	background-position: 0 3px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

.diag-content .-selected .diag-check {
	background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%238a7149%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.52%22%20d%3D%22M4.21%209.9l3.36%203.36%207.8-6.79%22%2F%3E%3C%2Fsvg%3E") 0 3px no-repeat;
	background-size: 20px 20px;
}

.diag-content .cmd-box_container > .box {
	margin-left: 12px;
}

.diag-question-wrap {
	position: relative;
	min-height: 600px;
	height: calc(100vh - 130px);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.is-scroll .diag-question-wrap, .is-scroll .diag-loading {
	margin-top: 80px;
	height: calc(100vh - 80px);
}

.diag-intro {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff url(../images/intro-bg.jpg) 30% 50% no-repeat;
	background-size: cover;
}

.diag-intro .diag-intro-txt {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	-ms-flex-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0 0;
	padding: 12% 0;
	width: 55%;
	height: 100%;
	text-align: center;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.diag-intro .diag-intro-txt .diag-intro-logo {
	padding-bottom: 10%;
}

.diag-intro .diag-intro-txt .diag-intro-logo svg {
	width: 260px;

	fill: #000;
}

.diag-intro .diag-intro-txt p {
	font-size: 2.2rem;
	font-family: "Cronos Pro LtDisp", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	line-height: 2;
}

.diag-question {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.diag-question.-animate {
	display: block;
}

.diag-question .diag-question-back {
	position: absolute;
	top: 40px;
	left: 30px;
	padding-left: 14px;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%209.83%2013.19%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.75%22%20d%3D%22M9.45.7L.67%206.59l8.78%205.89V.7z%22%2F%3E%3C%2Fsvg%3E") 0 40% no-repeat;
	background-size: 8px 10px;
	text-decoration: none !important;
	font-size: 1.2rem;
	font-family: "Cronos Pro LtDisp", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.diag-question .diag-question-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	-ms-flex-align: center;
	margin: auto;
	max-width: 100%;
	width: 1200px;
	height: 100%;
	text-align: center;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.diag-question .diag-question-inner p, .diag-question .diag-question-inner li {
	line-height: 1.38;
}

.diag-question .diag-question-header h1 {
	margin-bottom: 30px;
	font-size: 4.5rem;
}

.diag-question .diag-question-selectlist {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	margin: 10px 0 60px;
	width: 100%;
	opacity: 0;
	-webkit-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px);

	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.diag-question .diag-question-selectlist li {
	position: relative;
	width: 25%;
}

.diag-question .diag-question-selectlist li a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
}

.diag-question .diag-question-selectlist li a figure {
	position: relative;
	margin: 0 auto 20px;
	max-width: 234px;
}

.diag-question .diag-question-selectlist li a figure:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 140px;
	height: 140px;
	border: 1px solid #000;
	content: "";
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.diag-question .diag-question-selectlist li a figure:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 140px;
	height: 140px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	content: "";
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.diag-question .diag-question-selectlist li a figure img[src*=".png"] {
	position: relative;
	left: 50%;
	max-width: 234px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: translateX(-43%);
	-ms-transform: translateX(-43%);
	transform: translateX(-43%);
}

.diag-question .diag-question-selectlist li a figure img[src*=".svg"] {
	position: relative;
	display: block;
	margin: auto;
	max-width: 100px;
	width: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.diag-question .diag-question-selectlist li a p {
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	font-size: 1.6rem !important;
}

.diag-question .diag-question-selectlist li a.-noselect figure img[src*=png], .diag-question .diag-question-selectlist li a.-unavailable figure img[src*=png] {
	opacity: .75;
	-webkit-filter: grayscale(100%) brightness(1.2) contrast(85%);
	filter: grayscale(100%) brightness(1.2) contrast(85%);
}

.diag-question .diag-question-selectlist li a.-noselect figure img[src*=svg], .diag-question .diag-question-selectlist li a.-unavailable figure img[src*=svg] {
	opacity: .3;
}

.diag-question .diag-question-selectlist li a.-unavailable {
	opacity: .6;
	cursor: not-allowed;
}

.diag-question .diag-question-selectlist li a.-unavailable .diag-check {
	padding: 0;
	background-image: none;
}

.diag-question .diag-question-selectlist li .notice {
	position: absolute;
	right: 0;
	bottom: -30px;
	left: 0;
	margin: auto;
	letter-spacing: 0;
	font-size: .9rem;
}

.diag-question.-unselectable .diag-question-selectlist li a {
	cursor: default;
}

.diag-question#diag-tone.diag-question .diag-question-selectlist li {
	width: 22%;
}

.diag-question#diag-finish.diag-question .diag-question-selectlist li {
	width: 30%;
}

.diag-question#diag-coverage.diag-question .diag-question-selectlist li {
	width: 30%;
}

.diag-question#diag-concern.diag-question .diag-question-selectlist li {
	margin: 15px 0;
	width: 33%;
}

.diag-question#diag-concern.diag-question .diag-question-selectlist li figure:before {
	width: 100px;
	height: 100px;
}

.diag-question#diag-concern.diag-question .diag-question-selectlist li figure:after {
	display: none;
}

.diag-question-steps {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	margin: 30px auto 0;
	max-width: 100%;
	width: 550px;
	text-align: center;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.diag-question-steps > div {
	width: 100px;
	color: #000;
	letter-spacing: .05em;
	font-size: 1rem;
	opacity: .4;
}

.diag-question-steps > div span {
	position: relative;
	display: block;
	margin-top: 2px;
	padding-top: 4px;
	border-top: 1px solid #000;
}

.diag-question-steps > div span:after {
	position: absolute;
	top: -9px;
	right: 0;
	display: block;
	width: 0;
	height: 8px;
	border-right: 1px solid #000;
	content: "";
	-webkit-transform: skewX(45deg);
	-ms-transform: skewX(45deg);
	transform: skewX(45deg);
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.diag-question-steps > div.-active {
	opacity: 1;
}

.diag-loading {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 340px;
	width: 100%;
	height: calc(100vh - 130px);
	background-color: #fff;
}

.diag-loading.-animate {
	display: block;
}

.diag-loading .diag-loading-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	-ms-flex-align: center;
	margin: auto;
	max-width: 100%;
	width: 1200px;
	height: 100%;
	text-align: center;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.diag-loading p {
	margin-top: -50px;
}

.diag-loading p svg {
	width: 106px;
}

.diag-loading p span {
	display: block;
	margin-top: 30px;
	-webkit-animation-name: loading;
	animation-name: loading;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-play-state: running;
	animation-play-state: running;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	animation-direction: normal;

	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.diag-result:not(:first-child) {
	margin-top: 100px;
}

.diag-result-content {
	position: relative;
	z-index: -99;
	visibility: hidden;
	overflow: hidden;
	height: 0;
}

.diag-result-content.-visible {
	z-index: 1;
	display: block;
	visibility: visible;
	height: auto;
	-webkit-animation: fadeIn 1s linear 1s both;
	animation: fadeIn 1s linear 1s both;
}

.diag-result-content .cmd-products_card a {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.diag-result-content .cmd-products_card p.item-name {
	margin-bottom: 8px;
	min-height: 2.2em;
}

.diag-result-content .cmd-products_card p.item-name_sub {
	color: #888;
}

.diag-result-content .cmd-products_card p.item-color {
	margin-top: 10px;
	min-height: 28px;
	text-align: center;
	line-height: 0 !important;
}

.diag-result-content .cmd-products_card p.item-color .item-swatch {
	display: inline-block;
	margin: 0 2px 4px;
}

.diag-result-content .cmd-products_card p.item-color img {
	width: 14px;
	height: 14px;
}

.diag-result-content .cmd-products_card p.item-price {
	display: none;
	margin-top: 15px;
	height: 1em;
	font-size: 1.3rem;
}

.diag-result-content .diag-result-ttl {
	margin-bottom: 80px;
	padding: 25px 20px;
	background-color: #f7f3ec;
	text-align: center;
	font-weight: 300;
	font-size: 3rem;
}

.diag-result-content .diag-result-ttl ol {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	-ms-flex-align: end;
	margin: 20px auto 0;

	-webkit-align-items: flex-end;
	align-items: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}

.diag-result-content .diag-result-ttl ol li {
	text-align: left;
	letter-spacing: .05em;
	line-height: 1.38;

	-webkit-font-variant-ligatures: initial;
	font-variant-ligatures: initial;
}

.diag-result-content .diag-result-ttl ol li:not(:last-child) {
	margin-right: 3.5%;
}

.diag-result-content .diag-result-ttl ol li a {
	text-decoration: none;
}

.diag-result-content .diag-result-ttl ol li small {
	display: block;
	margin-bottom: 3px;
	font-size: 1.3rem;
}

.diag-result-content .diag-result-ttl ol li div {
	font-size: 1.7rem;
}

.diag-result-content .diag-result-ttl ol li div span {
	text-decoration: underline;
}

.diag-result-content .diag-result-ttl ol li.result-back a {
	color: #8a7149;
}

.diag-result-content .diag-result-ttl-s {
	margin: 0 20px 80px;
	text-align: center;
}

.diag-result-content .diag-result-wrap {
	/* the parent */
}

.diag-result-content .diag-result-wrap .cmd-box_container > .box {
	display: block;
}

.diag-result-content .diag-result-wrap .cmd-box_container > .box > div {
	margin-top: 0;
}

.diag-result-content .diag-result-wrap .cmd-products_card > a {
	display: block !important;
	padding-bottom: 0;
	max-width: 100%;
	height: auto;
	text-align: center;
}

.diag-result-content .diag-result-wrap .cmd-products_card > a .thumb {
	display: inline-block;
	overflow: hidden;
	margin-bottom: 10px;
	padding: 2px;
	padding-top: 0;
	min-height: 200px;
	max-width: 100%;
	width: auto;
	background-color: #f5f5f5;
	vertical-align: top;
}

.diag-result-content .diag-result-wrap .cmd-products_card > a .thumb img {
	max-width: 100%;
	width: 270px;
}

.diag-result-content .diag-result-wrap .cmd-products_card > a .thumb img.thumb-hidden {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	visibility: hidden;
	pointer-events: none;
}

.diag-result-content .diag-result-wrap .cmd-products_card .txtarea {
	margin-bottom: 10px;
}

.diag-result-content .diag-result-wrap .slick-list {
	margin: 0 -3px;
}

.diag-result-content .diag-result-wrap .cmd-slide {
	padding: 0 3px;
}

.diag-result-content .diag-result-wrap .diag-result-banner {
	margin-top: 80px;
	text-align: center;
}

.diag-result-content #diag-result-recommend {
	padding: 0;
}

.diag-result-content #diag-result-recommend .diag-result-ttl h2 {
	font-size: 2rem;
}

.diag-result-content #diag-result-recommend .cmd-box_container {
	-ms-flex-pack: center;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box > div {
	margin-top: 0;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 10px;
	height: 4em;
	text-align: center;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl:before {
	position: absolute;
	bottom: -6px;
	left: 50%;
	z-index: 2;
	display: block;
	margin-left: -7px;
	width: 14px;
	height: 14px;
	background-color: #e2d9c2;
	content: "";
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl:after {
	position: absolute;
	right: -12px;
	bottom: 0;
	left: 0;
	display: block;
	height: 1px;
	background-color: #e2d9c2;
	content: "";
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box:last-child .recommend-box-ttl:after {
	right: 0;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider {
	position: relative;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_dots {
	margin: 0;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_dots .slick-dots {
	position: absolute;
	top: calc(50% + 50px);
	right: 0;
	left: 0;
	margin: 0;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow {
	top: calc(50% + 63px);
	z-index: 1;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow .slick-prev {
	left: 25%;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow .slick-next {
	right: 25%;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	overflow: hidden;

	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card > a {
	letter-spacing: .05em;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card p.item-name_sub {
	font-size: 1.3rem !important;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card .cmd-products_card_submit + .cmd-products_card_submit {
	margin-top: 15px !important;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card .cmd-products_card_submit a {
	font-size: 1.3rem;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-foundation .thumb {
	padding: 0;
	border: 2px solid #e2d9c2;
	background-color: #fff;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-foundation .thumb img {
	padding: 0;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-accessories .result-accessories-wrap {
	position: relative;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-accessories .cmd-slider0 > .slick-list > .slick-track {
	-webkit-transform: translate3d(0, 0, 0) !important;
	transform: translate3d(0, 0, 0) !important;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-accessories .cmd-slider0 > .slick-list > .cmd-slider_arrow {
	display: none;
}

.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-accessories .cmd-slider0 > .slick-list .slick-list {
	margin: 0;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .diag-result-subttl {
	margin: 0 auto 25px;
	padding: 8px;
	max-width: 590px;
	width: 97.5%;
	background-color: rgba(247, 243, 236, .5);
	text-align: center;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .slick-list {
	margin: 0;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .slick-arrow {
	z-index: 1;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .cmd-slide {
	padding: 0 !important;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .cmd-products_card {
	margin: 0 3px;
	padding: 0 3px;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap .cmd-products_card .item-color {
	display: none;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap #result-remover .cmd-slide {
	padding: 0;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap #result-remover .cmd-products_card {
	width: calc(100% - 6px) !important;
}

.diag-result-content #diag-result-removercleanser .diag-result-wrap #result-cleanser .cmd-slide {
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-pack: distribute;
	margin: 0 !important;

	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.diag-result-content #diag-result-special .diag-result-ttl ol li:not(:last-child) {
	margin-right: 1.8%;
}

.diag-result-content #diag-result-special .diag-result-ttl ol li div {
	letter-spacing: 0;
	font-size: 1.7rem;
}

@media screen and (min-width: 768px) and (max-height: 640px) {
	.diag-question-wrap .diag-question-selectlist {
		margin-bottom: 30px;
	}

	.diag-question-wrap .diag-question-steps {
		margin-top: 10px;
	}
}

@media screen and (min-width: 768px) {
	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider {
		min-height: calc(100% - 4em - 40px);
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card {
		min-height: calc(100% - 4em - 40px);
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card .thumb {
		margin-bottom: 54px;
	}
}

@media screen and (min-width: 993px) {
	.diag-content .cmd-box_container.box-md-5 > .box {
		width: calc(20% - 12px);
	}

	.diag-question#diag-tone.diag-question .diag-question-selectlist li a figure {
		width: 190px;
	}

	.diag-question#diag-tone.diag-question .diag-question-selectlist li a figure:before, .diag-question#diag-tone.diag-question .diag-question-selectlist li a figure:after {
		width: 120px;
		height: 120px;
	}

	.diag-question#diag-tone.diag-question .diag-question-selectlist li a figure img[src*=png] {
		max-width: 190px;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-products_card .cmd-products_card_submit a {
		min-height: 32px;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;

		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-remover {
		width: 50%;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-remover .cmd-products_card {
		width: 100%;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-cleanser {
		width: 50%;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-cleanser .cmd-products_card {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.fadeIn.-animate {
		-webkit-animation: fadeIn .7s ease-in-out 0s both;
		animation: fadeIn .7s ease-in-out 0s both;
	}

	.fadeInUp.-animate {
		-webkit-animation: fadeInUp .7s ease-in-out 0s both;
		animation: fadeInUp .7s ease-in-out 0s both;
	}

	.diag-content {
		min-height: 420px;
	}

	.diag-content .diag-check {
		padding-left: 12px;
		background-size: 9px 9px;
	}

	.diag-content .diag-check.-selected {
		background-size: 9px 9px;
	}

	.diag-content .-selected .diag-check {
		background-size: 9px 9px;
	}

	.diag-question-wrap {
		min-height: 420px;
		height: calc(100vh - 140px);
	}

	.diag-intro {
		height: calc(100%);
		background: url(../images/intro-bg_sp.jpg) 50% 0% no-repeat;
		background-size: cover;
	}

	.diag-intro .diag-intro-txt {
		position: absolute;
		bottom: 40px;
		-ms-flex-pack: end;
		margin: 0;
		padding: 0;
		width: 100%;
		height: auto;
		color: #fff;

		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}

	.diag-intro .diag-intro-txt .diag-intro-logo {
		display: none;
	}

	.diag-intro .diag-intro-txt .diag-intro-logo svg {
		width: 86px;

		fill: #fff;
	}

	.diag-intro .diag-intro-txt .diag-intro-logo svg path {
		fill: #fff;
	}

	.diag-intro .diag-intro-txt p {
		font-size: 1.6rem !important;
	}

	.diag-question {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-pack: distribute;
		-ms-flex-align: center;
		padding: 20px 20px 10px;
		text-align: center;

		-webkit-align-items: center;
		align-items: center;
		-webkit-box-align: center;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}

	.diag-question.-animate {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.diag-question .diag-question-back {
		top: 10px;
		left: 10px;
	}

	.diag-question .diag-question-header {
		padding-top: 0;
	}

	.diag-question .diag-question-header h1 {
		margin-bottom: 10px;
		font-size: 3rem;
	}

	.diag-question .diag-question-txt {
		font-size: 1.4rem;
	}

	.diag-question .diag-question-selectlist {
		margin: 20px 0;
	}

	.diag-question .diag-question-selectlist li:not(:last-child) {
		margin-bottom: 10px;
	}

	.diag-question .diag-question-selectlist li a figure {
		margin-bottom: 8px;
		max-width: 100px;
	}

	.diag-question .diag-question-selectlist li a figure:before {
		width: 60px;
		height: 60px;
	}

	.diag-question .diag-question-selectlist li a figure:after {
		width: 60px;
		height: 60px;
	}

	.diag-question .diag-question-selectlist li a figure img[src*=".png"] {
		max-width: 100px;
	}

	.diag-question .diag-question-selectlist li a figure img[src*=".svg"] {
		max-width: 60px;
	}

	.diag-question .diag-question-selectlist li a p {
		font-size: 1.2rem !important;
	}

	.diag-question .diag-question-selectlist li .notice {
		right: 15px;
		bottom: -10px;
		left: 15px;
	}

	.diag-question#diag-tone.diag-question .diag-question-selectlist li {
		width: 50%;
	}

	.diag-question#diag-finish.diag-question .diag-question-selectlist li {
		width: 100%;
	}

	.diag-question#diag-coverage.diag-question .diag-question-selectlist li {
		width: 100%;
	}

	.diag-question#diag-concern.diag-question .diag-question-selectlist {
		margin: 10px 0;
	}

	.diag-question#diag-concern.diag-question .diag-question-selectlist li {
		margin: 8px 0;
	}

	.diag-question#diag-concern.diag-question .diag-question-selectlist li figure:before {
		width: 60px;
		height: 60px;
	}

	.diag-question#diag-concern.diag-question .diag-question-selectlist li {
		width: 40%;
	}

	.diag-question-steps {
		bottom: 0;
		-ms-flex-pack: center;
		margin-top: 0;
		width: 100%;

		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}

	.diag-question-steps > div {
		margin: 0 10px;
		width: 82px;
		font-size: .9rem;
		line-height: 1.2;
	}

	.diag-loading {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-pack: distribute;
		-ms-flex-align: center;
		height: calc(100vh - 100px);
		text-align: center;

		-webkit-align-items: center;
		align-items: center;
		-webkit-box-align: center;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}

	.diag-loading.-animate {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.diag-result:not(:first-child) {
		margin-top: 50px;
	}

	.diag-result-content .cmd-products_card p.item-color {
		min-height: auto;
	}

	.diag-result-content .cmd-products_card p.item-price {
		height: auto;
	}

	.diag-result-content .diag-result-ttl {
		margin-bottom: 30px;
		padding: 0;
	}

	.diag-result-content .diag-result-ttl h2 {
		padding: 10px;
		background-color: #8a7149;
		color: #fff;
		font-size: 2rem;
	}

	.diag-result-content .diag-result-ttl ol {
		margin: auto;
		padding: 16px 10px;
	}

	.diag-result-content .diag-result-ttl ol li {
		margin: 4px 0;
	}

	.diag-result-content .diag-result-ttl ol li small {
		font-size: 1.1rem;
	}

	.diag-result-content .diag-result-ttl ol li div {
		font-size: 1.2rem;
	}

	.diag-result-content .diag-result-ttl ol li div .diag-check {
		background-position: 0 4px;
	}

	.diag-result-content .diag-result-ttl ol li div .diag-check.-selected {
		background-position: 0 4px;
	}

	.diag-result-content .diag-result-ttl-s {
		margin-bottom: 30px;
		font-size: 1.4rem;
	}

	.diag-result-content .diag-result-wrap .diag-result-banner {
		margin-top: 40px;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box {
		position: relative;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:before {
		position: absolute;
		bottom: auto;
		left: -18px;
		display: block;
		margin-top: 5px;
		width: 11px;
		height: 11px;
		background-color: #e2d9c2;
		content: "";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:after {
		position: absolute;
		top: 6px;
		right: auto;
		bottom: -36px;
		left: -13px;
		display: block;
		width: 1px;
		height: calc(100% + 36px);
		background-color: #e2d9c2;
		content: "";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:nth-child(1) .recommend-box-ttl:after {
		content: "STEP1";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:nth-child(2) .recommend-box-ttl:after {
		content: "STEP2";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:nth-child(3) .recommend-box-ttl:after {
		content: "STEP3";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:nth-child(4) .recommend-box-ttl:after {
		content: "STEP4";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:nth-child(5) .recommend-box-ttl:after {
		content: "STEP5";
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box:last-child:after {
		display: none;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl {
		position: inherit;
		margin-bottom: 20px;
		padding-bottom: 0;
		height: auto;
		text-align: left;
		font-size: 1.6rem;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl:before {
		display: none;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .recommend-box-ttl:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: auto;
		left: auto;
		width: auto;
		height: auto;
		background-color: transparent;
		font-size: 1.2rem;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-products_card .thumb {
		margin-bottom: 54px;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_dots .slick-dots {
		top: 296px !important;
		bottom: auto;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow {
		position: absolute;
		top: 302px !important;
		bottom: auto;
		display: block;
		width: 100%;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow .slick-prev {
		top: auto;
		left: 32%;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box .cmd-section_slider .cmd-slider_arrow .slick-next {
		top: auto;
		right: 32%;
	}

	.diag-result-content #diag-result-recommend .cmd-box_container > .box#result-accessories .cmd-products_card p.item-color {
		height: auto;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap .diag-result-subttl {
		margin-bottom: 0;
		font-size: 1.6rem;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-cleanser {
		margin-top: 30px;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap #result-cleanser .cmd-slide {
		display: block;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap .cmd-products_card {
		margin-top: 30px;
	}

	.diag-result-content #diag-result-special .diag-result-ttl ol li:not(:last-child) {
		margin-right: 3%;
	}

	.diag-result-content #diag-result-special .diag-result-ttl ol li div {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 992px) and (min-width: 768px) {
	.diag-content .cmd-box_container.box-sm-3 > .box {
		width: calc(33.33333% - 12px);
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-remover, .diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-cleanser {
		margin: auto;
		width: 66%;
	}

	.diag-result-content #diag-result-removercleanser .diag-result-wrap > .cmd-section #result-cleanser {
		margin-top: 30px;
	}
}
