@charset "UTF-8";
/* ---------------------------------------
  トップページ
-----------------------------------------*/
/* sec_fv
--------------------------------*/
#sec_fv .fv_slider {
	aspect-ratio: 1440/712;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_fv .fv_slider {
		aspect-ratio: 750/900;
	}
}
#sec_fv .fv_slider .img {
	aspect-ratio: 1440/712;
}
@media screen and (max-width: 767px) {
	#sec_fv .fv_slider .img {
		aspect-ratio: 750/900;
	}
}
#sec_fv .fv_slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_fv .fv_slider .slick-dots {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1rem;
	position: absolute;
	bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_fv .fv_slider .slick-dots {
		position: static;
		margin-top: 1.6rem;
	}
}
#sec_fv .fv_slider .slick-dots li {
	width: 0.8rem;
	aspect-ratio: 1/1;
	font-size: 0;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	#sec_fv .fv_slider .slick-dots li {
		width: 1.2rem;
	}
}
#sec_fv .fv_slider .slick-dots li button {
	font-size: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(97, 96, 95, 0.4);
}
#sec_fv .fv_slider .slick-dots li.slick-active button {
	background-color: rgb(97, 96, 95);
}

/* sec_pickup
--------------------------------*/
#sec_pickup {
	padding: 10rem 0 0;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_pickup {
		padding: 12rem 0 0;
	}
}
#sec_pickup .pickup_list {
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	#sec_pickup .pickup_list {
		margin-top: 8rem;
	}
}
#sec_pickup .pickup_list .item {
	width: 32.7rem;
	margin: 0 0.6rem;
}
@media screen and (max-width: 767px) {
	#sec_pickup .pickup_list .item {
		width: 44.1rem;
		margin: 0 0.8rem;
	}
}
#sec_pickup .pickup_list .item a {
	display: block;
	width: 100%;
	aspect-ratio: 327/176;
	border-radius: 1.5rem;
	overflow: hidden;
}
@media (any-hover: hover) {
	#sec_pickup .pickup_list .item a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#sec_pickup .pickup_list .item a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	#sec_pickup .pickup_list .item a {
		border-radius: 2rem;
	}
}
#sec_pickup .pickup_list .item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_pickup .slick-slider .slick-list {
	overflow: visible;
}

/* sec_category
--------------------------------*/
#sec_category {
	padding: 10rem 0 15rem;
}
#sec_category .category_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_category .category_list {
		grid-template-columns: 1fr;
		margin-top: 7.5rem;
	}
}
#sec_category .category_list .item a {
	display: block;
	position: relative;
}
#sec_category .category_list .item a::before {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 1.6rem;
	box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.3);
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
	#sec_category .category_list .item a:hover::before {
		opacity: 1;
	}
}
#sec_category .category_list .item._01 a::before {
	border: 1rem solid #79C300;
}
#sec_category .category_list .item._02 a::before {
	border: 1rem solid #41b6e6;
}

/* sec_products
--------------------------------*/
#products_wrap {
	position: relative;
}

#products_nav {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}
@media screen and (max-width: 767px) {
	#products_nav {
		width: 100%;
		height: auto;
		position: sticky;
		top: 10rem;
	}
}
#products_nav .nav_list {
	width: 2.5rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 2.4rem;
	padding: 12rem 0.7rem 12rem 0.5rem;
}
@media screen and (min-width: 768px) {
	#products_nav .nav_list {
		position: sticky;
		top: 0;
		right: 0;
	}
}
@media screen and (max-width: 767px) {
	#products_nav .nav_list {
		width: 100%;
		height: 5.2rem;
		flex-direction: row;
		align-items: flex-start;
		gap: 8rem;
		padding: 1rem 4rem;
		transition: background-color 0.3s ease;
	}
	#products_nav .nav_list.current-products01 {
		background-color: #79C300;
	}
	#products_nav .nav_list.current-products02 {
		background-color: #41b6e6;
	}
}
#products_nav .nav_list .item {
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.01em;
	transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
	#products_nav .nav_list .item {
		writing-mode: vertical-rl;
		text-orientation: mixed;
	}
}
@media screen and (max-width: 767px) {
	#products_nav .nav_list .item {
		font-size: 3.2rem;
	}
}
#products_nav .nav_list .item:nth-child(1) {
	color: #1182CF;
}
#products_nav .nav_list .item:nth-child(2) {
	color: #399500;
}
#products_nav .nav_list .item.is-active {
	color: #ffffff !important;
}

