@charset "UTF-8";

.hp-card-01 {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.hp-card-01 {
		padding: 0 8px;
	}
}

.hp-card-01__img img,
.hp-card-03__img img,
.hp-card-04__img img,
.hp-card-05__img img,
.hp-card-06__img img,
.hp-card-07__img img {
	transition: 0.2s all;
}

@media screen and (max-width: 767px) {
	.hp-card-01__img img,
	.hp-card-03__img,
	.hp-card-04__img,
	.hp-card-05__img img,
	.hp-card-06__img img,
	.hp-card-07__img img {
		transition: 0s all;
	}
}

.hp-card-01:hover .hp-card-01__img img,
.hp-card-03:hover .hp-card-03__img img,
.hp-card-04:hover .hp-card-04__img img,
.hp-card-05:hover .hp-card-05__img img,
.hp-card-06:hover .hp-card-06__img img,
.hp-card-07:hover .hp-card-07__img img {
	opacity: 1 !important;
	transform: scale(1.03) !important;
}

@media screen and (max-width: 767px) {
	.hp-card-01:hover .hp-card-01__img img,
	.hp-card-03:hover .hp-card-03__img img,
	.hp-card-04:hover .hp-card-04__img img,
	.hp-card-05:hover .hp-card-05__img img,
	.hp-card-06:hover .hp-card-06__img img,
	.hp-card-07:hover .hp-card-07__img img {
		transform: scale(1) !important;
	}
}

.hp-card-01__text,
.hp-card-03__text,
.hp-card-04__text,
.hp-card-05__text,
.hp-card-06__text,
.hp-card-06__text-sub,
.hp-card-07__text {
	margin-block-start: 0;
	margin-block-end: 0;
}

.hp-card-01:hover .hp-card-01__text,
.hp-card-03:hover .hp-card-03__text,
.hp-card-04:hover .hp-card-04__text,
.hp-card-05:hover .hp-card-05__text,
.hp-card-06:hover .hp-card-06__text {
	color: var(--link-color);
}

@media screen and (max-width: 767px) {
	.hp-card-01:hover .hp-card-01__text,
	.hp-card-03:hover .hp-card-03__text,
	.hp-card-04:hover .hp-card-04__text,
	.hp-card-05:hover .hp-card-05__text,
	.hp-card-06:hover .hp-card-06__text {
		color: var(--text-color);
	}
}

.hp-card__img--border {
	border: solid 1px var(--border-color);
}

.hp-card-01__img-wrap {
	position: relative;
}

@media screen and (max-width: 767px) {
	.hp-card-01__img-wrap {
		width: 28.4%;
	}
}

.hp-card-01__ranking-icon--01,
.hp-card-01__ranking-icon--02 {
	max-width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	z-index: 1;
}

@media screen and (max-width: 767px) {

	.hp-card-01__ranking-icon--01,
	.hp-card-01__ranking-icon--02 {
		position: absolute;
		width: 35px;
	}
}

.hp-card-01__img {
	border-radius: 6px;
	overflow: hidden;
}

.hp-card-01__img img {
	width: 100%;
}

.hp-card-01__body {
	width: 100%;
	margin-top: 16px;
}

@media screen and (max-width: 767px) {
	.hp-card-01__body {
		width: calc(100% - 28.4% - 16px);
		margin: 0 0 0 16px;
	}
}

.hp-card-01__text {
	color: var(--text-color);
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 8px;
}

@media screen and (max-width: 767px) {
	.hp-card-01__text {
		font-size: var(--sp-font-size);
	}
}

.hp-card-01__ranking-icon--01 {
	top: -32px;
}

@media screen and (max-width: 767px) {
	.hp-card-01__ranking-icon--01 {
		top: -10px;
		left: -8px;
	}
}

.hp-card-01__ranking-icon--02 {
	top: -20px;
}

@media screen and (max-width: 767px) {
	.hp-card-01__ranking-icon--02 {
		top: -8px;
		left: -6px;
	}
}

.hp-card-01:hover .hp-card-01__ranking-icon--01,
.hp-card-01:hover .hp-card-01__ranking-icon--02 {
	opacity: 1 !important;
}

.hp-card__data-wrap {
	width: 100%;
}

.hp-card__data {
	display: inline-block;
	position: relative;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.7;
	margin: 4px 12px 0 0;
	padding-left: 24px;
}

@media screen and (max-width: 767px) {
	.hp-card__data {
		font-size: 13px;
		padding-left: 20px;
	}
}

.hp-card__data:last-child {
	margin-right: 0;
}

.hp-card__data--time::before,
.hp-card__data--calorie::before,
.hp-card__data--salt::before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-size: contain;
}

@media screen and (max-width: 767px) {
	.hp-card__data--time::before,
	.hp-card__data--calorie::before,
	.hp-card__data--salt::before {
		width: 18px;
		height: 18px;
	}
}

