@charset "Shift_JIS";

/* ============================================================
	imini "商品一覧" Layout CSS
	Last UPDATA: 2023/1/23
============================================================ */
/* breadclumb */
.breadclumb {
	display: none;
}
@media screen and (min-width: 769px){
	.breadclumb {
		display: block;
		width: 980px;
		margin: 45px auto 0;
		padding: 0;
		font-size: 13px;
	}
}

.breadclumb a {
	text-decoration: none;
}

.breadclumb a:hover {
	text-decoration: underline;
}

.breadclumb .current {
	color: #a5a5a5;
}

/* main */
#main {
	width: 100%;
	margin: 0 auto 40px;
	padding: 0;
}
@media screen and (min-width: 769px){
	#main {
		margin: 25px auto 90px;
	}
}

.main-image {
	width: 100%;
	margin: 0;
}
.main-image img {
	width: 100%;
	height: auto;
}

.main-title {
	width: 80%;
	margin: 36px auto 0;
	text-align: center;
}
@media screen and (min-width: 769px){
	.main-title {
		width: 100%;
		max-width: 980px;
		margin: 70px auto 0;
	}
}

.main-title > span {
	display: block;
	padding: 0 calc(74 / 750 * 100vw);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.25;
	position: relative;
}
@media screen and (min-width: 769px){
	.main-title > span {
		display: inline-block;
		padding: 0 58px 0 61px;
		font-size: 24px;
		letter-spacing: 0.025em;
	}
}

.main-title > span::before,
.main-title > span::after {
	content: "";
	display: block;
	position: absolute;
	width: calc(74 / 750 * 100vw);
	height: calc(100 / 750 * 100vw);
	top: calc(50% - calc(50 / 750 * 100vw));
}

.main-title > span::before {
	background: url(../img/product_title_deco_l.png) no-repeat;
	background-size: contain;
	left: 0;
}
@media screen and (min-width: 769px){
	.main-title > span::before {
		width: 51px;
		height: 70px;
		top: calc(50% - 35px);
	}
}

.main-title > span::after {
	background: url(../img/product_title_deco_r.png) no-repeat;
	background-size: contain;
	right: 0;
}
@media screen and (min-width: 769px){
	.main-title > span::after {
		width: 48px;
		height: 66px;
		top: calc(50% - 33px);
	}
}

/* section */
.section.skincare {
	width: calc(600 / 750 * 100vw);
	margin: 25px auto 48px;
}
@media screen and (min-width: 769px){
	.section.skincare {
		width: 100%;
		max-width: 980px;
		margin: 45px auto 0;
	}
}

.section ~ .section {
	margin: 40px 0 0;
	padding: 30px 0 0;
	border-top: solid 1px #e5e5e5;
}
@media screen and (min-width: 769px){
	.section ~ .section {
		margin: 0;
		padding: 40px auto 0;
	}
}

.product-list {
	margin: 25px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 15px;
}
@media screen and (min-width: 769px){
	.product-list {
		margin: 0;
		gap: 50px 70px;
	}
}

.product-list-item {
	width: calc((100% - 15px) / 2);
	padding: 48px 0 0;
	position: relative;
}
@media screen and (min-width: 769px){
	.product-list-item {
		width: 280px;
		padding: 53px 0 0;
	}
}


.item a {
	display: block;
	color: #000000;
	text-decoration: none;
}

.icon-list {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 6px;
}
@media screen and (min-width: 769px){
	.icon-list {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		gap: 6px;
	}
}

.icon-list li {
	width: calc((100% - 6px) / 2);
	margin: 0;
	padding: 0;
	/* padding: 5px 0 4px; */
	background: #ffffff;
	border: none;
	/* border: solid 1px #000000; */
	color: #000000;
	font-size: 10px;
	line-height: 1;
	text-align: center;
}
@media screen and (min-width: 769px){
	.icon-list li {
		width: 88px;
		padding: 0;
		/* padding: 4px 0 3px; */
		font-size: 12px;
	}
}

/*.icon-list li.icon-seller {
	border: solid 1px #ff0137;
	color: #ff0137;
}*/