.sec_products {
	padding: 6rem 0 10rem;
	background: url(../img/index/products_bg_pc.png) no-repeat left top/cover;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.sec_products {
		padding: 0 0 7.5rem;
		background-image: url(../img/index/products_bg_sp.png);
	}
}
@media screen and (min-width: 768px) {
	.sec_products::before {
		content: "";
		width: 2.6rem;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
	}
}
.sec_products .products_head {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head {
		flex-direction: column;
		gap: 5rem;
	}
}
@media screen and (min-width: 768px) {
	.sec_products .products_head .mv {
		width: calc(50% + 6.3rem);
		height: 58.5rem;
		overflow: hidden;
	}
	.sec_products .products_head .mv img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .mv {
		width: 100%;
	}
}
.sec_products .products_head .txt_wrap {
	width: 60rem;
	padding-left: 7rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap {
		width: 100%;
		padding: 0 4rem;
	}
}
.sec_products .products_head .txt_wrap .sec_ttl {
	padding-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .sec_ttl {
		padding: 0;
	}
}
.sec_products .products_head .txt_wrap .sec_ttl .en {
	font-size: 5.6rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .sec_ttl .en {
		font-size: 6.4rem;
	}
}
.sec_products .products_head .txt_wrap .sec_ttl .ja {
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .sec_ttl .ja {
		font-size: 3.2rem;
		margin-top: 1.3rem;
	}
}
.sec_products .products_head .txt_wrap .feature_list {
	display: flex;
	gap: 2rem;
	margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .feature_list {
		flex-direction: column;
		gap: 3rem;
	}
}
.sec_products .products_head .txt_wrap .feature_list .item {
	width: 14.1rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .feature_list .item {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 2.2rem;
	}
}
.sec_products .products_head .txt_wrap .feature_list .item img {
	display: block;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .feature_list .item img {
		flex: 0 0 auto;
		width: 16rem;
	}
}
.sec_products .products_head .txt_wrap .feature_list .item .txt {
	text-align: center;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.09em;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .feature_list .item .txt {
		flex: 1 1 auto;
		text-align: left;
		font-size: 3.2rem;
		margin-top: 0;
	}
}
.sec_products .products_head .txt_wrap .btn {
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .btn {
		text-align: center;
		margin-top: 7rem;
	}
}
.sec_products .products_head .txt_wrap .note {
	font-weight: 500;
	font-size: 1.1rem;
	margin-top: 2em;
}
@media screen and (max-width: 767px) {
	.sec_products .products_head .txt_wrap .note {
		font-size: 2.2rem;
	}
}
.sec_products .lineup {
	max-width: 126.4rem;
	margin: 10rem auto 0;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup {
		max-width: 100%;
		margin-top: 8rem;
	}
}
.sec_products .lineup .sec_ttl {
	padding-left: 3.2rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .sec_ttl {
		text-align: center;
		padding-left: 0;
	}
}
.sec_products .lineup .lineup_list {
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list {
		margin-top: 8rem;
	}
}
.sec_products .lineup .lineup_list .item {
	width: 24.5rem;
	background-color: #ffffff;
	border-radius: 1.2rem;
	box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
	position: relative;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item {
		width: 55.6rem;
		border-radius: 3rem;
		box-shadow: 0.8rem 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
	}
}
.sec_products .lineup .lineup_list .item .img_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 24rem;
	border-radius: 1.5rem 0 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap {
		height: 51rem;
		border-radius: 2rem 0 0;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .img {
	width: 8rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .img {
		width: 18rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .img > img {
	transition: opacity 0.3s ease;
}
.sec_products .lineup .lineup_list .item .img_wrap .img > img:not(.hover_img) {
	display: block;
	position: relative;
}
.sec_products .lineup .lineup_list .item .img_wrap .img .hover_img {
	width: 17.8rem;
	max-width: none;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .img .hover_img {
		width: 40rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .img._cap .hover_img {
	width: 16.5rem;
	top: auto;
	bottom: 0;
	translate: -50% 0;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .img._cap .hover_img {
		width: 37.125rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	position: absolute;
	top: 1.9rem;
	right: 1.4rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap {
		gap: 1.4rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ldk01 {
	width: 5.6rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ldk01 {
		width: 8rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ldk02 {
	width: 6.2rem;
	margin: 0 -0.25rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ldk02 {
		width: 8rem;
		margin: 0;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: relative;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico {
		width: 15.2rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico span {
	text-align: center;
	color: #ffffff;
	font-weight: 500;
	font-size: 0.88rem;
	line-height: 1.3636363636;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico span {
		font-size: 2.4rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico01 {
	background-color: #79c300;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico02 {
	background-color: #c8a141;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico03 {
	background-color: #9993b6;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico04 {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico04 span {
	color: #6B6460;
	font-size: 0.8rem;
	line-height: 1.2222222222;
	letter-spacing: 0;
	margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico04 span {
		font-size: 2rem;
		margin-top: 0.3rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico04::before {
	content: "";
	width: 1.5rem;
	aspect-ratio: 1/1;
	background: url(../img/products/products_lineup_ico04.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico04::before {
		width: 3.4rem;
	}
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico05 {
	background-color: #f3d500;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico06 {
	background-color: #E8413C;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico07 {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico07 span {
	color: #6B6460;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico08 {
	background-color: #E0E0E0;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico08 span {
	color: #6B6460;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico09 {
	background-color: #7693DC;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico10 {
	background-color: #ffffff;
	border: 1px solid #41b6e6;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico10 span {
	color: #41b6e6;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico11 {
	background-color: #FFBAC9;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico12 {
	background-color: #3069C1;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico13 {
	background-color: #F78816;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico14 {
	background-color: #00A054;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico15 {
	background-color: #85D140;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico16 {
	background-color: #60cfa0;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico17 {
	background-color: #FF6E69;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico18 {
	background-color: #A5D700;
}
.sec_products .lineup .lineup_list .item .img_wrap .ico_wrap .ico19 {
	background-color: #ffa500;
}
.sec_products .lineup .lineup_list .item:hover {
	z-index: 1;
}
.sec_products .lineup .lineup_list .item:hover .img_wrap .img .hover_img {
	opacity: 1;
}
.sec_products .lineup .lineup_list .item:hover .img_wrap .img._cap > img:not(.hover_img) {
	opacity: 0;
}
@media (any-hover: hover) {
	.sec_products .lineup .lineup_list .item:hover {
		scale: 1.06;
		box-shadow: 0.5rem 0.5rem 1rem rgba(126, 123, 123, 0.3);
	}
}
.sec_products .lineup .lineup_list .item._new .img_wrap::before {
	content: "NEW";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10rem;
	height: 5rem;
	color: #ffffff;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1;
	padding-top: 2.4rem;
	background-color: #79C300;
	rotate: -45deg;
	transform-origin: top center;
	position: absolute;
	left: -5rem;
	top: 0;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item._new .img_wrap::before {
		width: 20rem;
		height: 10rem;
		font-size: 3rem;
		padding-top: 4rem;
		left: -10rem;
	}
}
.sec_products .lineup .lineup_list .item .inner {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 1rem 2.25rem 3rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner {
		padding: 2.4rem 5rem 8rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .ttl {
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #6B6460;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .ttl {
		font-size: 3.4rem;
		letter-spacing: 0.05em;
	}
}
.sec_products .lineup .lineup_list .item .inner .ttl.ls0 {
	letter-spacing: -0.025em;
}
.sec_products .lineup .lineup_list .item .inner .ttl sup {
	font-size: 53%;
}
.sec_products .lineup .lineup_list .item .inner .detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .detail {
		margin-top: 2rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .detail dl {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .detail dl {
		gap: 1rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .detail dl dt,
.sec_products .lineup .lineup_list .item .inner .detail dl dd {
	font-family: "Inter", sans-serif;
	line-height: 1.5;
}
.sec_products .lineup .lineup_list .item .inner .detail dl dt {
	color: #B5B1AF;
	font-weight: 500;
	font-size: 0.88rem;
	margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .detail dl dt {
		font-size: 2rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .detail dl dd {
	font-weight: 400;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .detail dl dd {
		font-size: 3.2rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .detail dl dd .ja {
	font-family: #6B6460;
	font-size: 1rem;
	margin-left: 0.3rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .detail dl dd .ja {
		font-size: 2.4rem;
		margin-left: 0.5rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap {
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap {
		margin-top: 3.4rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn {
	height: 3.5rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn {
		height: 10rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.5rem;
	padding: 1rem 4rem;
	color: #6B6460;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 2;
	background-color: #fff;
	border: 0.2rem solid #6B6460;
	border-radius: 2.4rem;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn button {
		height: 10rem;
		font-size: 2.8rem;
		padding: 1.5rem 6rem;
		border-width: 0.4rem;
		border-radius: 5rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn button::after {
	content: "";
	width: 0.6rem;
	aspect-ratio: 1/1;
	border-right: 1px solid #6B6460;
	border-bottom: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 2.4rem;
	translate: 0 -30%;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn button::after {
		width: 2rem;
		border-width: 0.3rem;
		right: 4rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content {
	width: 100%;
	background-color: #ffffff;
	border: 0.2rem solid #6B6460;
	border-top: none;
	border-radius: 0 0 2.4rem 2.4rem;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: calc(100% - 0.2rem);
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.2s ease, opacity 0.3s ease;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content {
		border-width: 0.4rem;
		border-radius: 0 0 5rem 5rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 5.9rem;
	padding: 1rem 2rem;
	transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a:hover {
		background-color: #ECECEC;
	}
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a {
		min-height: 9.7rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_yaman {
	width: 8.6rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_yaman {
		width: 17rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_rakuten {
	width: 8.1rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_rakuten {
		width: 17rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_yahooshopping {
	width: 11.8rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a img.logo_yahooshopping {
		width: 23.6rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a .txt {
	flex: 0 0 auto;
	display: block;
	font-weight: 700;
	color: #312C2A;
	font-size: 0.9rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-top: 0.3rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn .acd_content a .txt {
		font-size: 1.8rem;
		line-height: 1.5;
		margin-top: 0.5rem;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn.is-active {
	z-index: 10;
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn.is-active button {
	border-bottom-color: transparent !important;
	border-radius: 2.4rem 2.4rem 0 0;
	transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn.is-active button {
		border-radius: 5rem 5rem 0 0;
	}
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn.is-active button::after {
	translate: 0 10%;
	scale: -1 -1;
}
.sec_products .lineup .lineup_list .item .inner .btn_wrap .acd_btn.is-active .acd_content {
	grid-template-rows: 1fr;
	opacity: 1;
	pointer-events: auto;
}
.sec_products .lineup .slick-slider .slick-list {
	overflow: visible;
}
.sec_products .lineup .slick-slider .slick-list .slick-track {
	display: flex;
	gap: 1.2rem;
}
.sec_products .lineup .slick-slider .slick-list .slick-slide {
	float: none;
	height: auto;
}
.sec_products .lineup .slick-slider .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.3rem;
	aspect-ratio: 1/1;
	font-size: 0;
	background-color: #ffffff;
	border: 1px solid #c6c6c6;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	z-index: 2;
}
@media (any-hover: hover) {
	.sec_products .lineup .slick-slider .slick-arrow {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.sec_products .lineup .slick-slider .slick-arrow:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .slick-slider .slick-arrow {
		width: 10rem;
	}
}
.sec_products .lineup .slick-slider .slick-arrow::before {
	content: "";
	width: 1.1rem;
	aspect-ratio: 1/1;
	border-top: 1px solid #6B6460;
	border-right: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 2.7rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .slick-slider .slick-arrow::before {
		width: 2rem;
		border-width: 0.2rem;
		right: 4.4rem;
	}
}
.sec_products .lineup .slick-slider .slick-arrow.slick-prev {
	left: -4.4rem;
	scale: -1 1;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .slick-slider .slick-arrow.slick-prev {
		left: 3.6rem;
	}
}
.sec_products .lineup .slick-slider .slick-arrow.slick-next {
	right: -4.4rem;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .slick-slider .slick-arrow.slick-next {
		right: 3.6rem;
	}
}
.sec_products .lineup .note {
	text-align: center;
	font-weight: 500;
	font-size: 1.1rem;
	margin-top: 2em;
}
@media screen and (max-width: 767px) {
	.sec_products .lineup .note {
		text-align: left;
		font-size: 2.2rem;
		margin-left: 4rem;
	}
}
.sec_products .btn_box {
	margin-top: 10rem;
}
@media screen and (max-width: 767px) {
	.sec_products .btn_box {
		margin-top: 13rem;
	}
}
.sec_products .btn_box a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 45rem;
	min-height: 9.4rem;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.3333333333;
	letter-spacing: 0.12em;
	padding: 1rem 4.3rem 1rem 3.3rem;
	background-color: #ffffff;
	border: 0.2rem solid;
	border-radius: 1.6rem;
	position: relative;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .btn_box a {
		width: 64rem;
		min-height: 16rem;
		font-size: 3.2rem;
		padding: 1.5rem 6rem;
		border-width: 0.4rem;
		border-radius: 2.6rem;
	}
}
.sec_products .btn_box a .en {
	font-weight: 600;
	font-size: 2.9rem;
	letter-spacing: 0.03em;
	transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .btn_box a .en {
		font-size: 4.9rem;
	}
}
.sec_products .btn_box a::after {
	content: "";
	width: 1.3rem;
	aspect-ratio: 1/1;
	border-top: 0.2rem solid;
	border-right: 0.2rem solid;
	rotate: 45deg;
	position: absolute;
	right: 3.5rem;
	transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_products .btn_box a::after {
		width: 2rem;
		border-width: 0.3rem;
		right: 4rem;
	}
}
@media (any-hover: hover) {
	.sec_products .btn_box a:hover {
		color: #ffffff;
	}
	.sec_products .btn_box a:hover .en {
		color: #ffffff;
	}
	.sec_products .btn_box a:hover::after {
		border-color: #ffffff;
	}
}
.sec_products#products01::before {
	background-color: #79C300;
}
@media screen and (min-width: 768px) {
	.sec_products#products01 .products_head .mv {
		border-radius: 0 1.5rem 1.5rem 0;
	}
	.sec_products#products01 .products_head .mv img {
		object-position: right center;
	}
}
@media screen and (min-width: 768px) {
	.sec_products#products01 .products_head .txt_wrap {
		padding-left: 7rem;
	}
}
@media screen and (min-width: 768px) {
	.sec_products#products01 .products_head .txt_wrap .sec_ttl {
		border-bottom: 0.2rem solid #79C300;
	}
}
.sec_products#products01 .lineup .lineup_list .item._new .img_wrap::before {
	background-color: #79C300;
}
.sec_products#products01 .lineup .lineup_list .item .inner .btn_wrap .acd_btn button {
	color: #79C300;
	border-color: #79C300;
}
.sec_products#products01 .lineup .lineup_list .item .inner .btn_wrap .acd_btn button::after {
	border-color: #79C300;
}
.sec_products#products01 .lineup .lineup_list .item .inner .btn_wrap .acd_content {
	border-color: #79C300;
}
.sec_products#products01 .btn_box a {
	border-color: #79C300;
}
.sec_products#products01 .btn_box a .en {
	color: #79C300;
}
.sec_products#products01 .btn_box a::after {
	border-color: #79C300;
}
@media (any-hover: hover) {
	.sec_products#products01 .btn_box a:hover {
		background-color: #79C300;
	}
	.sec_products#products01 .btn_box a:hover .en {
		color: #ffffff;
	}
	.sec_products#products01 .btn_box a:hover::after {
		border-color: #ffffff;
	}
}
.sec_products#products02::before {
	background-color: #41b6e6;
}
@media screen and (min-width: 768px) {
	.sec_products#products02 .products_head {
		flex-direction: row-reverse;
		margin-left: auto;
	}
}
@media screen and (min-width: 768px) {
	.sec_products#products02 .products_head .mv {
		border-radius: 1.5rem 0 0 1.5rem;
	}
	.sec_products#products02 .products_head .mv img {
		object-position: left center;
	}
}
@media screen and (min-width: 768px) {
	.sec_products#products02 .products_head .txt_wrap {
		padding-right: 7rem;
		padding-left: 0;
	}
}
@media screen and (min-width: 768px) {
	.sec_products#products02 .products_head .txt_wrap .sec_ttl {
		border-bottom: 0.2rem solid #41b6e6;
	}
}
.sec_products#products02 .products_head .txt_wrap .sec_ttl .en {
	color: #41b6e6;
}
.sec_products#products02 .lineup .sec_ttl .en {
	color: #41b6e6;
}
.sec_products#products02 .lineup .lineup_list .item._new .img_wrap::before {
	background-color: #41b6e6;
}
.sec_products#products02 .lineup .lineup_list .item .inner .btn_wrap .acd_btn button {
	color: #41b6e6;
	border-color: #41b6e6;
}
.sec_products#products02 .lineup .lineup_list .item .inner .btn_wrap .acd_btn button::after {
	border-color: #41b6e6;
}
.sec_products#products02 .lineup .lineup_list .item .inner .btn_wrap .acd_content {
	border-color: #41b6e6;
}
.sec_products#products02 .btn_box a {
	border-color: #41b6e6;
}
.sec_products#products02 .btn_box a .en {
	color: #41b6e6;
}
.sec_products#products02 .btn_box a::after {
	border-color: #41b6e6;
}
@media (any-hover: hover) {
	.sec_products#products02 .btn_box a:hover {
		background-color: #41b6e6;
	}
	.sec_products#products02 .btn_box a:hover .en {
		color: #ffffff;
	}
	.sec_products#products02 .btn_box a:hover::after {
		border-color: #ffffff;
	}
}

/* sec_story
--------------------------------*/
#sec_story {
	padding: 16rem 0 10rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_story {
		padding: 12rem 0 6rem;
	}
}
#sec_story .story_head {
	position: relative;
}
@media screen and (min-width: 768px) {
	#sec_story .story_head {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 1rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_story .story_head .sec_ttl {
		flex: 0 0 auto;
		width: 25rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .sec_ttl {
		text-align: center;
	}
}
#sec_story .story_head .sec_ttl .ja {
	font-size: 2.1rem;
	letter-spacing: 0.08em;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .sec_ttl .ja {
		font-size: 4.8rem;
	}
}
#sec_story .story_head .txt_wrap {
	position: relative;
}
@media screen and (min-width: 768px) {
	#sec_story .story_head .txt_wrap {
		flex: 1 1 auto;
	}
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .txt_wrap {
		text-align: center;
		margin-top: 6rem;
	}
}
#sec_story .story_head .txt_wrap .catch {
	font-size: 2.2rem;
	line-height: 1.2727272727;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .txt_wrap .catch {
		font-size: 2.8rem;
	}
}
#sec_story .story_head .txt_wrap .ttl {
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .txt_wrap .ttl {
		font-size: 4rem;
	}
}
#sec_story .story_head .txt_wrap .txt {
	font-size: 1.7rem;
	line-height: 2.2352941176;
	letter-spacing: 0.1em;
	margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .txt_wrap .txt {
		font-size: 2.8rem;
		line-height: 2;
	}
}
#sec_story .story_head .txt_wrap .btn {
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .txt_wrap .btn {
		margin-top: 8rem;
	}
}
#sec_story .story_head .img {
	width: 38rem;
	position: absolute;
	right: 0;
	top: -6.7rem;
}
@media screen and (max-width: 767px) {
	#sec_story .story_head .img {
		width: 36.9rem;
		position: relative;
		left: 0;
		top: 0;
		margin: 6rem auto;
	}
}
#sec_story .gallery_list {
	margin-top: 8rem;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_story .gallery_list {
		margin-top: 0;
	}
}
#sec_story .gallery_list .item {
	width: 28.5rem;
}
#sec_story .slick-slider .slick-list .slick-track {
	display: flex;
	gap: 2rem;
}
#sec_story .slick-slider .slick-list .slick-slide {
	float: none;
	height: auto;
}
#sec_story .loop_txt {
	display: flex;
	gap: 1em;
	animation: loop-text 30s linear infinite;
	margin-top: -3rem;
}
#sec_story .loop_txt .txt {
	flex-shrink: 0;
	color: #e4f3cc;
	font-size: 10rem;
	line-height: 1;
	letter-spacing: 0.01em;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	#sec_story .loop_txt .txt {
		font-size: 9.6rem;
	}
}
@keyframes loop-text {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* sec_quality
--------------------------------*/
#sec_quality {
	padding: 10rem 0;
	background: url(../img/index/quality_bg_pc.png) no-repeat left top/cover;
}
@media screen and (max-width: 767px) {
	#sec_quality {
		padding: 6rem 0;
		background: url(../img/index/quality_bg_sp.png) repeat-y left top/100% auto;
	}
}
#sec_quality .quality_list {
	margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list {
		padding: 0 4rem;
		margin-top: 8rem;
	}
}
#sec_quality .quality_list .item {
	width: calc(50% + 60rem);
	background-color: #79C300;
	border-radius: 1.5rem;
	overflow: hidden;
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item {
		display: flex;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item {
		width: 100%;
		border-radius: 3rem;
		margin: 0 auto;
	}
}
#sec_quality .quality_list .item + .item {
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item + .item {
		margin-top: 4rem;
	}
}
#sec_quality .quality_list .item .num {
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item .num {
		flex: 0 0 auto;
		width: 6.3rem;
		display: flex;
		align-items: center;
		justify-content: center;
		writing-mode: vertical-rl;
		text-orientation: mixed;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .num {
		text-align: center;
		font-size: 2.8rem;
		padding: 2.8rem 2rem;
	}
}
#sec_quality .quality_list .item .inner {
	padding: 3rem 0;
	background-color: #ffffff;
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item .inner {
		flex: 1 1 auto;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner {
		padding: 7rem 6rem 6rem;
		border-radius: 3rem 3rem 0 0;
	}
}
#sec_quality .quality_list .item .inner .col {
	display: flex;
	align-items: center;
	width: 113.7rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}
}
#sec_quality .quality_list .item .inner .col .quality_head {
	position: relative;
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item .inner .col .quality_head {
		flex: 1 1 auto;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col .quality_head {
		display: contents;
	}
}
#sec_quality .quality_list .item .inner .col .quality_head .ttl {
	display: inline;
	font-size: 2.8rem;
	line-height: 1.6071428571;
	letter-spacing: 0.1em;
	background-image: linear-gradient(90deg, #79C300, #79C300);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0 0.2rem;
	transition: background-size 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col .quality_head .ttl {
		order: 1;
		font-size: 3.6rem;
		line-height: 1.8055555556;
		letter-spacing: 0.05em;
	}
}
#sec_quality .quality_list .item .inner .col .quality_head .txt {
	letter-spacing: 0.08em;
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col .quality_head .txt {
		order: 2;
	}
}
#sec_quality .quality_list .item .inner .col .quality_head .btn {
	margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col .quality_head .btn {
		order: 4;
		width: 58rem;
		margin: 8rem -1rem 0;
	}
	#sec_quality .quality_list .item .inner .col .quality_head .btn a {
		width: 100%;
		font-size: 2.8rem;
		padding: 1.5rem 5rem 1.5rem 3.5rem;
	}
	#sec_quality .quality_list .item .inner .col .quality_head .btn a::after {
		right: 3rem;
	}
}
#sec_quality .quality_list .item .inner .col .note {
	width: 100%;
	font-weight: 500;
	font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item .inner .col .note {
		order: 5;
		font-size: 2.4rem;
		line-height: 1.8333333333;
		margin-top: 2em;
	}
}
@media (any-hover: hover) {
	#sec_quality .quality_list .item:hover .inner .col .quality_head .ttl {
		background-size: 100% 0.2rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item:nth-child(odd) {
		margin-left: auto;
		border-radius: 1.5rem 0 0 1.5rem;
	}
	#sec_quality .quality_list .item:nth-child(odd) .inner {
		border-radius: 1.5rem 0 0 1.5rem;
	}
}
@media screen and (min-width: 768px) and (min-width: 768px) {
	#sec_quality .quality_list .item:nth-child(odd) .inner .col .note {
		position: absolute;
		left: 0;
		bottom: -6rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item:nth-child(even) {
		flex-direction: row-reverse;
		border-radius: 0 1.5rem 1.5rem 0;
	}
	#sec_quality .quality_list .item:nth-child(even) .inner {
		border-radius: 0 1.5rem 1.5rem 0;
	}
	#sec_quality .quality_list .item:nth-child(even) .inner .col {
		flex-direction: row-reverse;
		margin-left: auto;
	}
}
@media screen and (min-width: 768px) and (min-width: 768px) {
	#sec_quality .quality_list .item:nth-child(even) .inner .col .note {
		position: absolute;
		right: 0;
		bottom: -4rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item._01 .col {
		gap: 5rem;
		padding-left: 6.3rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item._01 .img {
		flex: 0 0 auto;
		width: 45.5rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._01 .img {
		order: 3;
		width: 58.2rem;
		margin-top: 8rem;
		margin-left: -1.6rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item._02 .col {
		gap: 4.5rem;
		padding-right: 2rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .col .quality_head .btn {
		margin-top: 4rem;
	}
}
@media screen and (min-width: 768px) {
	#sec_quality .quality_list .item._02 .detail {
		flex: 0 0 auto;
		width: 66rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail {
		order: 3;
		width: 59rem;
		margin: 8rem -2rem 0;
	}
}
#sec_quality .quality_list .item._02 .detail > .img {
	width: 55.5rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail > .img {
		width: 100%;
	}
}
#sec_quality .quality_list .item._02 .detail .more_btn {
	display: block;
	width: 100%;
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_btn {
		margin-top: 4rem;
	}
}
#sec_quality .quality_list .item._02 .detail .more_btn span {
	color: #6B6460;
	font-size: 1.5rem;
	line-height: 1.8666666667;
	letter-spacing: 0.12em;
	padding-right: 3rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_btn span {
		font-size: 2.8rem;
		padding-right: 5rem;
	}
}
#sec_quality .quality_list .item._02 .detail .more_btn span::after {
	content: "";
	width: 0.9rem;
	aspect-ratio: 1/1;
	border-right: 1px solid #6B6460;
	border-bottom: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 0.3rem;
	top: 50%;
	translate: 0 -70%;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_btn span::after {
		width: 1.8rem;
		border-width: 0.3rem;
		top: 1.5rem;
	}
}
#sec_quality .quality_list .item._02 .detail .more_btn.is-open span::after {
	translate: 0 -30%;
	scale: -1 -1;
}
#sec_quality .quality_list .item._02 .detail .more_cnt {
	display: grid;
	grid-template-rows: 10rem;
	transition: max-height 0.3s ease;
	padding-top: 2rem;
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_cnt {
		grid-template-rows: 14rem;
		padding: 0;
		margin-top: 8rem;
	}
}
#sec_quality .quality_list .item._02 .detail .more_cnt::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent, #fff);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 20%, rgb(255, 255, 255) 50%);
	pointer-events: none;
	transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_cnt::after {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 80%, rgb(255, 255, 255) 90%);
	}
}
#sec_quality .quality_list .item._02 .detail .more_cnt.is-open {
	grid-template-rows: 1fr;
}
#sec_quality .quality_list .item._02 .detail .more_cnt.is-open::after {
	opacity: 0;
}
@media screen and (max-width: 767px) {
	#sec_quality .quality_list .item._02 .detail .more_cnt .img {
		width: 30rem;
		margin: 0 auto;
	}
}