.hp-card__data--time::before {
	background-image: url(/common/rwd/images/rn/icon_time.svg);
}

.hp-card__data--calorie::before {
	background-image: url(/common/rwd/images/rn/icon_calorie.svg);
}

.hp-card__data--salt::before {
	background-image: url(/common/rwd/images/rn/icon_salt.svg);
}

.hp-card__product {
	display: block;
	position: relative;
	margin-top: 16px;
	padding: 12px 0;
	background: url(/common/rwd/images/rn/icon_dots_x.svg) repeat-x 1px 1px;
}

@media screen and (max-width: 767px) {
	.hp-card__product {
		background: none;
		padding: 0 0 16px;
	}
}

.hp-card__product::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 4px;
	background-position: left top;
	background: url(/common/rwd/images/rn/icon_dots_x.svg) repeat-x 1px 1px;
}

.hp-card__product:hover {
	text-decoration: none !important;
}

.hp-card__product:hover .hp-card__product__img img {
	opacity: 1;
}

.hp-card__product:hover .hp-card__product__text {
	color: var(--link-color) !important;
	text-decoration: underline !important;
}

@media screen and (max-width: 767px) {
	.hp-card__product:hover .hp-card__product__text {
		color: var(--text-color) !important;
		text-decoration: none !important;
	}
}

.hp-card__product-title,
.hp-card__product__text {
	color: var(--text-color);
	margin-block-start: 0;
	margin-block-end: 0;
}

.hp-card__product-title {
	font-size: 12px;
	font-weight: bold;
	list-style: 1.8;
	margin-left: 6px;
}

.hp-card__product__body {
	display: flex;
	align-items: center;
	margin-top: 4px;
}

.hp-card__product__img {
	width: 54px;
	height: 54px;
	text-align: center;
}

.hp-card__product__img img {
	max-height: 54px !important;
}

.hp-card__product__text {
	width: calc(100% - 62px);
	font-size: 14px;
	line-height: 1.4;
	margin-left: 8px;
}

.hp-card-02,
.hp-card-02__title,
.hp-card-02__text {
	position: relative;
}

.hp-card-02__title,
.hp-card-02__text {
	z-index: 1;
}

.hp-card-02 {
	box-sizing: border-box;
	border: 1px solid var(--main-color);
	padding: 4px;
}

.hp-card-02__body {
	box-sizing: border-box;
	height: 100%;
	padding: 27px 15px;
	border: 1px dotted var(--main-color);
}

@media screen and (max-width: 767px) {
	.hp-card-02__inner {
		height: 180px;
	}
}

.hp-card-02__title {
	color: var(--main-color);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	margin: 0 0 20px;
	padding-bottom: 12px;
}

.hp-card-02__title::after {
	position: absolute;
	content: '';
	width: 40px;
	height: 2px;
	bottom: 0;
	left: 50%;
	background: var(--main-color);
	transform: translateX(-50%);
}

.hp-card-02__text {
	color: var(--text-color);
	font-size: var(--pc-font-size);
	line-height: 1.75;
	text-align: center;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.hp-card-02__text {
		font-size: var(--sp-font-size);
		line-height: var(--sp-line-height);
	}
}

.hp-card-02__text--title {
	font-size: 18px;
	line-height: 1.56;
}

@media screen and (max-width: 767px) {
	.hp-card-02__text--title {
		font-size: var(--pc-font-size);
		line-height: 1.5;
	}
}

.hp-card-02__text+.hp-card-02__text {
	margin-top: 12px;
}

.hp-card-03 {
	display: block;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.hp-card-03:hover {
		text-decoration: none !important;
	}
}