.item-catch {
	display: inline-block;
	margin: 13px 0 0;
	padding: 6px 8px 5px;
	background: #f6f3e7;
	color: #000000;
	font-size: min(calc(20 / 750 * 100vw), 10px);
	letter-spacing: 0.025em;
	line-height: 1;
	text-align: center;
}
@media screen and (min-width: 769px){
	.item-catch {
		margin: 16px 0 0;
		padding: 5px 8px 4px;
		font-size: 12px;
	}
}

.item-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.item-name {
	margin: 5px 0 0;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.025em;
}
@media screen and (min-width: 769px){
	.item-name {
		margin: 11px 0 0;
		font-size: 16px;
	}
}

a:hover .item-name {
	text-decoration: underline;
}

.item-price {
	width: 90%;
	margin: 0 auto;
}
@media screen and (min-width: 769px){
	.item-price {
		width: 244px;
	}
}

.item-price-wrap {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 22px;
}
@media screen and (min-width: 769px){
	.item-price-wrap {
		margin-top: 20px;
	}
}

.item-price-label, .item-price-num {
	margin: 0;
	flex-shrink: 0;
}

.item-price-label {
	width: auto;
}

.item-price-label-text {
	font-size: min(2.67vw,10px);
	font-weight: 400;
}
@media screen and (min-width: 769px){
	.item-price-label-text {
		font-size: 12px;
		font-weight: 700;
	}
}

.item-price-num {
	width: auto;
	font-size: min(4vw,15px);
	font-weight: 700;
	line-height: 1;
	text-align: right;
}
@media screen and (min-width: 769px){
	.item-price-num {
		font-size: 16px;
	}
}

.item-price-num .tax {
	display: inline-block;
	font-size: min(2.67vw,10px);
	font-weight: 400;
	line-height: 1;
	margin-left: 0.16em;
	position: relative;
	top: -1px;
}
@media screen and (min-width: 769px){
	.item-price-num .tax {
		font-size: 12px;
	}
}

/* 特別価格 */
.item-price-wrap.sale {
	margin-top: 7px;
}
@media screen and (min-width: 769px){
	.item-price-wrap.sale {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		margin-top: 4px;
	}
}

.item-price-wrap.sale .item-price-label,
.item-price-wrap.sale .item-price-num {
	color: #ff0137;
}

.item-price-wrap.sale .item-price-label-text {
	font-size: min(3.2vw,12px);
	font-weight: 700;
}
@media screen and (min-width: 769px){
	.item-price-wrap.sale .item-price-label-text {
		font-size: 12px;
		font-weight: 700;
	}
}

.item-price-wrap.sale .item-price-num {
	margin-top: 4px;
	font-size: min(4.267vw,16px);
	font-weight: 700;
	line-height: 1;
	text-align: right;
}
@media screen and (min-width: 769px){
	.item-price-wrap.sale .item-price-num {
		margin-top: 0;
		font-size: 20px;
	}
}

/* 通常価格打ち消し線 */
.item-price-wrap.regular {
	position: relative;
}
.item-price-wrap.regular::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #000000;
	top: 50%;
	left: 0;
	z-index: 1;
}

.item-cart {
	display: block;
	width: 90%;
	margin: 12px auto 0;
	padding: 0;
	text-align: center;
}
@media screen and (min-width: 769px){
	.item-cart {
		width: 244px;
		margin: 10px auto 0;
	}
}

.item-cart a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 33px;
	padding: 0;
	border: solid 1px #333333;
	border-radius: 25px;
	background: #ffffff;
	color: #333333;
	font-size: 14px;
	text-decoration: none;
	line-height: 1;
}
@media screen and (min-width: 769px){
	.item-cart a {
		height: 44px;
		border-radius: 27px;
		font-size: 12px;
	}
}

.item-cart a:hover {
	cursor: pointer;
	background: #333333;
	color: #ffffff;
}

/* 定期購入 */
.item-teiki-wrap {
	width: 100%;
	margin: 14px auto 0;
	padding: 11px 7px 14px;
	background: #f6f3e7;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap {
		margin: 11px auto 0;
		padding: 18px 18px 25px;
	}
}

.item-teiki-wrap .price-teiki {
	width: 100%;
	margin: 0;
}

.item-teiki-wrap .price-wrap {
	display: block;
}