/* sec_voice
--------------------------------*/
#sec_voice {
	padding: 10rem 0;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_voice {
		padding: 12rem 0;
	}
}
#sec_voice .voice_list {
	margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list {
		margin-top: 8rem;
	}
}
#sec_voice .voice_list .item {
	width: 38.7rem;
	padding: 3rem 3rem 5rem;
	background-color: #ffffff;
	border-radius: 1.5rem;
	box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
	#sec_voice .voice_list .item:hover {
		box-shadow: 0.7rem 0.7rem 1rem rgba(0, 0, 0, 0.3);
		z-index: 1;
	}
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item {
		width: 55.6rem;
		padding: 3rem 4.2rem 10rem;
		border-radius: 3rem;
	}
}
#sec_voice .voice_list .item .img_wrap {
	padding-top: 0.8rem;
	position: relative;
}
#sec_voice .voice_list .item .img_wrap .ico {
	width: 14rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .img_wrap .ico {
		width: 23rem;
	}
}
#sec_voice .voice_list .item .img_wrap .profile {
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.09em;
	margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .img_wrap .profile {
		font-size: 2.4rem;
	}
}
#sec_voice .voice_list .item .img_wrap .profile sup {
	font-size: 80%;
}
#sec_voice .voice_list .item .img_wrap .cate {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 7rem;
	aspect-ratio: 1/1;
	font-family: "Inter", sans-serif;
	color: #ffffff;
	font-size: 1.5rem;
	letter-spacing: 0.03em;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .img_wrap .cate {
		width: 15rem;
		font-size: 2.8rem;
	}
}
#sec_voice .voice_list .item .img_wrap .cate.cate01 {
	background-color: #79C300;
}
#sec_voice .voice_list .item .img_wrap .cate.cate02 {
	background-color: #41b6e6;
}
#sec_voice .voice_list .item .txt_wrap {
	margin-top: 2.5rem;
}
#sec_voice .voice_list .item .txt_wrap .ttl {
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.09em;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #6B6460;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .txt_wrap .ttl {
		font-size: 3.2rem;
	}
}
#sec_voice .voice_list .item .txt_wrap .txt {
	text-align: justify;
	font-size: 1.5rem;
	letter-spacing: 0.03em;
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .txt_wrap .txt {
		font-size: 2.8rem;
	}
}
#sec_voice .slick-slider .slick-list {
	overflow: visible;
}
#sec_voice .slick-slider .slick-list .slick-track {
	display: flex;
	gap: 2rem;
}
#sec_voice .slick-slider .slick-list .slick-slide {
	float: none;
	height: auto;
}
#sec_voice .slick-slider .slick-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.3rem;
	aspect-ratio: 1/1;
	font-size: 0;
	background-color: #ffffff;
	border: 1px solid #c6c6c6;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	translate: 0 -68%;
	z-index: 2;
}
@media (any-hover: hover) {
	#sec_voice .slick-slider .slick-arrow {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#sec_voice .slick-slider .slick-arrow:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-arrow {
		width: 10rem;
	}
}
#sec_voice .slick-slider .slick-arrow::before {
	content: "";
	width: 1.1rem;
	aspect-ratio: 1/1;
	border-top: 1px solid #6B6460;
	border-right: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 2.7rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-arrow::before {
		width: 2rem;
		border-width: 0.2rem;
		right: 4.4rem;
	}
}
#sec_voice .slick-slider .slick-arrow.slick-prev {
	left: -3.6rem;
	scale: -1 1;
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-arrow.slick-prev {
		left: -1.2rem;
	}
}
#sec_voice .slick-slider .slick-arrow.slick-next {
	right: -3.6rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-arrow.slick-next {
		right: -1.2rem;
	}
}
#sec_voice .slick-slider .slick-dots {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-dots {
		margin-top: 3.2rem;
	}
}
#sec_voice .slick-slider .slick-dots li {
	width: 0.8rem;
	aspect-ratio: 1/1;
	font-size: 0;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	#sec_voice .slick-slider .slick-dots li {
		width: 1.2rem;
	}
}
#sec_voice .slick-slider .slick-dots li button {
	font-size: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(97, 96, 95, 0.4);
}
#sec_voice .slick-slider .slick-dots li.slick-active button {
	background-color: rgb(97, 96, 95);
}
#sec_voice .note {
	font-size: 1.2rem;
	margin-top: 2em;
}
@media screen and (max-width: 767px) {
	#sec_voice .note {
		font-size: 2.4rem;
	}
}