.hp-card-03__img {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

.hp-card-03__img img {
	max-width: unset;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.hp-card-03__text {
	color: var(--text-color);
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.5;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-top: 16px;
}

@media screen and (max-width: 767px) {
	.hp-card-03__text {
		font-size: var(--sp-font-size);
		margin-top: 12px;
	}
}

.hp-card-03[target="_blank"] .hp-card-03__text {
	display: inline-block;
	position: relative;
}

.hp-card-03[target="_blank"] .hp-card-03__text::after {
	display: inline-block;
	position: relative;
	content: '';
	width: 18px;
	height: 18px;
	top: 0.2em;
	right: -8px;
	background: url(/common/rwd/images/rn/icon_blank_red.svg) no-repeat center center / contain;
}

.hp-card-03--fixed .hp-card-03__img {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: inherit;
}

.hp-card-03--fixed .hp-card-03__img img {
	width: auto !important;
	height: auto;
	max-width: 100% !important;
	max-height: 100% !important;
}

@media screen and (max-width: 767px) {
	.hp-card-03--fixed .hp-card-03__img img {
		max-height: 120px;
	}
}

.hp-card-03--fixed .hp-card-03__text {
	text-align: center;
}

.hp-card-03--cm figure {
	margin-bottom: 0 !important;
}

.hp-card-03--cm figure .hp-card-03--cm__img {
	width: 100%;
	height: 0 !important;
	padding-top: 57.5%;
	border-radius: 6px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% 100%;
	overflow: hidden;
}

.hp-card-03--cm .hp-card-03__text {
	margin-top: 16px;
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	.hp-card-03--cm .hp-card-03__text {
		margin-top: 12px;
		font-size: var(--sp-font-size);
		line-height: var(--sp-line-height);
	}
}

.hp-card-03--cm .hp-card-03--cm__text {
	display: none;
	color: var(--text-color) !important;
	font-size: var(--sp-font-size);
	font-weight: normal;
	line-height: 1.43;
	margin-top: 7px;
}

@media screen and (max-width: 767px) {
	.hp-card-03--cm .hp-card-03--cm__text {
		font-size: 12px;
		line-height: 1.67;
	}
}

.hp-card-03--cm:hover .hp-card-03__text,
.hp-card-03--cm:hover .hp-card-03--cm__text {
	color: var(--text-color);
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.hp-card-03--cm:hover .hp-card-03__text,
	.hp-card-03--cm:hover .hp-card-03--cm__text {
		text-decoration: none !important;
	}
}

@media screen and (max-width: 767px) {
	.mainContents .hp-card-03--cm:hover {
		text-decoration: none !important;
	}

	.mainContents .hp-card-03--cm:hover img {
		opacity: 1 !important;
	}
}

.hp-card-04 {
	display: block;
	height: 100%;
	padding: 16px 4px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.hp-card-04 {
		padding: 12px 0px;
	}
}

.hp-card-04:hover {
	border: 1px solid var(--link-color);
}

@media screen and (max-width: 767px) {
	.hp-card-04:hover {
		border: 1px solid var(--border-color);
		text-decoration: none !important;
	}
}

.hp-card-04[target="_blank"] .hp-card-04__text {
	position: relative;
}

.hp-card-04[target="_blank"] .hp-card-04__text::after {
	display: inline-block;
	position: relative;
	content: '';
	width: 18px;
	height: 18px;
	top: 0.25em;
	right: -8px;
	background: url(/common/rwd/images/rn/icon_blank_red.svg) no-repeat center center / contain;
}

.hp-card-04__img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 72%;
	height: 150px;
	margin: 0 auto;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.hp-card-04__img {
		height: 125px;
		max-width: 150px;
		padding: 0 7px;
	}
}

.hp-card-04__img img {
	max-height: 100%;
	width: auto;
	height: auto;
}

@media screen and (min-width: 768px) {
	.hp-card-04--small .hp-card-04__img {
		max-width: 78%;
		height: 120px;
	}
}

@media screen and (min-width: 768px) {
	.hp-card-04--small .hp-card-04__img img {
		max-width: 100%;
		width: auto;
		max-height: 100%;
	}
}

.hp-card-04__text {
	min-height: 2.75em;
	color: var(--text-color);
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.375;
	text-align: center;
	margin: 16px 8px 0;
}

@media screen and (max-width: 767px) {
	.hp-card-04__text {
		font-size: var(--sp-font-size);
		margin: 12px 8px 0;
	}
}

.hp-card-05 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.hp-card-05:hover img {
	opacity: 1 !important;
	transform: scale(1.1) !important;
}

@media screen and (max-width: 767px) {
	.hp-card-05:hover {
		text-decoration: none !important;
	}
}

.hp-card-05__img {
	max-width: 210px;
	max-height: 158px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.hp-card-05__img {
		height: 120px;
	}
}

.hp-card-05__img img {
	max-height: 100%;
	width: auto;
}

.hp-card-05__body {
	padding: 16px 8px 0;
}

@media screen and (max-width: 767px) {
	.hp-card-05__body {
		padding: 12px 0 0;
	}
}

.hp-card-05__text {
	margin: 0;
	color: var(--text-color);
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.38;
	text-align: center;
	transition: 0.2s all;
}

@media screen and (max-width: 767px) {
	.hp-card-05__text {
		font-size: var(--sp-font-size);
		line-height: 1.43;
	}
}

.hp-card-05:hover .hp-card-05__text {
	color: var(--link-color) !important;
}

@media screen and (max-width: 767px) {
	.hp-card-05:hover .hp-card-05__text {
		color: var(--text-color) !important;
	}
}

.hp-card-06 {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.hp-card-06 {
		padding: 0;
	}
}

@media screen and (max-width: 767px) {
	.hp-card-06.hp-card-sp-border {
		align-items: flex-start;
		position: relative;
		padding: 16px 0;
		background: url(/common/rwd/images/rn/icon_dots_x.svg) repeat-x 1px 1px;
	}

	.hp-card-group__item .hp-card-sp-border::after {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 4px;
		background-position: left top;
		background: url(/common/rwd/images/rn/icon_dots_x.svg) repeat-x 1px 1px;
	}

	.hp-card-group__item + .hp-card-group__item .hp-card-sp-border {
		background: none;
	}
}

.hp-card-06__img {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.hp-card-06__img {
		width: 44%;
	}
}

.hp-card-06__img img {
	width: 100%;
	height: auto;
}

.hp-card-06__body {
	width: 100%;
	margin-top: 16px;
}

@media screen and (max-width: 767px) {
	.hp-card-06__body {
		width: calc(100% - 44% - 12px);
		margin: 0 0 0 12px;
	}
}

.hp-card-06__text {
	color: var(--text-color);
	font-size: var(--pc-font-size);
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 8px;
}

@media screen and (min-width: 768px) {
	.hp-card-group--4col-01 .hp-card-06__text {
		min-height: 3em;
	}
}

@media screen and (max-width: 767px) {
	.hp-card-06__text {
		font-size: var(--sp-font-size);
	}
}

.hp-card-06__text-sub {
	color: var(--text-color);
	font-size: var(--pc-font-size);
	line-height: 1.7;
	margin-top: 16px;
}

@media screen and (max-width: 767px) {
	.hp-card-06__text-sub {
		font-size: var(--sp-font-size);
	}
}

.hp-card-06:hover {
	text-decoration: none !important;
}

.hp-card-06:hover .hp-card-06__text {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.hp-card-06:hover .hp-card-06__text {
		text-decoration: none;
	}
}

.hp-card-group--4col-01 .hp-card-06 .hp-card-06__img {
	position: relative;
	max-height: 173px;
	height: 15.283vw;
}

@media screen and (min-width: 768px) {
	.hp-card-group--4col-01 .hp-card-06 .hp-card-06__img {
		max-height: 173px;
	}
}

@media screen and (max-width: 767px) {
	.hp-card-group--4col-01 .hp-card-06 .hp-card-06__img {
		width: 44%;
		height: 28.27vw;
	}
}

.hp-card-group--4col-01 .hp-card-06 .hp-card-06__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	vertical-align: bottom;
}