.item-teiki-wrap .price-label, .item-teiki-wrap .price-num {
	width: 100%;
}

.item-teiki-wrap .price-label-text {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.001em;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .price-label-text {
		font-size: 12px;
	}
}

.item-teiki-wrap .price-label-icon-list {
	margin-top: 7px;
	display: flex;
	flex-wrap: wrap;
	gap: calc(12 / 750 * 100vw);
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .price-label-icon-list {
		margin-top: 3px;
		gap: 6px;
	}
}

.item-teiki-wrap .price-label-icon-list-item {
	height: 21px;
}

.item-teiki-wrap .price-label-icon-list-item img {
	display: block;
	width: auto;
	height: 100%;
	image-rendering: -webkit-optimize-contrast;
}

.item-teiki-wrap .price-label-icon-list-item span {
	display: block;
	color: #ffffff;
	font-size: min(2.63vw,10px);
	font-weight: 700;
	line-height: 20px;
	background-color: #ff0137;
	padding: 1px 0.7em 0;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .price-label-icon-list-item span {
		font-size: 12px;
	}
}

.item-teiki-wrap .price-label-icon-list-item sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.3em;
}

.item-teiki-wrap .price-num {
	margin-top: 14px;
	color: #ff0137;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: right;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .price-num {
		margin-top: 14px;
		font-size: 16px;
	}
}

.item-teiki-wrap .price-num .tax {
	display: inline-block;
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	margin-left: 0.16em;
	position: relative;
	top: -1px;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .price-num .tax {
		font-size: 12px;
	}
}

.teiki-attention {
	margin-top: 6px;
	font-size: 10px;
	letter-spacing: initial;
	line-height: 1.5;
}
@media screen and (min-width: 769px){
	.teiki-attention {
		margin-top: 10px;
		font-size: 12px;
	}
}

.item-teiki-wrap .cart-teiki {
	width: 100%;
	margin: 10px 0 0;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .cart-teiki {
		margin: 11px 0 0;
	}
}

.item-teiki-wrap .btn-cart-teiki {
	margin: 10px auto 0;
	flex-shrink: 0;
	width: 100%!important;
	text-align: center;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .btn-cart-teiki {
		margin: 0 auto;
		width: 244px!important;
	}
}

.item-teiki-wrap .btn-cart-teiki a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 33px;
	padding: 0;
	border: solid 1px #ac7717;
	border-radius: 25px;
	background: #ac7717;
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
	letter-spacing: 0.025em;
	line-height: 1;
}
@media screen and (min-width: 769px){
	.item-teiki-wrap .btn-cart-teiki a {
		height: 44px;
		border-radius: 22px;
	}
}

.item-teiki-wrap .btn-cart-teiki a:hover {
	cursor: pointer;
	background-color: transparent;
	color: #ac7717;
}

.sup-cart-teiki {
	margin: 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 769px){
	.sup-cart-teiki {
		padding-bottom: 13px;
	}
}

.sup-cart-teiki button.openmodal-teiki {
	display: block;
	margin: 12px auto 0;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: underline;
}
@media screen and (min-width: 769px){
	.sup-cart-teiki button.openmodal-teiki {
		margin: 16px 0 0 auto;
		font-size: 12px;
		line-height: 1;
		text-align: right;
	}
}

/* モーダルCSS */
.modalarea-teiki {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

.modalbg-teiki {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.9);
}

.modalwrap-teiki {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 95%;
}
@media screen and (min-width: 769px){
	.modalwrap-teiki {
		width: 100%;
		max-width: 940px;
		max-height: calc(100vh - 120px);
	}
}

.title-modalbox {
	color: #ffffff;
	font-weight: normal;
	font-size: 20px;
}
@media screen and (min-width: 769px){
	.title-modalbox {
		font-size: 32px;
	}
}

.text-modalbox {
	margin: 15px 0 0;
	color: #ffffff;
	font-size: 12px;
}
@media screen and (min-width: 769px){
	.text-modalbox {
		margin: 20px 0 0;
		font-size: 16px;
	}
}

.img-modalbox {
	margin: 15px 0 0;
}
@media screen and (min-width: 769px){
	.img-modalbox {
		margin: 30px 0 0;
	}
	.img-modalbox img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: calc(100vh - 280px);
		margin: 0 auto;
	}
}

