@charset "UTF-8";
/* 共通スタイル */
:root {
	--color-item-red: #e70013;
	--color-white: #fff;
	--color-item-berge: #dabfab;
	--color-item-blue: #004387;
	--color-item-black: #000;
	--color-item-gray: #adb1b2;
	--border-gray: #ddd;
}
.only_pc {
	display: none;
}
.only_sp {
	display: block;
}

@media screen and (min-width: 768px) {
	.only_pc {
		display: block;
	}
	.only_sp {
		display: none;
	}
}

/* kv */
#kv .ttl {
	margin: 0;
}

/* concept */
#concept .inner {
	width: min(1120px,calc(100dvw - 4.0rem));
	padding: calc(120 / 750 * 100vw) 0 0;
	margin: 0 auto;
}
#concept .inner .txt {
	font-size: 1.456rem;
	line-height: 2;
	text-align: center;
}
#concept .inner .txt .red {
	color: var(--color-red);
	font-weight: 700;
	text-decoration: underline;
}
#concept .inner .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.04rem;
	margin-top: calc(160 / 750 * 100vw);
}
#concept .inner .menu .item {
	width: 100%;
	height: calc(112 / 750 * 100vw);
}
#concept .inner .menu .item a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	border: 0.2rem solid;
	border-radius: calc(16 / 750 * 100vw);
	font-size: 1.456rem;
	font-weight: 500;
	line-height: 1;
}
#concept .inner .menu .item a .arrow {
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: calc(40 / 750 * 100vw);
	margin: auto 0;
	width: calc(35.1 / 750 * 100vw);
	height: calc(19.6 / 750 * 100vw);
}
#concept .inner .menu .item a .arrow::before,
#concept .inner .menu .item a .arrow::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: calc(2 / 750 * 100vw);
	height: calc(20 / 750 * 100vw);
	border-radius: 9999px;
	background-color: var(--text-color);
	transform-origin: 50% calc(100% - calc(1 / 750 * 100vw));
}
#concept .inner .menu .item a .arrow::before {
	transform: rotate(45deg);
}
#concept .inner .menu .item a .arrow::after {
	transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
	#concept .inner {
		padding: 16rem 0 0;
	}
	#concept .inner .txt {
		font-size: 2.4rem;
	}
	#concept .inner .menu {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		gap: 4rem;
		margin: 0 auto;
		margin-top: 16rem;
	}
	#concept .inner .menu .item {
		height: 12rem;
	}
	#concept .inner .menu .item a {
		padding: 0 6rem;
		border: 0.2rem solid;
		border-radius: 1.6rem;
		font-size: 2.8rem;
		line-height: 1.25;
	}
	#concept .inner .menu .item a .arrow {
		right: 3.2rem;
		width: 3.5rem;
		height: 1.3rem;
	}
	#concept .inner .menu .item a .arrow::before,
	#concept .inner .menu .item a .arrow::after {
		left: calc(50% - 0.1rem);
		width: 0.2rem;
		height: 1.6rem;
		transform-origin: 50% calc(100% - 0.1rem);
	}
}

/* recommend */
#recommend .inner {
	width: min(1120px,calc(100dvw - 4.0rem));
	padding: calc(160 / 750 * 100vw) 0 calc(160 / 750 * 100vw);
	margin: 0 auto;
}
#recommend .inner .ttl {
	width: calc(588 / 750 * 100vw);
	margin: 0 auto;
}
#recommend .inner .heading {
	margin: calc(40 / 750 * 100vw) 0;
	font-size: 1.456rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}