.hp-card-group--4col-01 .hp-card-06 .hp-card-06__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	vertical-align: bottom;
}

.hp-card-group--4col-01 .hp-card-06:hover .hp-card-06__img img {
	opacity: 1 !important;
	transform: translate(-50%, -50%) scale(1.03, 1.03) !important;
}

@media screen and (max-width: 767px) {
	.hp-card-group--4col-01 .hp-card-06:hover .hp-card-06__img img {
		transform: translate(-50%, -50%) scale(1) !important;
	}
}

.hp-card-07:hover .hp-card-07__text {
	color: var(--text-color);
}

.hp-card-07:hover {
	text-decoration: none !important;
}

.hp-card-07:hover .hc-heading-03__link {
	color: var(--link-color) !important;
	text-decoration: underline !important;
}

@media screen and (max-width: 767px) {
	.hp-card-07:hover .hc-heading-03__link {
		color: var(--text-color) !important;
		text-decoration: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hp-card-07 a:hover {
		text-decoration: none !important;
	}
}

.hp-card-07 .hc-heading-03 {
	margin-top: 0;
}

.hp-card-07__text {
	color: var(--text-color);
}

.hp-card-07__text + .hp-card-07__text {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.hp-card-07__text + .hp-card-07__text {
		margin-top: 10px;
	}
}

.hp-card-07 .hc-heading-03__link {
	height: 100%;
	display: block;
}

.hp-card-07__img {
	overflow: hidden;
	border-radius: 6px;
}

.hp-card-07__img img {
	width: 100%;
	max-width: none;
}

.hp-card-07__body {
	margin-top: 24px;
}

.hp-card-label::before {
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	margin-right: 5px;
	padding: 0 9px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.67;
	border-radius: 4px;
}

.hp-card-label--new::before {
	content: "NEW";
	background: var(--main-color);
}

.hp-card-label--knowledge::before {
	content: "知識";
	background: #FF8D1A;
}

.hp-card-label--skill::before {
	content: "スキル";
	background: #0A9840;
}

@media screen and (max-width: 767px) {
	.hp-card-group--product .hp-card-04__img {
		max-width: 170px;
		padding: 0;
	}
}


/* test.html */
.hp-card-03--blank .hp-card-03__text {
	display: inline-block;
	position: relative;
}

.hp-card-03--blank .hp-card-03__text::after {
	display: inline-block;
	position: relative;
	content: '';
	width: 18px;
	height: 18px;
	top: 0.2em;
	right: -8px;
	background: url(/common/rwd/images/rn/icon_blank_red.svg) no-repeat center center / contain;
}