.closemodal-teiki {
	position: absolute;
	top: -60px;
	right: 0;
	cursor: pointer;
	color: #ffffff;
	font-size: 30px;
	display: flex;
	align-items: center;
}
@media screen and (min-width: 769px){
	.closemodal-teiki {
		font-size: 60px;
	}
}

.closemodal-teiki span {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	margin: 0 0 0 0.3em;
	letter-spacing: 0.1em;
}
@media screen and (min-width: 769px){
	.closemodal-teiki span {
		font-size: 16px;
	}
}

/* ボタンスタイル */
.sup-cart-teiki button {
	background-color: transparent;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
}

.sup-cart-teiki button:hover {
	text-decoration: underline;
}


/* 通常購入 */
.price,.price-wrap {
	margin: 0;
}

.cartin {
	width: 100%;
	margin: 16px 0 0;
	display: flex;
	justify-content: space-between;
}
@media screen and (min-width: 769px){
	.cartin {
		margin: 25px 0 0;
	}
}

.btn-cartin-wrapper {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: calc(438 / 750 * 100vw);
	text-align: center;
}
@media screen and (min-width: 769px){
	.btn-cartin-wrapper {
		max-width: 339px;
	}
}

.btn-cartin {
	display: block;
	width: 100%;
	height: calc(100 / 750 * 100vw);
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 769px){
	.btn-cartin {
		height: 54px;
	}
}

.btn-cartin input {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100 / 750 * 100vw);
	padding: 0;
	border: solid 1px #333333;
	border-radius: 25px;
	background: #333333;
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	line-height: 1;
}
@media screen and (min-width: 769px){
	.btn-cartin input {
		height: 54px;
		border-radius: 27px;
		font-size: 16px;
	}
}

.btn-cartin input:hover {
	cursor: pointer;
	background-color: transparent;
	color: #333333;
}

/* ========================================
	recommend
======================================== */
.section.recommend {
	width: 100%;
	margin: 50px 0 0;
	padding: 47px 0 0;
	border-top: solid 1px #e5e5e5;
}
@media screen and (min-width: 769px){
	.section.recommend {
		max-width: 980px;
		margin: 50px auto 0;
		padding: 50px 0 0;
	}
}

.title-section {
	width: calc(650 / 750 * 100vw);
	margin: 0 auto;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.5;
}
@media screen and (min-width: 769px){
	.title-section {
		width: 100%;
		font-size: 24px;
	}
}

.title-section ~ .title-section {
	margin-top: 45px;
}
@media screen and (min-width: 769px){
	.title-section ~ .title-section {
		margin-top: 68px;
	}
}

/* rank-slider */
.rank-slider-wrapper {
	width: 100%;
	position: relative;
}
@media screen and (min-width: 769px){
	.rank-slider-wrapper {
		max-width: 1080px;
		margin: 0 auto;
	}
}

.product-rank-slider.swiper {
	width: calc(650 / 750 * 100vw);
	margin: 19px auto 0;
}
@media screen and (min-width: 769px){
	.product-rank-slider.swiper {
		width: 100%;
		max-width: 980px;
		margin: 17px auto 0;
	}
}

.rank-slider-wrapper .swiper-button-next, .rank-slider-wrapper .swiper-button-prev {
	top: calc(50% - (37 / 750 * 100vw));
	width: calc(74 / 750 * 100vw);
	height: calc(74 / 750 * 100vw);
	z-index: 1;
}
@media screen and (min-width: 769px){
	.rank-slider-wrapper .swiper-button-next, .rank-slider-wrapper .swiper-button-prev {
		top: calc(50% + 8px);
		width: 50px;
		height: 50px;
	}
}

.swiper-button-next {
	right: 0;
}
.swiper-button-prev {
	left: 0;
}
@media screen and (min-width: 769px){
	.rank-slider-wrapper .swiper-button-next {
		right: -50px;
	}
	.rank-slider-wrapper .swiper-button-prev {
		left: -50px;
	}
}

.product-rank-slider .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color,#242424);
	opacity: var(1, .25);
}