#recommend .inner .heading span::before {
	content: "[";
	display: inline-block;
	padding-right: calc(20 / 750 * 100vw);
	font-size: 1.6rem;
	font-weight: 400;
}
#recommend .inner .heading span::after {
	content: "]";
	display: inline-block;
	padding-left: calc(20 / 750 * 100vw);
	font-size: 1.6rem;
	font-weight: 400;
}
#recommend .inner [class*="subheading"] {
	margin: calc(80 / 750 * 100vw) 0 0;
}
#recommend .inner [class*="subheading"]:not(:first-of-type) {
	margin-top: calc(120 / 750 * 100vw);
}
#recommend .inner .recommend-swiper {
	margin-top: calc(64 / 750 * 100vw);
	overflow-y: visible;
}
#recommend .inner .recommend-swiper .swiper-pagination {
	position: static;
	margin-top: calc(16 / 750 * 100vw);
	line-height: 1;
}
#recommend .inner .recommend-swiper .swiper-pagination .swiper-pagination-bullet {
	width: calc(16 / 750 * 100vw);
	height: calc(16 / 750 * 100vw);
	margin: 0 calc(5 / 750 * 100vw);
	border: 0.2rem solid var(--color-red);
	box-sizing: border-box;
	background: transparent;
	opacity: 1;
}
#recommend .inner .recommend-swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--color-red);
}
#recommend .inner .catch {
	display: flex;
	justify-content: center;
	align-items: baseline;
	width: 100%;
	padding: calc(30 / 750 * 100vw) 0 calc(24 / 750 * 100vw);
	margin-top: calc(48 / 750 * 100vw);
	line-height: 1;
	border-top: 0.2rem solid;
	border-bottom: 0.2rem solid;
}
#recommend .inner .catch .txt {
	font-size: 1.56rem;
	font-weight: 600;
	line-height: 1;
}
#recommend .inner .catch .value {
	margin-left: calc(16 / 750 * 100vw);
	font-family: var(--font-jost);
	font-size: 2.912rem;
	font-weight: 500;
	letter-spacing: -0.05em;
}
#recommend .inner .catch .value .en {
	font-size: 2.08rem;
}
#recommend .inner .catch .tax {
	margin-left: calc(12 / 750 * 100vw);
	font-family: var(--font-default);
	font-size: 1.4rem;
	font-weight: 500;
}
#recommend .inner .item-list {
	display: flex;
	flex-direction: column;
	gap: calc(24 / 750 * 100vw);
	margin-top: calc(64 / 750 * 100vw);
}
#recommend .inner .item-list .item {
	background: var(--color-white);
	border-radius: calc(12 / 750 * 100vw);
	box-shadow: 0 calc(4 / 750 * 100vw) calc(16 / 750 * 100vw) rgba(0, 0, 0, 0.08);
}
#recommend .inner .item-list .item a {
	display: flex;
	gap: calc(40 / 750 * 100vw);
	width: 100%;
	height: 100%;
	padding: calc(20 / 750 * 100vw);
	transition: box-shadow 0.25s ease;
	text-decoration: none;
	color: inherit;
}
#recommend .inner .item-list .item a .item-img {
	width: calc(240 / 750 * 100vw);
	flex-shrink: 0;
}
#recommend .inner .item-list .item a .item-body {
	width: 100%;
	height: 100%;
}
#recommend .inner .item-list .item a .item-body .cat span {
	display: block;
	width: fit-content;
	padding: calc(4 / 750 * 100vw) calc(14 / 750 * 100vw);
	border: 0.2rem solid;
	border-radius: calc(8 / 750 * 100vw);
	color: var(--color-red);
	font-size: 1.04rem;
	font-weight: 600;
	line-height: 1;
}
#recommend .inner .item-list .item a .item-body .txt span {
	display: block;
	width: fit-content;
	padding: calc(6 / 750 * 100vw) calc(14 / 750 * 100vw);
	background-color: var(--color-red);
	color: var(--color-white);
	font-size: 1.04rem;
	font-weight: 500;
	line-height: 1;
}
#recommend .inner .item-list .item a .item-body .name {
	margin-top: calc(32 / 750 * 100vw);
	font-size: 1.456rem;
	font-weight: 600;
	line-height: 1.5;
}
#recommend .inner .item-list .item a .item-body .set {
	margin-top: calc(32 / 750 * 100vw);
	font-size: 1.248rem;
	font-weight: 600;
	line-height: 1;
}
#recommend .inner .item-list .item a .item-body .color {
	display: flex;
	gap: calc(10 / 750 * 100vw);
	margin-top: calc(24 / 750 * 100vw);
}
#recommend .inner .item-list .item a .item-body .color .red {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--border-gray);
	background-color: var(--color-item-red);
}
#recommend .inner .item-list .item a .item-body .color .white {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--border-gray);
	background-color: var(--color-white);
}
#recommend .inner .item-list .item a .item-body .color .berge {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--border-gray);
	background-color: var(--color-item-berge);
}
#recommend .inner .item-list .item a .item-body .color .blue {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--border-gray);
	background-color: var(--color-item-blue);
}
#recommend .inner .item-list .item a .item-body .color .gray {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--item-gray);
	background-color: var(--color-item-gray);
}
#recommend .inner .item-list .item a .item-body .color .black {
	width: calc(40 / 750 * 100vw);
	height: calc(40 / 750 * 100vw);
	border-radius: 50%;
	border: 0.2rem solid var(--border-gray);
	background-color: var(--color-item-black);
}
#recommend .inner .item-list .item a .item-body .value {
	margin-top: calc(24 / 750 * 100vw);
	font-family: var(--font-jost);
	font-size: 2.704rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.05em;
}
#recommend .inner .item-list .item a .item-body .value .en {
	font-size: 2.08rem;
}
#recommend .inner .item-list .item a .item-body .tax {
	font-family: var(--font-default);
	font-size: 1.248rem;
	font-weight: 500;
	line-height: 1;
}
#recommend .inner .item-list .item a.set_mt {
	margin-top: calc(48 / 750 * 100vw);
}
#recommend .inner .item-list .item.plus {
	position: relative;
	margin-bottom: calc(76 / 750 * 100vw);
}
#recommend .inner .item-list .item.plus .item-plus {
	position: absolute;
	right: 0;
	left: 0;
	bottom: calc(-50 / 750 * 100vw);
	display: inline-block;
	vertical-align: middle;
	color: var(--color-red);
	line-height: 1;
	width: calc(40 / 750 * 100vw);
	height: calc(4 / 750 * 100vw);
	margin: 0 auto;
	background: currentColor;
}
#recommend .inner .item-list .item.plus .item-plus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
}
#recommend .inner .item-list .item.line {
	position: relative;
	margin-bottom: calc(76 / 750 * 100vw);
}
#recommend .inner .item-list .item.line .item-line {
	position: absolute;
	right: 0;
	left: 0;
	bottom: calc(-50 / 750 * 100vw);
	line-height: 1;
	width: 100%;
	height: 1px;
	background: currentColor;
}
#recommend .inner .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(120 / 750 * 100vw);
	margin-top: calc(80 / 750 * 100vw);
	background-color: var(--color-red);
	color: var(--color-white);
	font-size: 1.664rem;
	font-weight: 500;
	line-height: 1;
}