/* sec_feature
--------------------------------*/
#sec_feature {
	padding: 10rem 0;
	background: url(../img/common/feature_bg_pc.png) no-repeat left top/cover;
}
@media screen and (max-width: 767px) {
	#sec_feature {
		background-image: url(../img/common/feature_bg_sp.png);
	}
}
@media screen and (min-width: 768px) {
	#sec_feature .wrap {
		max-width: 144rem;
	}
}
#sec_feature .feature_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_list {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}
#sec_feature .feature_list .item a {
	display: block;
	position: relative;
}
#sec_feature .feature_list .item .img {
	width: 100%;
	aspect-ratio: 690/427;
	border-radius: 1.5rem;
	overflow: hidden;
}
#sec_feature .feature_list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale 0.3s ease;
}
@media (any-hover: hover) {
	#sec_feature .feature_list .item a:hover .img img {
		scale: 1.1;
	}
}
#sec_feature .feature_list .item .txt_wrap {
	width: 100%;
	padding-bottom: 3.6rem;
	position: absolute;
	bottom: 0;
}
#sec_feature .feature_list .item .txt_wrap .ttl {
	line-height: 1.5;
}
#sec_feature .feature_list .item .txt_wrap .ttl .en {
	color: #79C300;
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_list .item .txt_wrap .ttl .en {
		font-size: 2.4rem;
		line-height: 1;
	}
}
#sec_feature .feature_list .item .txt_wrap .ttl .ja {
	color: #ffffff;
	font-weight: 500;
	font-size: 2.1rem;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
	#sec_feature .feature_list .item .txt_wrap .ttl .ja {
		font-size: 3.6rem;
	}
}