.product-rank-slider.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.product-rank-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,10px);
}

.product-rank-slider.swiper-horizontal > .swiper-pagination-bullets {
	bottom: 0;
}

.rank-item-name {
	font-size: 12px;
	font-weight: 700;
}
@media screen and (min-width: 769px){
	.rank-item-name {
		font-size: 16px;
		line-height: 1.6;
	}
}

.rank-item-price {
	font-size: 12px;
}
@media screen and (min-width: 769px){
	.rank-item-price {
		font-size: 15px;
	}
}

.rank-item-price .tax {
	font-size: 10px;
}

/* recent-slider */
.recent-slider-wrapper {
	width: 100%;
	position: relative;
}
@media screen and (min-width: 769px){
	.recent-slider-wrapper {
		max-width: 1080px;
		margin: 0 auto;
	}
}

.recent-slider.swiper {
	width: calc(650 / 750 * 100vw);
	margin: 23px auto 0;
	padding-bottom: 35px;
}
@media screen and (min-width: 769px){
	.recent-slider.swiper {
		width: 100%;
		max-width: 980px;
		margin: 15px auto 0;
		padding-bottom: 0;
	}
}

.recent-slider-wrapper .swiper-button-next, .recent-slider-wrapper .swiper-button-prev {
	top: calc(50% - (37 / 750 * 100vw));
	width: calc(74 / 750 * 100vw);
	height: calc(74 / 750 * 100vw);
	z-index: 1;
}
@media screen and (min-width: 769px){
	.recent-slider-wrapper .swiper-button-next, .recent-slider-wrapper .swiper-button-prev {
		top: 180px;
		width: 50px;
		height: 50px;
	}

	.recent-slider-wrapper .swiper-button-next {
		right: -50px;
	}

	.recent-slider-wrapper .swiper-button-prev {
		left: -50px;
	}
}

.recent-slider-wrapper .swiper-button-next::after,
.recent-slider-wrapper .swiper-button-prev::after {
	font-size: 0;
	content: "";
	width: 100%;
	height: 100%;
}

.recent-slider-wrapper .swiper-button-next::after {
	background: url(/component/top/img/arrow_top_rank_r.png) no-repeat;
	background-size: contain;
}

.recent-slider-wrapper .swiper-button-prev::after {
	background: url(/component/top/img/arrow_top_rank_l.png) no-repeat;
	background-size: contain;
}

.recent-slider-wrapper .swiper-button-next:hover::after {
	background: url(/component/top/img/arrow_top_rank_r_on.png) no-repeat;
	background-size: contain;
}

.recent-slider-wrapper .swiper-button-prev:hover::after {
	background: url(/component/top/img/arrow_top_rank_l_on.png) no-repeat;
	background-size: contain;
}

.recent-slider-wrapper .swiper-button-disabled {
	display: none;
}

.recent-slider .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color,#242424);
	opacity: var(1, .25);
}

.recent-slider.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.recent-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,10px);
}

.recent-slider.swiper-horizontal > .swiper-pagination-bullets {
	bottom: 0;
}

.recent-item-text {
	margin-top: 10px;
}
@media screen and (min-width: 769px){
	.recent-item-text {
		margin-top: 10px;
	}
}

.recent-item-name {
	font-size: 12px;
	font-weight: 700;
}
@media screen and (min-width: 769px){
	.recent-item-name {
		width: 90%;
		margin: 20px auto 0;
		font-size: 16px;
		line-height: 1.6em;
		letter-spacing: 0.001em;
	}

	.recent-list-item a:hover .recent-item-name {
		text-decoration: underline;
	}
}

.recent-item-price {
	font-size: 12px;
}
@media screen and (min-width: 769px){
	.recent-item-price {
		width: 90%;
		margin: 1px auto 0;
		font-size: 15px;
		line-height: 1;
	}
}

.recent-item-price .tax {
	font-size: 10px;
}
@media screen and (min-width: 769px){
	.recent-item-price .tax {
		margin: 0 0 0 6px;
		font-size: 12px;
	}
}

#body .fieldset-vertical.block-search-goods--condition-items {
	margin: calc(40 / 750 * 100vw) calc(46 / 750 * 100vw) calc(100 / 750 * 100vw);
}