@media screen and (min-width: 768px) {
	#recommend .inner {
		padding: 16rem 0 16rem;
	}
	#recommend .inner .ttl {
		width: 58.8rem;
	}
	#recommend .inner .heading {
		margin: 4rem 0;
		font-size: 2.4rem;
	}
	#recommend .inner .heading span::before {
		padding-right: 2rem;
		font-size: 2.8rem;
	}
	#recommend .inner .heading span::after {
		padding-left: 2rem;
		font-size: 2.8rem;
	}
	#recommend .inner [class*="subheading"] {
		width: 67rem;
		margin: 12rem auto 0;
	}
	#recommend .inner [class*="subheading"]:not(:first-of-type) {
		margin-top: 16rem;
	}
	#recommend .inner .recommend-swiper {
		margin-top: 8rem;
	}
	#recommend .inner .recommend-swiper .swiper-pagination {
		margin-top: 1.6rem;
	}
	#recommend .inner .recommend-swiper .swiper-pagination .swiper-pagination-bullet {
		width: 1.6rem;
		height: 1.6rem;
		margin: 0 0.5rem;
		border: 0.2rem solid var(--color-red);
	}
	#recommend .inner .catch {
		padding: 2.4rem 0 2rem;
		margin-top: 6.4rem;
		border-top: 0.2rem solid;
		border-bottom: 0.2rem solid;
	}
	#recommend .inner .catch .txt {
		font-size: 2.8rem;
	}
	#recommend .inner .catch .value {
		margin-left: 1.6rem;
		font-size: 5.6rem;
	}
	#recommend .inner .catch .value .en {
		font-size: 4rem;
	}
	#recommend .inner .catch .tax {
		margin-left: 1.4rem;
		font-size: 2rem;
	}
	#recommend .inner .item-list {
		gap: 2rem;
		margin-top: 6.4rem;
	}
	#recommend .inner .item-list .item {
		background: var(--color-white);
		border-radius: 1.2rem;
		box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.12);
	}
	#recommend .inner .item-list .item a {
		display: flex;
		gap: 4.8rem;
		padding: 2rem;
		transition: box-shadow 0.25s ease;
		text-decoration: none;
		color: inherit;
	}
	#recommend .inner .item-list .item a .item-img {
		width: 21rem;
	}
	#recommend .inner .item-list .item a .item-body {
		display: flex;
		flex-direction: column;
	}
	#recommend .inner .item-list .item a .item-body .cat span {
		padding: 0.6rem 1rem;
		border: 0.1rem solid;
		border-radius: 0.6rem;
		font-size: 1.4rem;
	}
	#recommend .inner .item-list .item a .item-body .txt span {
		padding: 0.6rem 1rem;
		font-size: 1.6rem;
	}
	#recommend .inner .item-list .item a .item-body .name {
		margin-top: 2.4rem;
		font-size: 2.4rem;
	}
	#recommend .inner .item-list .item a .item-body .set {
		margin-top: 3.6rem;
		font-size: 2rem;
	}
	#recommend .inner .item-list .item a .item-body .color {
		display: flex;
		gap: 0.8rem;
		margin-top: 2.4rem;
	}
	#recommend .inner .item-list .item a .item-body .color .red {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--border-gray);
	}
	#recommend .inner .item-list .item a .item-body .color .white {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--border-gray);
	}
	#recommend .inner .item-list .item a .item-body .color .berge {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--border-gray);
	}
	#recommend .inner .item-list .item a .item-body .color .blue {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--border-gray);
	}
	#recommend .inner .item-list .item a .item-body .color .gray {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--item-gray);
	}
	#recommend .inner .item-list .item a .item-body .color .black {
		width: 3.2rem;
		height: 3.2rem;
		border: 0.1rem solid var(--border-gray);
	}
	#recommend .inner .item-list .item a .item-body .value {
		margin-top: 3rem;
		font-size: 4.8rem;
	}
	#recommend .inner .item-list .item a .item-body .value .en {
		font-size: 3.2rem;
	}
	#recommend .inner .item-list .item a .item-body .tax {
		font-size: 1.8rem;
	}
	#recommend .inner .item-list .item a.set_mt {
		margin-top: 8rem;
	}
	#recommend .inner .item-list .item.plus {
		margin-bottom: 6rem;
	}
	#recommend .inner .item-list .item.plus .item-plus {
		bottom: -4rem;
		width: 4rem;
		height: 0.4rem;
	}
	#recommend .inner .item-list .item.line {
		margin-bottom: 6rem;
	}
	#recommend .inner .item-list .item.line .item-line {
		bottom: -4rem;
		height: 1px;
	}
	#recommend .inner .btn {
		width: 50rem;
		height: 8rem;
		margin: 0 auto;
		margin-top: 8rem;
		font-size: 2.4rem;
	}
}

/* gift */
#gift .inner {
	width: min(1280px,calc(100dvw - 4.0rem));
	padding: 0 0 calc(120 / 750 * 100vw);
	margin: 0 auto;
}
#gift .inner .ttl {
	margin: 0;
}

@media screen and (min-width: 768px) {
	#gift .inner {
		padding: 0 0 16rem;
	}
}

/* fl_bnr */
.fl_bnr {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fl_bnr.show {
	opacity: 1;
	visibility: visible;
}

.fl_bnr.hide-footer {
	opacity: 0;
	visibility: hidden;
}
.fl_bnr.is-all-hidden {
	opacity: 0!important;
	visibility: hidden!important;
}
@media screen and (min-width: 768px) {
	.fl_bnr {
		width: 56rem;
	}
}

.fl_bnr_close {
	display: none;
	position: absolute;
	z-index: 10;
	top: -2rem;
	left: -2rem;
	cursor: pointer;
	width: 4rem;
	height: 4rem;
}
@media screen and (min-width: 768px) {
	.fl_bnr_close {
		display: block;
	}
}