/* sec_news
--------------------------------*/
#sec_news {
	padding: 10rem 0;
}
@media screen and (max-width: 767px) {
	#sec_news {
		padding: 12rem 0;
	}
}
@media screen and (max-width: 767px) {
	#sec_news .wrap {
		display: flex;
		flex-direction: column;
	}
}
@media screen and (min-width: 768px) {
	#sec_news .news_head {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
}
@media screen and (max-width: 767px) {
	#sec_news .news_head {
		display: contents;
	}
	#sec_news .news_head .sec_ttl {
		order: 1;
		text-align: center;
	}
	#sec_news .news_head .btn {
		order: 3;
		margin-top: 5.6rem;
	}
}
#sec_news .news_list {
	border-top: 1px solid rgba(107, 100, 96, 0.5);
	margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list {
		order: 2;
		margin-top: 8rem;
	}
}
#sec_news .news_list .item {
	border-bottom: 1px solid rgba(107, 100, 96, 0.5);
}
#sec_news .news_list .item a {
	display: flex;
	align-items: flex-start;
	gap: 0 1rem;
	padding: 2.6rem 6rem 2.6rem 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item a {
		flex-wrap: wrap;
		padding: 3rem 7rem 3rem 0;
	}
}
#sec_news .news_list .item a::after {
	content: "";
	width: 0.8rem;
	aspect-ratio: 1/1;
	border-top: 1px solid #6B6460;
	border-right: 1px solid #6B6460;
	rotate: 45deg;
	position: absolute;
	right: 3rem;
	top: 50%;
	translate: 0 -50%;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item a::after {
		width: 2rem;
		border-width: 0.3rem;
		right: 1rem;
		rotate: 135deg;
	}
}
#sec_news .news_list .item .meta {
	flex: 0 0 auto;
	width: 22.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0 1rem;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item .meta {
		width: 100%;
		gap: 0 1.5rem;
	}
}
#sec_news .news_list .item .meta .date {
	flex: 0 0 auto;
	width: 9rem;
	font-size: 1.3rem;
	line-height: 1.5384615385;
	margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item .meta .date {
		width: 12rem;
		font-size: 2rem;
	}
}
#sec_news .news_list .item .meta .cate {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	color: #ffffff;
	font-size: 1.1rem;
	line-height: 1.4545454545;
	letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item .meta .cate {
		font-size: 2rem;
		line-height: 1.2;
	}
}
#sec_news .news_list .item .meta .cate span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 10.8rem;
	padding: 0.4rem 0.6rem;
	background-color: #DFDEDD;
	border-radius: 1.2rem;
	transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item .meta .cate span {
		min-width: 20rem;
		padding: 0.6rem 1rem;
		border-radius: 1.8rem;
	}
}
#sec_news .news_list .item .meta .cate span._important {
	color: #CE433D;
	background-color: #F4D7D6;
}
#sec_news .news_list .item .meta .cate span._news {
	color: #6A6360;
	background-color: #DFDEDD;
}
#sec_news .news_list .item .meta .cate span._new {
	color: #79C300;
	background-color: #E3F2D2;
}
#sec_news .news_list .item .meta .cate span._event {
	color: #41b6e6;
	background-color: #D5F0F9;
}
#sec_news .news_list .item .ttl {
	flex: 0 1 auto;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0.09em;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
	#sec_news .news_list .item .ttl {
		font-size: 2rem;
		margin-top: 1em;
	}
}
#sec_news .news_list .item .ttl::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #6B6460;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}
@media (any-hover: hover) {
	#sec_news .news_list .item a:hover .ttl::after {
		transform: scaleX(1);
	}
}

/* pagetop
--------------------------------*/
@media screen and (max-width: 767px) {
	.pagetop {
		bottom: 12rem;
	}
	.fixed_shop_btn.is-hidden + .pagetop {
		bottom: 2rem;
	}
}