@charset "utf-8";
/* 画面共通のスタイルを定義 */

/*--------------------------------------------------------
	変数
-------------------------------------------------------*/
:root {
	/* カラー */
	--color-corporate: #0b318f;
	--color-accent: #c09424;
	--text-color: #333;
	--text-color-strong: #2B2B2B;
	--text-color-sub: #a6a6a6;
	--text-color-sub2: #454545;
	--text-color-accent: #0a3190;
	--text-color-accent-sub: #022D95;
	--text-color-alert: #d20000;
	--text-color-link: #0061b8;
	--bg-color-basic: #fff;
	--bg-color-section: #edf3fa;
	--bg-color-sub: #ebedf2;
	--bg-color-sub2: #e6ebf9;
	--bg-color-alert: #d20000;
	--bg-color-l-gray: #f8f8f8;
	--bg-required: #FFDBDB;
	--border-color-alert: #e00000;
	--border-color-table: #d0d7e5;
	--border-color-section: #d0d7e5;
	--border-color-separate: #d0d7e5;
	--border-color-img: #d0d7e5;
	--border-color-goods-list: #d0d7e5;
	--input-border-color: #7B9EBD;

	--cont-width: calc(100% - 20px);
	--color-gold: #ad982c;
	--color-silver: #a3a9ad;
	--color-bronze: #c7864e;
	--color-btn: var(--color-corporate);
	--icon-cmn: url(../images/cmn/icon/icon.png);
	--icon-Flight: url(../images/cmn/icon/icon_flight.png);

	/* 余白 */
	--screen-pd-lr: clamp(10px, 0.398rem + 1.14vw, 20px);
	--section-bottom: clamp(20px, -10px + 5vw, 40px);

	/* フォントサイズ */
	--font-size-base: 16px;
	--font-size-s: .875rem;
	--font-size-ss: .75rem;

	/* アイコン */
	--icon-cart-wh: url(../images/cmn/icon/icon_cart_white.svg) no-repeat center center;
}

/*--------------------------------------------------------
	共通
-------------------------------------------------------*/
html,
body {
	font: var(--font-size-base)/1.7 Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka;
	color: var(--text-color);
	background: var(--bg-color-basic);
	-webkit-text-size-adjust: 100%;
}

a,
a:visited,
a:link {
	color: var(--text-color-link);
	transition: 0.1s;
	text-decoration: none;

	&:has(img) {
		transition: 0.3s ease-in-out;
	}
}

a:hover {
	color: var(--text-color-accent);
	text-decoration: underline;

	& img {
		opacity: 0.7;
	}
}

a {
	&.icon_new_window {
		position: relative;
		display: inline-block;
		padding-right: calc(1em + 2px);

		&::after {
			content: "";
			position: absolute;
			right: 0;
			top: 0;
			bottom: 0;
			margin: auto;
			display: block;
			width: 1em;
			height: 1em;
			background: url(../images/cmn/icon/icon_window_black.png) no-repeat center center;
			background-size: contain;
		}
	}
}

img {
	transition: 0.3s ease-in-out;
}

select {
	border-radius: 0;
	border: 1px solid var(--input-border-color);
	padding: 6px;
}

/* ボタン */
.contents .buttonArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 30px 0;

	&:has(.returnLink) {
		flex-direction: column;
		align-items: stretch;

		& .buttonWrap,
		& .submitWrap {
			& .items {
				max-width: 300px;
				margin: 0 auto;

				& input {
					width: 100%;
				}
			}
		}

	}

	& .linkWrap {
		&:has(.returnLink) {
			order: 3;

			& .returnLink {
				display: block;
				width: fit-content;
				min-width: 0;
				min-height: 0;
				border: none;
				background-color: transparent;
				color: var(--text-color-accent-sub);
				font-size: .75rem;
				padding: 0 0 0 10px;
				background: url(../images/cmn/icon/arr03.gif) no-repeat left center;

				&:hover {
					opacity: 1;
				}
			}
		}
	}
}

@media screen and (max-width: 768px) {
	.contents .buttonArea {
		flex-direction: column;
		gap: 1em 0;

		& .itemWrap {
			width: 100%;

			&.itemWrap:has(.returnButton) {
				order: 3;
			}

			&+.itemWrap {
				margin-left: 0;
			}

			& .items {
				width: 80%;
				margin: 0 auto;
			}
		}

		&:has(.returnLink) {

			.buttonWrap,
			.submitWrap {
				& .items {
					max-width: 100%;
				}
			}

		}

		& .linkWrap {
			& .items {
				width: auto;
			}
		}

	}
}


input[type="button"],
input[type="submit"],
a[class*="btn_"],
input.btn_1[type="submit"],
input.btn_1[type="button"] {
	width: clamp(200px, 100%, 400px);
	max-width: 100%;
	min-width: 0;
	background-image: none;
	margin: auto;
	font-size: 1em;
	font-weight: normal;
	box-shadow: none;
	border-radius: 0;
	transition: 0.1s;
	line-height: 1.5;
	padding: 6px 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

input.btn_lg[type="button"],
a[class*="btn_"].returnButton {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: auto;
	font-size: 1em;
	box-shadow: none;
	transition: 0.1s;
	line-height: 1.5;
	padding: 14px 14px 14px 20px;
	text-align: center;
	background: linear-gradient(to bottom, #b2b2b2 0%, #5d5d5d 80%);
	color: #fff;
	border: none;
	border-radius: 5px;
}

input[type="button"]:hover,
a[class*="btn_"]:hover,
input.btn_1[type="button"]:hover,
input[type="submit"]:hover,
input.btn_1[type="submit"]:hover {
	opacity: 0.7;
}

a[class*="btn_"]:after,
input[type="button"]:after,
input[type="submit"]:after,
input[type="reset"]:after,
button[type="button"]:after,
button[type="submit"]:after,
button[type="reset"]:after {
	line-height: 13px;
	content: none;
}

a.link-btn:hover {
	border: 1px solid #A1D8E6;
}

a.btn_1,
input.btn_1[type="button"],
input.btn_1[type="submit"],
input.btn_1[type="reset"],
button.btn_1[type="button"],
button.btn_1[type="submit"],
button.btn_1[type="reset"] {
	border: none;
}

input[type="button"][class*="postCodeSearchButton" i] {
	display: inline-block;
	width: 150px;
	font-size: 0.9em;
	margin: 10px 0 0;
}

@media screen and (max-width: 768px) {

	#reminderButton,
	#saveButton,
	#confirmButton,
	#newButton,
	#addInqButton,
	#shoppingButton_link,
	input.btn_lg[type="button"].nextButton,
	input.btn_lg[type="submit"].nextButton,
	#returnButton,
	#cartButton_link,
	input.btn_lg[type="button"].backButton,
	input.btn_lg[type="submit"].backButton {
		width: 100%;
		height: auto;
		margin-bottom: 0;
		font-size: var(--font-size-s);
	}
}

/* 積極系ボタン（青） */
a.nextButton,
input.nextButton,
input.nextButton[type="button"],
input.nextButton[type="submit"] {
	background: linear-gradient(to bottom, #083da9 0%, #05297d 100%);
	color: #fff;
	border-radius: 5px;
	padding: 14px 30px;
	text-decoration: none;
}

/* 積極系ボタン（オレンジ） */
a.btn_1,
input.btn_1,
input.btn_1[type="button"],
input.btn_1[type="submit"],
input[type="submit"].saveButton,
input[type="submit"].confirmButton,
input[type="submit"].loginButton,
input[type="submit"].completeButton,
input[type="submit"].reminderButton,
input[type="button"].orderLink2,
input[type="button"].confirmButton,
input[type="button"].nextButton,
input.btn_1[type="button"].newButton,
input.btn_1[type="submit"].searchButton,
input.addInqButton[type="button"],
input.inquiryResponseAddConfirmButton[type="button"],
a[class*="btn_"].enqueteLink,
input.selectGoodsReOrderButton[type="button"],
input.reOrderButton[type="button"] {
	background: linear-gradient(to bottom, #fe9c21 0%, #f07403 51%, #df6900 80%);
	color: #fff;
	border-radius: 5px;
	padding: 14px 30px;
}

input[type="button"].nextButton:hover {
	color: #fff;
}

.linkWrap:has(.nextButton),
.buttonWrap:has(.nextButton),
.submitWrap:has(.nextButton) {
	& .items {
		position: relative;

		&::before {
			content: "";
			display: block;
			width: 7px;
			height: 10px;
			background: url(../images/cmn/icon/icon_type09.png) no-repeat center center;
			position: absolute;
			top: 0;
			bottom: 0;
			right: 20px;
			margin: auto 0;
			z-index: 1;
		}

		& input {
			width: 100%;
			min-width: 180px;
			padding: 14px 30px 14px 30px;
		}
	}
}

/* ログイン画面ボタン（水色） */
#netMemberAddGroup a.btn_1,
#memberRegisterGroup a.btn_1,
#guestButtonGroup input[type="button"].btn_1 {
	background-color: #A1D8E6;
	display: inline-block;
	text-align: center;
	transition: all .3s;
	position: relative;
	z-index: 2;
	padding: 10px 0;
	color: #4C4C4C;
}

/* マイページ系ボタン（水色） */
.goodsButtonArea a.btn_1,
.orderGoodsListGoodsNameCol a.btn_1 {
	background-color: #A1D8E6;
	display: inline-block;
	text-align: center;
	min-width: 180px;
	min-height: 36px;
	padding: 10px 0;
	color: #4C4C4C;
}

/* マイページ、レビュー投稿済 */
.reviewWrittenMsgItemWrap .reviewWrittenMsg,
.addedFavoriteMsgItemWrap .addedFavoriteMsg {
	display: inline-block;
	background: #ccc;
	text-align: center;
	min-width: 180px;
	min-height: 36px;
	padding: 10px 0;
	color: #4C4C4C;
	line-height: 1;
}

/*郵便番号検索ポップアップ*/
.btn_3.choice {
	border: 1px solid #ccc;
	background: #F6F6F6;
	color: #333;
}

.btn_3.choice:hover {
	opacity: 0.5;
	color: #666;
}

/* 消極系ボタン */
a[class*="btn_"].returnButton,
a[class*="btn_"].backButton {
	border: 1px solid #ccc;
}

a[class*="btn_"].returnButton:hover,
a[class*="btn_"].regularlyListButton:hover,
a[class*="btn_"].orderListButton:hover,
a[class*="btn_"].pointListButton:hover {
	opacity: 0.5;
	color: #666;
}

.buttonWrap:has(.returnButton),
.linkWrap:has(.returnButton) {
	& .items {
		position: relative;

		&::before {
			content: "";
			display: block;
			width: 7px;
			height: 10px;
			background: url(../images/cmn/icon/icon_type08.png) no-repeat center center;
			position: absolute;
			top: 0;
			bottom: 0;
			left: 20px;
			margin: auto 0;
			z-index: 1;
		}

		& input,
		& .returnButton {
			padding: 14px 30px 14px 40px;
			color: #fff;
			text-decoration: none;

			&:hover {
				opacity: .7;
			}
		}
	}
}

input[type="button"].button-default,
a.postCodeSearchLink {
	color: #000;
	background-color: #f0f0f0;
	border: 1px solid #000;
	font-size: .75rem;
	padding: 2px 6px;
	border-radius: 2px;
	width: auto;
	margin-right: 0;
	transition: 0.1s;
}

a.postCodeSearchLink:hover {
	text-decoration: none;
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.buttonArea {

		& .buttonWrap:has(.returnButton),
		& .linkWrap:not(:has(.returnLink)) {
			&.itemWrap .items {
				width: 80%;
			}
		}
	}

	/* 積極系ボタン（青） */
	a.nextButton,
	input.nextButton,
	input.nextButton[type="button"],
	input.nextButton[type="submit"] {
		width: 100%;
		font-size: var(--font-size-s);
		padding: 1em 20px;
	}

	.linkWrap:has(.nextButton),
	.buttonWrap:has(.nextButton),
	.submitWrap:has(.nextButton) {
		& .items {
			&::before {
				right: 10px;
			}
		}
	}

	.buttonWrap:has(.returnButton),
	.linkWrap:has(.returnButton) {
		& .items {

			& input,
			& .returnButton {
				font-size: var(--font-size-s);
			}
		}
	}
}


input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="button"],
input[type="submit"],
input[type="reset"],
button[type="button"],
button[type="submit"],
button[type="reset"],
textarea,
select {
	margin-right: 10px;
	width: 100%;
	max-width: 300px;
	border-radius: 0;
	border: 1px solid #7B9EBD;
	padding: 4px 6px;
}

/* チェックボックス、ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
	margin: 0 10px 0 0;
}


/* 入力：会員情報系 */
input.name {
	width: 180px;
}

.table .name-group {
	display: inline-block;
}

.table .exsample,
.table .password-word-count {
	display: inline-block;
	font-size: 90%;
}


/* 必須 */
.REQUIRED_LABEL {
	& .required {
		display: block;

		&::after {
			background: var(--bg-color-alert);
			border-radius: 0;
			float: none;
			margin: 0;
			padding: 2px 6px;
		}
	}
}

.requiredTitle::after {
	content: "必須";
	display: inline-block;
	background: var(--bg-color-alert);
	border-radius: 0;
	color: #fff;
	padding: 2px 10px;
	margin: 0 0 0 10px;
	font-weight: normal;
	font-size: 0.9em;
	min-width: 2em;
	text-align: center;
}

/* 条件付き必須 */
.required_condition {
	display: block;

	&::after {
		content: "必須";
		background: var(--bg-color-alert);
		border-radius: 0;
		margin: 0;
		padding: 2px 6px;
		float: none;
	}
}

@media screen and (max-width: 768px) {
	.required_condition {
		display: inline-block;
		margin-left: .5em;
	}
}

/* 入力項目必須フォーム */
input:required,
select:required,
textarea:required {
	background-color: var(--bg-required);
}

input:disabled,
select:disabled,
textarea:disabled {
	background-color: var(--bg-color-l-gray);
}

input:valid,
select:valid,
textarea:valid {
	background-color: var(--bg-color-basic);
}

input:required:read-only,
input:required.readonly,
textarea:required:read-only,
textarea:required.readonly {
	background-color: var(--bg-color-l-gray);
	cursor: not-allowed;
}

.debugLink {
	position: absolute;
}

/* 「同意する」に必須アイコンを付ける */
#isMemberAgreementFlg_label::before,
#isUseAgreementFlg_label::before {
	content: "必須";
	background: var(--bg-color-alert);
	color: #fff;
	padding: 0 10px;
	margin: 0 20px 0 0;
	font-weight: normal;
	font-size: 0.9em;
	min-width: 2em;
	text-align: center;
}

#isMemberAgreementFlgItemWrap .items,
#isUseAgreementFlgItemWrap .items {
	position: relative;
}

/*
## フォーム　生年月日
*/
select.birthdayMonth,
select.birthdayDay {
	vertical-align: top;
}

@media screen and (max-width: 600px) {

	select.birthdayMonth,
	select.birthdayDay {
		vertical-align: baseline;
	}
}

/*
## フォーム　無番地の時の注意文言改修
*/
#__error_address21 .alertMessage:after,
/* 会員登録・会員情報の確認/変更 */
#__error_address2 .alertMessage:after,
/* マイページ定期変更 */
#__error_orderAddress2 .alertMessage:after,
/* 注文入力・LP */
#__error_senderAddress2 .alertMessage:after

/* ギフト */
	{
	content: "※番地がない住所は「無番地」と入力してください。";
	display: inline-block;
	margin-top: 3px;
	white-space: pre;
}



/* エラーメッセージ、アラートメッセージ */
.alertMessage.alertMessage-important {
	color: var(--bg-color-alert);
	font-size: .75rem;
	margin: 5px 0 0;
}

.alertMsg,
.errorMessage {
	color: var(--text-color-alert);
}

.alertMsg.alertMsg-error {
	color: var(--text-color-alert);
	border: none;
	border-radius: 0;
	box-shadow: none;
}

span.alertMessageContentTitle,
div.alertMessageContentTitle {
	color: var(--text-color-alert);
}

span.alertMessageContentTitle:before,
div.alertMessageContentTitle:before {
	color: var(--text-color-alert);
}

li.alertMessageContent:before {
	color: var(--text-color-alert);
}

/* デバイス表示切替 */
.pc_only,
.pcOnly {
	display: block;
}

.sp_only,
.spOnly {
	display: none;
}

@media screen and (max-width:767px) {

	.pc_only,
	.pcOnly {
		display: none;
	}

	.sp_only,
	.spOnly {
		display: block;
	}
}

/* 汎用class */
.inlineBlock {
	display: inline-block;
}


/* レイアウト */
.contents {
	width: 100%;
	margin-bottom: 70px;

	&.w-full {
		max-width: 100%;
	}

	&.oneColumn {
		display: grid;
		grid-template-columns: 1fr min(100%, 1380px) 1fr;
		grid-template-rows: auto auto auto;

		& #breadcrumb {
			grid-column: 1 / 4;
			grid-row: 1 / 2;
		}

		& form[name="formMain"] {
			grid-column: 2 / 3;
			grid-row: 2 / 3;
			padding: 0 20px;
		}

	}

	&.twoColumns {
		display: grid;
		grid-template-columns: minmax(var(--screen-pd-lr), 1fr) 300px min(calc(100% - 300px - var(--screen-pd-lr)*2), 1020px) minmax(var(--screen-pd-lr), 1fr);
		grid-template-rows: auto auto auto;

		& #breadcrumb {
			grid-column: 1 / 5;
			grid-row: 1 / 2;
		}

		& form[name="formMain"] {
			grid-column: 3 / 4;
			grid-row: 2 / 3;
		}

		& .sideContents {
			grid-column: 2 / 3;
			grid-row: 2 / 4;
		}
	}
}

@media screen and (max-width: 960px) {
	.contents {
		margin-bottom: 30px;

		&.oneColumn {
			display: block;

			& form[name="formMain"] {
				padding: 0;
			}

		}

		&.twoColumns {
			display: flex;
			flex-wrap: wrap;

			& #breadcrumb {
				width: 100%;
			}

			& form[name="formMain"] {
				order: 1;
				width: 100%;
				padding-right: 0;
			}

			& .sideContents {
				order: 2;
				margin-top: 20px;
				width: 100%;
			}
		}
	}

	.area_contents {
		padding: 0 var(--screen-pd-lr);
	}
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

#sb-site,
.sb-site-container,
.sb-slide,
.sb-slidebar {
	transform: inherit;
}

.scroll-top-wrap {
	opacity: 0;
	transition: 0.6s;
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 99;
}

.following-cart-wrap {
	opacity: 0;
	transition: 0.6s;
	position: fixed;
	bottom: 130px;
	right: 30px;
	z-index: 99;
}

.following-cart-wrap a {
	background-color: #cc0000;
	color: #fff;
	text-decoration: none;
	border-radius: 2em;
	font-size: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	line-height: 1;
}

.following-cart-wrap i.fa {
	color: #fff;
	top: 0;
	font-size: 100%;
}

@media screen and (max-width: 768px) {
	.scroll-top-wrap {
		bottom: 30px;
	}

	.following-cart-wrap {
		bottom: 90px;
	}

	.following-cart-wrap a {
		border-radius: 2em;
		font-size: 35px;
		width: 70px;
		height: 70px;
	}

	.table .name-group {
		margin-bottom: 5px;
	}

	.table.th_30 .th,
	.table.th_30 th {
		padding: 5px 10px;
		font-size: 14px;
	}
}

.sideContents {
	order: 2;
	float: none;
}

.topGroupName {
	width: 100%;
	float: none;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.contents {
		min-width: 0;
	}
}

@media screen and (max-width: 600px) {
	.twoColumns form {
		order: 2;
		width: 100%;
	}

	.contents .sideContents {
		order: 3;
		margin-top: 60px;
	}

	.topGroupName .radioWrap .radiobuttonLabel {
		width: 100%;
		text-align: left;
		margin-right: 0;
	}
}


/* パンくず */
#breadcrumb {
	padding: 0.5em 20px;
	font-size: .875rem;
	line-height: 1.6;
	background-color: var(--bg-color-section);
	margin-bottom: 30px;

	& ol {
		max-width: 1300px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;

		& li {
			font-size: 0.86em;

			&:not(:last-child):after {
				content: ">";
				margin: 0 0.5em;
			}

			& a {
				color: #666;
			}
		}
	}
}


@media screen and (max-width: 960px) {
	#breadcrumb {
		margin-bottom: 10px;
		padding: 6px 10px;

		& ol {
			& li {
				font-size: 10px;
			}
		}
	}
}



/* 見出し */
.level_h1 {
	padding: 10px 20px;
	background: var(--color-corporate);
	font-weight: bold;
	font-size: 1.2rem;
	color: #fff;
	border: none;
	margin: 0 0 25px;
}

.level_h2 {
	font-size: 1.125rem;
	color: var(--text-color-accent);
	font-weight: bold;
	border: none;
	margin: 30px 0 20px;
	padding: 0;
}

.level_h3 {
	position: relative;
	font-size: 1rem;
	font-weight: bold;
	border-left: 5px solid var(--text-color-accent-sub);
	border-bottom: none;
	margin: 30px 0 20px;
	padding: 0 0 0 12px;
	line-height: 1.2;

	&::before {
		content: '';
		position: absolute;
		left: -5px;
		bottom: -10px;
		margin: auto 0;
		display: block;
		width: calc(100% + 5px);
		height: 2px;
		background: #ccc;
	}
}

.level_h4 {
	font-size: 1rem;
	color: var(--text-color-accent);
	font-weight: bold;
	border: none;
	margin: 30px 0 20px;
}

.level_h5 {
	font-size: 1rem;
	color: #000;
	font-weight: bold;
	margin: 2em 0 .8em;
}

.level_h6 {
	font-size: 1em;
	color: #000;
	font-weight: bold;
	margin: 1em 0 .5em;
}

@media screen and (max-width: 960px) {
	.level_h1 {
		font-size: 18px;
		padding: .95em 2em .85em 1.25em;
		line-height: 1;
		margin: 10px 0 20px;
	}

	.level_h2 {
		text-align: center;
		padding: 0 20px;
		margin: 25px 0 1.5625em;
	}

	.level_h3 {
		font-size: 17px;
		padding: 0 20px;
		margin: 25px auto 1.5625em;
	}

	.level_h4 {
		font-size: 17px;
		margin: 20px 0 1em;
	}

	.level_h5 {
		font-size: 17px;
		margin: 1.2em 0 .8em;
	}
}



.link-btn {
	padding: 6px 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #000;
	color: #000;
	transition: 0.7s;
}

.link-btn span {
	width: 100%;
}

.link-btn-wrap a {
	display: block;
	max-width: 350px;
	width: 100%;
	margin: 0 auto;
}

.link-btn-wrap a:hover {
	text-decoration: none;
}

.link-btn-wrap a:hover .link-btn {
	border: solid 1px #cc0000;
	color: #cc0000;
}

.link-btn-wrap {
	margin: 30px 0;
}

.border-box {
	border: 1px solid #d3d4d5;
}

.item-list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
}

.item-list .item {
	width: 20%;
	padding-right: 15px;
}

.item img {
	width: 100%;
	height: auto;
}

.item-info {
	margin-top: 10px;
	font-size: 14px;
}

.item-price {
	text-align: right;
	font-size: 14px;
}


@media screen and (max-width: 768px) {
	.title-wrap {
		margin-bottom: 20px;
	}

	.link-btn {
		font-size: 15px;
	}

	.link-btn-wrap {
		margin: 20px 0;
	}

	.item-list {
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 0 10px;
	}

	.item-list .item {
		width: 33.3333%;
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 510px) {
	.item-list .item {
		width: 50%;
	}
}

.main {
	width: 100%;
	float: right;
	margin-left: -280px;
	padding-left: 280px;
}

@media screen and (max-width: 768px) {
	.main {
		width: 100%;
		float: none;
		margin-left: 0;
		padding-left: 0;
	}
}


/*--------------------------------------------------------
	ヘッダー
-------------------------------------------------------*/
header {
	position: relative;
	z-index: 91;
}

.headerInner {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: .75em 15px 0;
}

.headerContents {
	position: relative;
	display: grid;
	grid-template-columns: 380px 1fr auto;
	grid-template-rows: auto;
	grid-template-areas:
		"logo search icons";
	align-items: center;
	gap: calc(var(--screen-pd-lr) * 1.5);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

/* ロゴ */
.headerLogo {
	grid-area: logo;
	display: flex;
	align-items: center;
	gap: 10px;

	a {
		display: block;
		line-height: 1;

		&.headerLogoAna {
			width: 80px;
			height: 17px;
		}

		&.headerLogo {
			width: 290px;
			height: 50px;
		}
	}
}

/* 検索窓 */
.headerSearch,
.drawerMenu .searchGoods {
	grid-area: search;
	transition: opacity .2s ease, max-height .2s ease;
	opacity: 1;
	will-change: opacity, max-height;

	form {
		display: grid;
		grid-template-columns: 1fr 50px;
		border: 1px solid var(--border-color-section);
		border-radius: 3px;
	}

	input {
		grid-column: 1 / 2;
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		border: none;
		padding: 0.8em 1.2em;
		font-size: 1em;
		background: none;
		margin: 0;
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		font-size: 1rem;
	}

	button[type="button"].searchBtn {
		grid-column: 2 / 3;
		border: none;
		margin: 0;
		padding: 10px;
		background-color: transparent;
	}
}

@media screen and (max-width: 960px) {

	.headerLogo,
	.headerIcons,
	.spHeaderMenu {
		max-height: 70px;
		overflow: hidden;
		transition: max-height 0.2s ease, opacity 0.2s ease;
	}

	header.is-sticky {

		.headerLogo,
		.headerIcons,
		.spHeaderMenu {
			max-height: 0;
			opacity: 0;
		}
	}
}

/* 検索 サジェスト */
._sc_suggest {
	width: 100% !important;

	td {
		vertical-align: top;
		padding-bottom:.5em;
	}
}

/* アイコン */
.headerIcons {
	grid-area: icons;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-left: auto;

	>li {
		position: relative;

		&:hover {
			text-decoration: none;
			background-color: var(--bg-color-section);
			border-radius: 5px;
		}

		>a {
			position: relative;
			text-align: center;
			color: #000;
			display: block;
			padding: 0.5em 0.5em;
			z-index: 110;

			&:hover {
				text-decoration: none;
				background-color: var(--bg-color-section);
				border-radius: 5px;
			}

			&::before {
				content: "";
				display: block;
				width: clamp(1.25rem, -0.313rem + 8.333vw, 1.875rem);
				height: clamp(1.25rem, -0.313rem + 8.333vw, 1.875rem);
				margin: 0 auto;
				background-repeat: no-repeat;
				background-position: center center;
				background-size: contain;
			}
		}

		&.hasMenuNav {
			border-radius: 5px 5px 0 0;

			.headerIconTxt::after {
				content: "";
				display: inline-block;
				background: url(../../../img/common/icon/arw_blue_b.svg) no-repeat center center;
				background-size: 100%;
				width: 12px;
				height: 9px;
				margin-left: 0.5em;
				transition: 0.2s;
			}

			&:hover {
				.headerIconTxt::after {
					transform: rotate(180deg);
				}
			}
		}

		.headerIconTxt {
			white-space: nowrap;
			padding-top: 0.5em;
			font-size: 13px;
			line-height: 1;
		}

		/* アイコン - マイページ */
		&.headerMypage {
			&>a {
				&::before {
					background-image: url(../../../img/common/icon/icon_mypage_blue.svg);
				}
			}
		}

		/* アイコン - 注文履歴 */
		&.headerOrderHistory {
			&>a {
				&::before {
					background-color: var(--color-corporate);
					mask-image: url(../../../img/common/mypage/icon_memberOrderList.svg);
				}
			}
		}

		/* アイコン - お気に入り */
		&.headerFavorite {
			&>a {
				&::before {
					background-image: url(../../../img/common/icon/icon_favorite_blue.svg);
					background-size: 85%;
				}
			}
		}

		/* アイコン - カート */
		&.headerCart {
			&>a {
				&::before {
					background-image: url(../../../img/common/icon/icon_cart_blue.svg);
				}

				.num {
					display: none;
					position: absolute;
					top: 2px;
					right: 15px;
					background-color: var(--color-corporate);
					color: #fff;
					border-radius: 50%;
					width: 20px;
					height: 20px;
					font-size: 15px;
					text-align: center;
					line-height: 20px;
				}

				.totalAmt {
					display: none !important;
				}
			}
		}

		/* アイコン - メニュー */
		&.headerMenu {
			&>a {
				&::before {
					display: none;
				}

				.headerMenuIcon {
					width: 24px;
					height: 30px;
					margin: 0 auto;
					padding-top: 6px;

					span {
						display: block;
						width: 24px;
						height: 3px;
						background-color: var(--color-corporate);
						border-radius: 10px;
						margin-block: 6px;

						&:nth-child(1) {
							margin-top: 0;
						}

						&:nth-child(3) {
							margin-bottom: 0;
						}
					}
				}
			}
		}
	}
}

.isLogin .headerIcons {
	grid-template-columns: repeat(5, 1fr);

	&>li {
		>a {
			padding-inline: 0.25em;
		}
	}
}

.myPageNav,
.headerMenuNav {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;
	display: none;

	ul {
		width: max-content;
		min-width: 280px;
		background-color: var(--bg-color-section);
		padding: 1em 1.5em;
		border-radius: 0 5px 5px 5px;

		li {
			a {
				display: flex;
				align-items: center;
				gap: 0.5em;
				padding: 0.5em;
				color: var(--text-color);
				border-bottom: 1px solid transparent;
				white-space: nowrap;

				&:hover {
					text-decoration: none;
					border-bottom-color: var(--color-corporate);

					span {
						font-weight: bold;
					}
				}
			}
		}
	}
}

.hasMenuNav:hover {

	.myPageNav,
	.headerMenuNav {
		display: block;
	}
}

.myPageNav {
	li {
		a {
			&::before {
				content: "";
				display: inline-block;
				width: 1.25em;
				height: 1.25em;
				background-color: var(--color-corporate);
				mask: no-repeat center center / contain;
			}
		}

		&.mypageTop a::before {
			mask-image: url("../../../img/common/mypage/icon_mypageTop.svg");
		}

		&.memberModify a::before {
			mask-image: url("../../../img/common/mypage/icon_memberModify.svg");
		}

		&.memberAddressBookList a::before {
			mask-image: url("../../../img/common/mypage/icon_memberAddressBookList.svg");
		}

		&.memberOrderList a::before {
			mask-image: url("../../../img/common/mypage/icon_memberOrderList.svg");
		}

		&.regularSchedule a::before {
			mask-image: url("../../../img/common/mypage/icon_regularSchedule.svg");
		}

		&.favoriteGoodsList a::before {
			mask-image: url("../../../img/common/mypage/icon_favoriteGoods.svg");
		}

		&.stockRequestList a::before {
			mask-image: url("../../../img/common/mypage/icon_stockRequestList.svg");
		}

		&.campaignList a::before {
			mask-image: url("../../../img/common/mypage/icon_campaignList.svg");
		}

		&.enqueteList a::before {
			mask-image: url("../../../img/common/mypage/icon_enqueteList.svg");
		}

		&.socialConnectList a::before {
			mask-image: url("../../../img/common/mypage/icon_socialConnectList.svg");
		}

		&.memberIntroduce a::before {
			mask-image: url("../../../img/common/mypage/icon_memberIntroduce.svg");
		}

		&.memberInquiryHistory a::before {
			mask-image: url("../../../img/common/mypage/icon_memberInquiryHistory.svg");
		}

		&.logout a::before {
			mask-image: url("../../../img/common/mypage/icon_logout.svg");
		}
	}

}

.headerMenuNav {
	left: auto;
	right: 0;

	ul {
		border-top-right-radius: 0;
		border-top-left-radius: 5px;
	}
}

.spHeaderMenu {
	display: none;
}


.premiumWrap {
	display: none;
}

@media screen and (max-width: 960px) {
	header {
		position: sticky;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 92;
		background-color: #fff;
	}

	.headerInner {
		padding-top: .5em;
	}

	.is-sticky .headerInner {
		padding-bottom: .5em;

		.headerContents {
			gap: 0;
		}
	}

	.headerContents {
		grid-template-columns: clamp(1.25rem, -0.313rem + 8.333vw, 1.875rem) clamp(6.25rem, 3.125rem + 16.667vw, 7.5rem) 1fr;
		grid-template-rows: auto;
		grid-template-areas:
			"menu logo icons"
			"search search search";
		gap: 0.5em;
	}

	/* メニューアイコン */
	.spHeaderMenu {
		grid-area: menu;
		display: block;

		.headerMenuIcon {
			width: 24px;
			height: 30px;
			margin: 0 auto;
			padding-top: 6px;

			span {
				display: block;
				width: 24px;
				height: 3px;
				background-color: var(--color-corporate);
				border-radius: 10px;
				margin-block: 6px;

				&:nth-child(1) {
					margin-top: 0;
				}

				&:nth-child(3) {
					margin-bottom: 0;
				}
			}
		}
	}

	/* ヘッダーロゴ */
	.headerLogo {
		.headerLogoAna {
			display: none;
		}

		.headerLogo {
			display: flex;
			align-items: center;
			padding-inline: 0.5em;
		}
	}

	/* 検索ボックス ※SP時はハンバーガーメニュー内に表示 */
	.headerSearch {}

	/* ヘッダーアイコン群 ※SP時は「メニュー」は非表示 */
	.headerIcons {
		display: flex;

		&>li {
			&.headerCart {
				a .num {
					right: 0;
				}
			}

			&.headerMenu {
				display: none;
			}

			&.hasMenuNav {
				.headerIconTxt::after {
					display: none;
				}
			}
		}

		.hasMenuNav:hover {

			.myPageNav,
			.headerMenuNav {
				display: none;
			}
		}
	}

	.isLogin .headerIcons {
		&>li {
			>a {
				padding-inline: 0.5em;
			}
		}
	}
}

@media screen and (max-width: 600px) {
	.headerIcons {
		.headerIconTxt {
			display: none;
		}
	}
}

/*--------------------------------------------------------
	SP ドロワーメニュー
-------------------------------------------------------*/
.drawerMenu {
	position: fixed;
	top: 0;
	left: -100vw;
	height: 100vh;
	width: 93vw;
	overflow-y: auto;
	z-index: 999;
	background-color: #fff;
	transition: left .4s ease-in-out;
	overscroll-behavior: none;

	&.active {
		left: 0;
	}

	a:not(.icon_new_window):not(.btnLogin) {
		color: var(--text-color);
	}

	.drawerMenuSectionTitleWrap {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 1em;
		font-size: 16px;
		background-color: transparent;
		margin: 1em 0 .5em;

		.drawerMenuSectionTitle {
			grid-column: 1 / 2;
			color: var(--color-corporate);

			span {
				font-weight: bold;
			}
		}

		&::after {
			content: "";
			grid-column: 2 / 3;
			display: block;
			width: 100%;
			height: 2px;
			background-color: var(--color-corporate);
		}
	}

	.drawerMenuHeader {
		padding: var(--screen-pd-lr);
		border-bottom: 2px solid var(--color-corporate);

		.logoAna {
			a {
				display: block;
				line-height: 1;
			}

			img {
				width: 60px;
			}
		}

		.btnLoginArea {
			margin: 1em 0 .25em;

			.btnLogin {
				max-width: 100%;
			}
		}

		.mypageLinksArea {
			ul {
				li {
					border-bottom: 1px solid var(--border-color-separate);

					a {
						display: flex;
						padding-block: 0.5em;
						gap: 0.5em;

						&::before {
							content: "";
							display: inline-block;
							width: 1.25em;
							height: 1.25em;
							background-color: var(--color-corporate);
							mask: no-repeat center center / contain;
						}
					}

					&.mypageTop a::before {
						mask-image: url("../../../img/common/mypage/icon_mypageTop.svg");
					}

					&.memberModify a::before {
						mask-image: url("../../../img/common/mypage/icon_memberModify.svg");
					}

					&.memberAddressBookList a::before {
						mask-image: url("../../../img/common/mypage/icon_memberAddressBookList.svg");
					}

					&.memberOrderList a::before {
						mask-image: url("../../../img/common/mypage/icon_memberOrderList.svg");
					}

					&.regularSchedule a::before {
						mask-image: url("../../../img/common/mypage/icon_regularSchedule.svg");
					}

					&.favoriteGoodsList a::before {
						mask-image: url("../../../img/common/mypage/icon_favoriteGoods.svg");
					}

					&.stockRequestList a::before {
						mask-image: url("../../../img/common/mypage/icon_stockRequestList.svg");
					}

					&.campaignList a::before {
						mask-image: url("../../../img/common/mypage/icon_campaignList.svg");
					}

					&.enqueteList a::before {
						mask-image: url("../../../img/common/mypage/icon_enqueteList.svg");
					}

					&.socialConnectList a::before {
						mask-image: url("../../../img/common/mypage/icon_socialConnectList.svg");
					}

					&.memberIntroduce a::before {
						mask-image: url("../../../img/common/mypage/icon_memberIntroduce.svg");
					}

					&.memberInquiryHistory a::before {
						mask-image: url("../../../img/common/mypage/icon_memberInquiryHistory.svg");
					}

					&.logout a::before {
						mask-image: url("../../../img/common/mypage/icon_logout.svg");
					}

					&.memberModify,
					&.memberAddressBookList,
					&.regularSchedule,
					&.enqueteList,
					&.socialConnectList,
					&.memberIntroduce,
					&.memberInquiryHistory,
					&.logout {
						display: none;
					}
				}

				@media screen and (max-width: 960px) {
					display: flex;
					flex-direction: column;

					.mypageTop {
						order: 1;
					}

					.favoriteGoodsList {
						order: 2;
					}

					.stockRequestList {
						order: 3;
					}

					.memberOrderList {
						order: 4;
					}

					.campaignList {
						order: 5;
					}
				}
			}
		}
	}

	&.isLogin {
		.drawerMenuHeader {
			border-bottom: none;
			padding-bottom: 0;
		}
	}

	& section {
		padding: 0 var(--screen-pd-lr);

		&.searchGoods {
			padding-block: 1.5em;
		}
	}

	& .drawerMenuLists {
		margin-top: 1em;
		border-top: 1px solid var(--border-color-separate);

		&>li {
			border-bottom: 1px solid var(--border-color-separate);
			margin-bottom: 0;

			&>p,
			&>a {
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 1em .5em 1em 0;
				line-height: 1;

				&::after {
					content: "";
					display: block;
					width: 10px;
					height: 10px;
					background: no-repeat center center / contain;
					transition: 0.2s;
				}

			}

			>p,
			>a:has(+ .drawerMenuSubList) {
				&::after {
					background-image: url(../../../img/common/icon/arw_blue_b.svg);
				}

				&.active::after {
					transform: rotate(180deg);
				}
			}

			>a {
				&::after {
					background-image: url(../../../img/common/icon/arw_blue_r.svg);
				}
			}

			& .drawerMenuSubList {
				display: none;
				padding-bottom: .5em;

				& li {
					padding-left: 1em;

					& a {
						display: flex;
						align-items: center;
						padding: .5em 0;
						gap: 0.5em;
						font-size: var(--font-size-s);
						line-height: 1.4;

						&::before {
							content: "";
							display: block;
							width: 0.75em;
							height: 1px;
							background-color: var(--border-color-separate);
						}
					}
				}
			}
		}
	}

	& .searchCategory {
		& .drawerMenuLists {
			border-top: none;
			margin-top: 0;

			&>li {
				.drawerMenuListTxt {
					display: grid;
					grid-template-columns: 1.5em 1fr 1em;
					gap: 0.5em;
					text-decoration: none;

					&::before {
						content: "";
						display: block;
						width: 1.5em;
						height: 1.5em;
						background: no-repeat center center / contain;
					}
				}

				&:nth-of-type(1) .drawerMenuListTxt::before {
					background-image: url(../images/cmn/icon/icon_ana_original_blue.svg);
				}

				&:nth-child(2) .drawerMenuListTxt::before {
					background-image: url(../images/cmn/icon/icon_bag_and_travel_blue.svg);
				}

				&:nth-child(3) .drawerMenuListTxt::before {
					background-image: url(../images/cmn/icon/icon_gourmet_blue.svg);
				}

				&:nth-child(4) .drawerMenuListTxt::before {
					background-image: url(../images/cmn/icon/icon_wine_blue.svg);
				}

				&:nth-child(5) .drawerMenuListTxt::before {
					background-image: url(../images/cmn/icon/icon_lifestyle_blue.svg);
				}

				&:nth-child(6) .drawerMenuListTxt::before {

					background-image: url(../images/cmn/icon/icon_fashion_mens_blue.svg);
				}
			}
		}

		& .drawerMenuSubList {
			padding-left: 1em;
		}

		.drawerMenuItemTop {
			display: block;
			padding: .25em 1em;
		}
	}

	& .drawerMenuFooter {
		padding: 10px;

		& .drawerMenuCloseBtn {
			position: relative;
			width: 88px;
			margin: 0 auto;
			padding: 13px 30px 13px 10px;
			background-color: transparent;
			color: #000;
			font-size: 14px;

			&::before {
				content: "";
				display: block;
				width: 16px;
				height: 16px;
				background: url(../images/cmn/icon/icon_close.png) no-repeat center center;
				background-size: contain;
				position: absolute;
				top: 0;
				bottom: 0;
				right: 8px;
				margin: auto 0;

			}
		}
	}

	.links {
		padding-block: 1.5em 3em;
		margin-top: 1.5em;
		border-top: 2px solid var(--color-corporate);

		ul {
			li {
				a {
					display: block;
					padding: .5em 0;
				}
			}
		}
	}
}

.drawerMenuCloseBtnArea {
	display: none;
	position: fixed;
	top: 1em;
	right: 0;
	z-index: 1000;

	.drawerMenuCloseBtn {
		position: relative;
		width: 7vw;
		height: 7vw;

		&::before,
		&::after {
			content: "";
			display: block;
			width: 2px;
			height: 28px;
			background-color: #fff;
			border-radius: 2px;
			position: absolute;
			inset: 0;
			margin: auto;
		}

		&::before {
			transform: rotate(45deg);
		}

		&::after {
			transform: rotate(-45deg);
		}
	}
}

.drawerMenuOverlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(11, 49, 143, 0.8);
	overflow: auto;
	overscroll-behavior: none;
	z-index: 998;
}


/*--------------------------------------------------------
	PC グローバルナビ
-------------------------------------------------------*/
.globalNav {
	border-bottom: 2px solid var(--color-corporate);
	background-color: var(--bg-color-basic);
	box-sizing: border-box;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 90;
}

.globalNavInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--screen-pd-lr);
	max-width: 1260px;
	margin: 0 auto;
	padding-inline: var(--screen-pd-lr);

	.globalNavList {
		display: grid;
		grid-template-columns: repeat(4, 1fr);

		.globalNavMenu {
			padding-block: 1em;
			cursor: pointer;

			&:first-child .globalNavMenuTitle {
				border-left: 1px solid var(--border-color-section);
			}

			&:hover {
				.globalNavMenuTitle {
					text-decoration: none;

					span {
						font-weight: bold;
					}

					&:has(+ .globalNavMegaMenu) {
						&::before {
							content: "";
							position: absolute;
							top: calc(100% + 1em);
							left: 0;
							display: block;
							width: 100%;
							height: 1em;
							background-color: #fff;
						}

						&::after {
							transform: rotate(180deg);
						}
					}
				}
			}
		}

		.globalNavMenuTitle {
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
			color: var(--text-color);
			padding-inline: 2.25em;
			border-right: 1px solid var(--border-color-section);
			height: 100%;
			line-height: 1.2;

			&:has(+ .globalNavMegaMenu)::after {
				content: "";
				position: absolute;
				right: 0.75em;
				top: 0;
				bottom: 0;
				margin-block: auto;
				display: inline-block;
				width: 0.75em;
				height: 1em;
				background: url(../../../img/common/icon/arw_blue_b.svg) no-repeat center center;
				background-size: 100%;
				transition: 0.2s;
			}
		}
	}

	.globalNavMegaMenu {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		width: 100%;
		background-color: #fff;
		max-height: 0;
		height: auto;
		transition: max-height 0.2s ease-in-out;
		overflow-y: hidden;
	}

	.globalNavMenu:hover .globalNavMegaMenu {
		max-height: 80vh;
	}

	.globalNavMegaMenuInner {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 1260px;
		padding: 20px var(--screen-pd-lr);
		margin: 0 auto;
	}

	.globalNavMegaMenuList {
		grid-column: 1 / 2;
		position: relative;
	}

	.globalNavMegaMenuItem {
		display: flex;

		.globalNavMegaMenuItemLink {
			position: relative;
			display: flex;
			align-items: center;
			color: var(--text-color);
			padding: 0.5em 1em 0.5em 0.5em;
			min-width: 220px;
			line-height: 1.5;
			border-bottom: 1px solid transparent;
		}

		&:hover .globalNavMegaMenuItemLink {
			border-bottom: 1px solid var(--color-corporate);
			text-decoration: none;

			span {
				font-weight: bold;
			}
		}
	}

	.globalNavMenuSearchByPrice {
		.globalNavMegaMenuItemLink {
			&::before {
				content: "";
				display: block;
				width: 0.75em;
				height: 0.75em;
				margin-right: 0.5em;
				background: url(../images/cmn/icon/arw_blue_r.png) no-repeat center center / contain;
			}
		}
	}

	.globalNavMenuSearchByCategory {
		.globalNavMegaMenuItem:hover .globalNavMegaMenuItemLink::after {
			content: "";
			position: absolute;
			right: -1.375em;
			top: 0;
			bottom: 0;
			margin-block: auto;
			display: block;
			width: 0.6em;
			height: 0.6em;
			background-color: #fff;
			border-left: 1px solid var(--border-color-section);
			border-bottom: 1px solid var(--border-color-section);
			transform: rotate(45deg);
			z-index: 100;
		}

		.globalNavMegaMenuItemLink {
			&::before {
				content: "";
				display: block;
				width: 1.5em;
				height: 1.5em;
				margin-right: 0.5em;
				background: no-repeat center center / contain;
			}
		}

		.globalNavMegaMenuItem {
			&:nth-of-type(1) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_ana_original_blue.svg);
			}

			&:nth-of-type(2) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_bag_and_travel_blue.svg);
			}

			&:nth-of-type(3) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_gourmet_blue.svg);
			}

			&:nth-of-type(4) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_wine_blue.svg);
			}

			&:nth-of-type(5) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_lifestyle_blue.svg);
			}

			&:nth-of-type(6) .globalNavMegaMenuItemLink::before {
				background-image: url(../images/cmn/icon/icon_fashion_mens_blue.svg);
			}
		}
	}

	.globalNavMegaMenuSubListArea {
		display: none;

		a {
			display: block;
			color: var(--text-color);
			padding-block: 0.375em;
			line-height: 1.5;
			text-decoration: none;
		}
	}

	.globalNavMegaMenuItem:hover .globalNavMegaMenuSubListArea {
		display: grid;
		grid-template-columns: 50% 1fr;
		gap: 0 1em;
		width: calc(100% - (220px + 1em));
		position: absolute;
		top: 0;
		left: calc(220px + 1em);
	}

	.globalNavMegaMenuSubListWrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-height: calc(80vh - 40px);
		min-height: 100%;
		overflow-y: auto;
		padding: 0 1em 1em 1.5em;
		border-left: 1px solid var(--border-color-section);
	}

	a.globalNavMegaMenuItemTop {
		width: fit-content;
		font-size: 1.125em;
		padding-block: 0.375em;
		border-bottom: 1px solid transparent;

		&:hover {
			border-bottom-color: var(--color-corporate);

			span {
				font-weight: bold;
			}
		}
	}

	.globalNavMegaMenuSubList {
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(8, auto);
		width: fit-content;
		gap: 0 2em;
	}

	.globalNavMegaMenuSubItem {
		display: flex;
		align-items: center;

		a {
			width: 100%;
			border-bottom: 1px solid transparent;

			&:hover {
				border-bottom-color: var(--color-corporate);

				span {
					font-weight: bold;
				}
			}
		}

		&::before {
			content: "";
			display: inline-block;
			width: 0.75em;
			height: 1px;
			background-color: var(--border-color-section);
			margin-right: 0.5em;
		}
	}

	/* グロナビ内 「おススメの特集・キャンペーン」エリア */
	.globalNavRecommendCampaignArea {
		grid-column: 2 / 3;

		.level_h3 {
			margin-block: 0.5rem 1.25rem;
		}
	}

	.recommendCampaignList {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--screen-pd-lr);
	}

	/* .userInfoArea */
	/* ログイン後 ユーザー情報 */
	.userInfo {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: var(--bg-color-section);
		border-radius: 3px;
		gap: 1em;
		padding: 0.625em 1em;
		margin-block: 0.375em;
		line-height: 1;

		.userNameArea {
			.premiumName {
				font-size: var(--font-size-s);
				font-weight: bold;
			}

			.mile_link {
				margin-top: 0.5em;
				font-size: 11px;
				overflow: hidden;
				transition: 0.2s;

				.icon_new_window {
					padding-right: 0;

					&::after {
						position: static;
						display: inline-block;
						margin: 0;
					}
				}
			}
		}

		&:not(:has(.userPointArea)) {
			display: block;

			.userNameArea {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: center;
				gap: 0.25em 1.5em;

				.mile_link {
					margin-top: 0;
				}
			}
		}

		.userPointArea {
			font-size: var(--font-size-ss);

			.premiumMile {
				display: grid;
				grid-template-columns: 7em 1fr;
				grid-template-rows: auto;
				gap: 1em;
				white-space: nowrap;

				dd {
					text-align: right;
				}

				&:nth-of-type(2) {
					margin-top: 0.5em;
					transition: .2s;
					overflow-y: hidden;

					dd {
						color: var(--text-color-alert);
					}
				}
			}
		}
	}
}

.globalNav.is-sticky {
	.userInfo {

		.mile_link,
		.premiumMile:nth-of-type(2) {
			max-height: 0;
			margin-top: 0;
		}
	}
}

.btnLoginArea {
	.btnLogin {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--color-accent);
		border-radius: 3px;
		color: #fff;
		padding: 0.55em clamp(1.5rem, -1.162rem + 3.704vw, 2rem);
		max-width: 320px;
		width: 100%;
		transition: .2s;

		&:hover {
			opacity: 0.8;
		}

		&::after {
			content: "";
			display: inline-block;
			width: 1em;
			min-width: 1em;
			height: 1em;
			background: url(../../../img/common/icon/arrow_circle_right_wh.svg) no-repeat center center;
			background-size: contain;
			margin-inline: 0.5em -1em;
		}

		span {
			font-weight: bold;
			line-height: 1.25;
		}
	}
}

@media screen and (max-width: 960px) {
	.globalNav {
		position: relative;
	}

	.globalNavInner {
		justify-content: flex-end;

		.userInfoArea {
			width: 100%;
		}

		.globalNavList {
			display: none;
		}

		.btnLoginArea {
			width: 100%;
			margin-block: 0.5em;

			.btnLogin {
				max-width: 100%;
			}
		}
	}
}


/*--------------------------------------------------------
	タグラインが走るエリア
-------------------------------------------------------*/
.TaglineTicker {
	--gap: 10em;
	/* 項目間の余白 */
	position: relative;
	height: 35px;
	width: 100%;
	background:
		url(../images/top/runwey_border_dash.svg) repeat-x left center / 20px 1px,
		linear-gradient(to right, #bfc8ce, #6a85a8);
	background-blend-mode: lighten, normal;
	overflow: hidden;
	line-height: 1.2;

	&::before,
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: #dae4ee;
		opacity: 0.5;
		position: absolute;
		left: 0;
	}

	&::before {
		top: 3px;
	}

	&::after {
		bottom: 3px;
	}
}

.TaglineTickerTrack {
	position: absolute;
	inset-block: 0;
	margin: auto 0;
	height: 33px;
	display: inline-flex;
	gap: var(--gap);
	will-change: transform;
	animation: tagline-ticker linear infinite;
	white-space: nowrap;
}

.TaglineTickerContent {
	display: inline-flex;
	align-items: center;
	gap: var(--gap);
	white-space: nowrap;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(69, 77, 94, 0.3);

	p {
		display: inline-flex;
		align-items: center;
		gap: 0.5em;

		&::before {
			content: url(../images/top/runway_plane.svg);
			display: block;
			width: 34px;
			height: 33px;
			filter: drop-shadow(2px 2px 4px rgba(69, 77, 94, 0.3));
		}
	}

	span {
		font-weight: bold;
		font-style: italic;
	}
}

/* アニメーション定義 */
@keyframes tagline-ticker {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50.0001%, 0, 0);
	}
}

/* 動きを苦手なユーザー向け配慮 */
@media (prefers-reduced-motion: reduce) {
	/* .TaglineTickerTrack { animation: none; transform: none; } */
}


/*--------------------------------------------------------
	フッター
-------------------------------------------------------*/
.footer_nav {
	display: none;
}

@media screen and (max-width: 768px) {
	.footer_nav {
		display: block;
		width: 100vw;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		color: var(--text-color);
		background-color: #fff;
		transform: translateY(100%);
		transition: transform .25s;

		& .footer_nav-list {
			display: grid;
			grid-template-columns: repeat(4, 1fr);

			& .footer_nav-item {
				position: relative;

				& a {
					display: block;
					color: #0b318f;
					font-size: clamp(10px, 3vw, 14px);
					line-height: 1;
					text-align: center;
					padding: 20px 10px;

					& .footer_nav-item-wrap {
						position: relative;
						display: flex;
						flex-direction: column;
						align-items: center;
						justify-content: space-between;
						block-size: 100%;
						padding-top: 20px;

						& .footer_nav-text {
							margin-block-start: calc(30 / 186.5* 100%);
							display: block;
							font-weight: bold;
						}

						&::before {
							content: "";
							display: block;
							width: 40px;
							height: 29px;
							position: absolute;
							top: 0;
							left: 0;
							right: 0;
							margin: 0 auto;
							background: url(../images/cmn/icon/icon_ranking_blue.svg) no-repeat center center;
							background-size: contain;
						}
					}
				}

				&:not(:last-child)::after {
					content: '';
					position: absolute;
					top: 0;
					bottom: 0;
					right: 0;
					margin: auto 0;
					display: block;
					width: 2px;
					height: 70%;
					background-color: #595959;
				}

				&:nth-child(1) a .footer_nav-item-wrap::before {
					background-image: url(../images/cmn/icon/icon_ranking_blue.svg);
				}

				&:nth-child(2) a .footer_nav-item-wrap::before {
					background-image: url(../images/cmn/icon/icon_feature_and_campaign_blue.svg);
				}

				&:nth-child(3) a .footer_nav-item-wrap::before {
					background-image: url(../images/cmn/icon/icon_search_by_category_blue.svg);
				}

				&:nth-child(4) a .footer_nav-item-wrap::before {
					background-image: url(../images/cmn/icon/icon_search_by_brand_blue.svg);
				}
			}
		}

		&.fixed {
			top: auto;
			transform: translateY(0);
		}
	}
}

section.snsArea:not(.w-full) {
	position: relative;
	margin-top: 100px;
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid var(--border-color-section);
	color: #1A1A1A;
}

.snsArea .snsList {
	display: flex;
	place-content: center;
	align-items: center;
}

.snsArea .snsList li {
	margin: 0 7px;
}

.snsArea .snsList li a {
	display: block;
}

.snsArea .txt {
	margin-top: 1em;
	font-size: 15px;
}

section.contentsBtmArea {
	background-color: var(--bg-color-sub);
	color: #1A1A1A;
}

.contentsBtmArea .contentsBtm_inner {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding: 100px 20px;
}

.contentsBtmArea .contentsBtm_col {
	display: grid;
	grid-template-columns: 1fr 230px;
	gap: 20px;
}

.contentsBtmArea .menuList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.contentsBtmArea .menuList .squareBox {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 150px;
	background-color: #fff;
	border: 1px solid var(--border-color-img);
	border-radius: 4px;
	box-sizing: border-box;
}

.contentsBtmArea .menuList .caption {
	margin-top: 25px;
	min-height: 105px;
	font-size: 0.93em;
	color: #1A1A1A;
	text-decoration: none;
}

.contentsBtmArea .menuList .txt_link {
	margin-top: 1em;
}

.contentsBtmArea .menuList .txt_link span {
	position: relative;
	padding-left: 1em;
	font-size: 0.93em;
	color: #1A1A1A;
}

.contentsBtmArea .menuList .txt_link span:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 7px;
	height: 13px;
	margin: auto;
	background: url(../images/cmn/icon/arw_blue_r.png) center center no-repeat;
}

.contentsBtmArea .menuBnrList li:not(:first-of-type) {
	margin-top: 10px;
}

footer {
	background-color: #fff;
	font-size: 14px;
	line-height: 1.5;
	border-top: 2px solid #0B318F;
}

.footer_content {
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 20px 65px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 6%;
}

.footer_content dt {
	position: relative;
	float: none;
	padding: 10px 0 10px 36px;
	color: #0B318F;
	font-size: 16px;
}

.footer_content dt .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
}

.footer_content dt span {
	font-weight: bold;
	font-weight: 500;
}

.footer_content li {
	margin-top: 1em;
}

.footer_content li a {
	display: block;
	color: var(--text-color);
}

.footer_content .jadma {
	position: relative;
	padding-top: 1.5em;
	margin-top: 5px;
	grid-column: 3 / 4;
	grid-row: 2 / 3;

	&::before {
		content: "";
		width: 70%;
		height: 2px;
		background-color: var(--text-color-sub);
		position: absolute;
		top: 0;
		left: 0;
	}
}

.copyright {
	border-top: 1px solid var(--border-color-img);
	padding: 2.5em;
	color: #4D4D4D;
	text-align: center;
	margin-bottom: 0;
}

.copyright small {
	font-weight: bold;
	font-size: 0.71em;
}

@media screen and (max-width: 768px) {
	.include4 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	section.snsArea {
		margin-top: 0;
		border-top: none;
	}

	section.contentsBtmArea {
		margin-top: 60px;
	}

	.contentsBtmArea .contentsBtm_inner {
		padding: 20px 15px 40px;
	}

	.contentsBtmArea .contentsBtm_col {
		display: block;
	}

	.contentsBtmArea .menuList {
		display: block;
		width: 80%;
		margin: 0 auto;

		& li {
			margin-top: 20px;
		}

		& a {
			display: block;
			background-color: #fff;
			border: 1px solid var(--color-corporate);
			padding: 0 15px;
		}

		& .squareBox {
			height: 80px;
			border: none;
			border-bottom: 1px solid var(--border-color-img);
		}

		& .caption {
			margin: 0;
			padding: 15px;
			min-height: 0;
			color: #0B318F;
			font-size: 18px;
			text-align: center;
		}

		& .txt_link {
			display: none;
		}
	}

	.contentsBtmArea .menuBnrList {
		margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;

		& li:not(:first-of-type) {
			margin-top: 0;
		}

		& li:nth-of-type(odd) {
			text-align: right;
		}
	}

	.footer_content {
		display: block;
		padding-bottom: 20px;

		& dl {
			border-bottom: 1px solid var(--border-color-separate);
		}


		& dt {
			padding: 20px 0 20px 38px;

			& span {
				font-weight: normal;
			}

			&::after {
				content: "";
				position: absolute;
				top: 0;
				bottom: 0;
				margin: auto 0;
				right: 0;
				width: 15px;
				height: 12px;
				background: url(../images/cmn/icon/arw_blue_b.png) no-repeat center center;
				background-size: contain;
			}

			&.open::after {
				transform: rotate(180deg);
			}
		}

		& dd {
			display: none;
			padding-bottom: 10px;

			& li {
				margin-top: 0;

				& a {
					padding: 10px 0;
				}
			}
		}

		& .jadma {
			position: relative;
			padding-top: 1.5em;
			margin-top: 0;

			&::before {
				display: none;
			}
		}
	}
}

/* ページ上部に戻るボタン ★あとで位置調整する */
#scrollUp {
	position: relative;
	bottom: 100px;
	right: 50px;
	height: 60px;
	width: 60px;
	background: url(../images/cmn/page_top.png) center center no-repeat;
	background-size: contain;
	transition: right 0.75s ease;
	z-index: 99 !important;

	&:hover {
		opacity: 0.75;
	}
}

@media screen and (max-width: 768px) {
	#scrollUp {
		bottom: 10%;
		right: 15px;
		height: 47px;
		width: 47px;
		background-image: url(../images/cmn/page_top_sp.png);
	}
}



/* 最近チェックした商品 */

.check-list.item-list {
	flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
	.check-list.item-list {
		flex-wrap: wrap;
	}
}

/*---------------------------------------------
	サイドコンテンツ
---------------------------------------------*/
.sideContents {
	& .moreLink {
		& a::before {
			background-image: url(../images/cmn/icon/arw_blue_r.png);
		}
	}
}

/* カテゴリー */
.sideCategory {
	& li {
		& dt {
			background-color: var(--color-corporate);

			&::before {
				background: var(--icon-cmn) no-repeat;
			}
		}

		/* side_02 */
		&.side_02 {
			& dt {
				padding-left: 55px;

				&::before {
					left: 12px;
					width: 36px;
					height: 10px;
					background-position: -6px -470px;
				}
			}
		}

		/* side_03 */
		&.side_03 {
			& dt {
				&::before {
					left: 14px;
					width: 18px;
					height: 18px;
					background-position: -66px -466px;
				}
			}
		}

		/* side_04 */
		&.side_04 {
			& dt {
				&::before {
					left: 14px;
					width: 21px;
					height: 18px;
					background-position: -315px -466px;

				}
			}
		}

		/* side_05 */
		&.side_05 {
			& dt {
				&::before {
					left: 14px;
					width: 18px;
					height: 16px;
					background-position: -266px -467px;
				}
			}
		}

		/* side_06 */
		&.side_06 {
			& dt {
				&::before {
					left: 14px;
					width: 18px;
					height: 16px;
					background-position: -216px -467px;
				}
			}
		}

		/* side_07 */
		&.side_07 {
			& dt {
				&::before {
					left: 14px;
					width: 18px;
					height: 18px;
					background-position: -116px -466px;
				}
			}
		}

		/* dd */
		& dd {
			& li {
				&.category_menu {
					&>div:not(:has(+ ul))>a {
						&::after {
							background: url(../images/cmn/icon/arw_blue_r.png) no-repeat center center;
							background-size: contain;
						}
					}
				}

				&:has(ul) {
					&>div {
						&.op {
							background-color: var(--bg-color-section);
						}

						&::after {
							background: var(--icon-cmn) no-repeat;
							background-position: -170px -122px;
						}
					}
				}
			}
		}
	}
}

/* 価格帯 */
.filter_price {
	& input {
		border: none;
	}
}


/*--------------------------------------------------------
	フォーム
-------------------------------------------------------*/

/* 価格表示「￥XXX(税込)」 */
span[class*="goods"][class*="price"] {
	&::before {
		content: "￥";
	}
}


@media screen and (max-width: 960px) {

	.topGroupName input.birthdayYear,
	.topGroupName input.birthdayMonth,
	.topGroupName input.birthdayDay {
		margin: 0 0 0 5px;
	}

	.topGroupName select#birthdayYear {
		display: block;
		width: auto;
		margin-bottom: 5px;
	}

	.topGroupName select#birthdayMonth,
	.topGroupName select#birthdayDay {
		margin-top: 0;
		margin-right: 0;
	}

	.birthdayMonthSuffixLabel,
	.birthdayDaySuffixLabel {
		display: inline-block;
		margin-top: 7px;
		margin-right: 10px;
	}

	.nameMeiSuffixLabel,
	.nameMeiKanaSuffixLabel,
	.postCode1SuffixLabel,
	.telNo1PostSuffixLabel,
	.mobileNo1PostSuffixLabel,
	.faxNo1PostSuffixLabel {
		display: block;
	}

	tfoot .PAGING_DETAILS_ROW td {
		padding-left: 0;
	}
}


tfoot .PAGING_DETAILS_ROW td {
	border: none;
	padding-top: 0;
}

.table .suffixLabel {
	font-size: 0.9em;
}

.resultsShowMaxLine {
	margin-top: 50px;
}

.pageInfo {
	margin: 0 0 10px;
}

.resultsShowMaxLine::before {
	content: "表示件数: ";
	display: inline-block;
}


.resultsShowMaxLine .SEPARATOR_MAX_SELECT:last-child::after {
	content: normal;
}

ul.pagination a {
	margin: 0 .1em;
}

ul.pagination a.PAGING_LINK_PAGE {
	width: 2em;
	min-width: 0;
	min-height: 0;
	border-radius: 3px;
	background: none;
	box-shadow: none;
	border: none;
	padding: 0.5em 0;
	background-color: var(--bg-color-l-gray);
	text-align: center;
	text-decoration: underline;
	color: var(--text-color);
	line-height: 1;
	white-space: nowrap;
}

ul.pagination a.PAGING_LINK {
	color: var(--text-color);
	text-decoration: underline;
}

ul.pagination a.PAGING_LINK:hover,
ul.pagination a.PAGING_LINK_PAGE:hover {
	background: none;
}

ul.pagination .PAGING_LINK_NOW_PAGE,
ul.pagination .PAGING_LINK_NOW_PAGE:hover {
	min-width: 0;
	min-height: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	padding: 0;
	border: none;
	font-weight: normal;
	color: var(--text-color);
	width: 30px;
}

ul.pagination .PAGING_BEFORE::after {
	content: "前へ";
}

ul.pagination .PAGING_TOP::after {
	content: "最初へ";
}

ul.pagination .PAGING_NEXT::after {
	content: "次へ";
}

ul.pagination .PAGING_LAST::after {
	content: "最後へ";
}


.MAX_SELECT_NOW_PAGE {
	background: none;
	border: none;
	color: #cc0000;
	font-weight: normal;
}


.pagingResultsShow {
	font-size: 1em;
	line-height: inherit;
}

.resultsDataNumber::before {
	content: "全\00a0";
	display: inline-block;
}

.resultsDataNumber::after {
	content: "\00a0件中\00a0\00a0\00a0\00a0";
	display: inline-block;
}

@media screen and (max-width: 960px) {
	ul.pagination {
		margin: 0 auto;
	}

	ul.pagination a.PAGING_LINK {
		text-decoration: none;
		border: 1px solid var(--border-color-table);
		border-radius: 3px;
		padding: 0 .5em;
	}
}


.orderRow {
	border-radius: 0;
}


/* 規約の同意するチェックボックス */
#isMemberAgreementFlgItemWrap,
#isUseAgreementFlgItemWrap {
	text-align: center;
	padding: 10px 0;
}


/*--------------------------------------------------------
	インクルード系
-------------------------------------------------------*/
/* カルーセル系 */
.categoryCarouselAWrap {
	margin-top: 20px;
}

.swiper-slide a {
	display: block;
	position: relative;
	padding-top: 1.7em;
	color: var(--text-color-strong);
}

.item_ph {
	position: relative;
	width: 100%;
	margin: 0 auto;
	border: 1px solid var(--border-color-img);
	border-radius: 4px;
	box-sizing: border-box;
}

.categoryCarouselAWrap {
	& .item_name {
		padding-top: 1em;
		font-size: 0.93em;
		line-height: 1.7;
		word-break: break-all;
		height: 4.5em;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	& .item_price {
		font-weight: bold;
		text-align: right;
		margin: 0;

		&::before {
			content: '￥';
		}

		&::after {
			content: '(税込)';
		}

		&:has(+ .limitedPriceItemWrap),
		&:has(+ .discountedPriceItemWrap) {
			font-size: var(--font-size-s);
			text-decoration: line-through;
		}
	}

	& .limitedPriceItemWrap,
	& .discountedPriceItemWrap {
		text-align: right;

		& span {
			font-weight: bold;
			color: var(--text-color-alert);
		}
	}

	& .limitedPeriodItemWrap {
		text-align: right;

		& span {
			color: var(--text-color-alert);
		}
	}

	& .item_mile {
		text-align: right;
		font-size: .75rem;
		color: var(--bg-color-alert);
		margin: 0;

		&::before {
			content: '獲得マイル';
			color: #000;
			margin-right: .5em;
		}
	}
}

.carouselWrap {
	position: relative;
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	gap: 16px;
}

.swiper:not(.swiper-initialized) li {
	width: calc(20% - 16px);
}

.swiper:not(.swiper-initialized) .swiper-button-prev,
.swiper:not(.swiper-initialized) .swiper-button-next {
	display: none;
}

.carouselWrap .swiper-button-next,
.carouselWrap .swiper-button-prev {
	width: 50px;
	height: 50px;
}

.carouselWrap .swiper-button-next {
	right: -10px;
}

.carouselWrap .swiper-button-prev {
	left: -10px;
}

.carouselWrap .swiper-button-next.swiper-button-disabled,
.carouselWrap .swiper-button-prev.swiper-button-disabled {
	display: none;
}

.carouselWrap .swiper-button-next:after,
.carouselWrap .swiper-button-prev:after {
	content: "";
	display: block;
	background: url(../images/cmn/icon/icon_cls_next.png) center center no-repeat;
	width: 50px;
	height: 50px;
}

.carouselWrap .swiper-button-prev:after {
	transform: rotate(180deg);
}

@media screen and (max-width: 960px) {
	.carouselWrap {
		& .swiper {
			padding: 0 16px;
		}

		& .swiper-button-next,
		& .swiper-button-prev {
			width: 40px;
			height: 40px;

			&::after {
				width: 40px;
				height: 40px;
				background-size: contain;
			}
		}

		& .swiper-button-next {
			right: var(--screen-pd-lr);
		}

		& .swiper-button-prev {
			left: var(--screen-pd-lr);
		}

		& .swiper-scrollbar {
			width: 100%;
			height: 4px;
			background-color: transparent;

			& .swiper-scrollbar-drag {
				margin-top: 15px;
				background-color: #c0c0c0;
			}
		}
	}

}


/* 新着商品 ★「おすすめ商品」枠を使用しているので、あとで新着商品用のclass名に差し替える */

/* 最近見た商品 */
.browsingGoods {
	& .categoryCarouselAWrap {
		margin-top: 60px;

		& .secTtl {
			display: flex;
			align-items: center;
			border-bottom: 2px solid #ccc;

			& .icon {
				margin: 0 .5em 0 0;
				width: 30px;
				height: 30px;
				line-height: 1;
			}

			& span {
				color: var(--color-corporate);
				font-size: 1.5rem;
				font-weight: bold;
			}
		}
	}
}

@media screen and (max-width: 960px) {
	.browsingGoods {
		& .categoryCarouselAWrap {
			& .secTtl {
				padding: 0 15px;

				& .icon {
					width: 20px;
					height: 20px;
				}

				& span {
					font-size: 1.25rem;
				}
			}
		}
	}
}


/* ランキング商品 */
.rankingItemsWrapper {
	display: none;

	&:nth-of-type(1) {
		display: block;
	}
}

.rankingItems {
	margin-top: 20px;
}

.rankingList li a .rank_num {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background: url(../images/cmn/icon/icon_ranking04.png) no-repeat center center / 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 59px;
	height: 43px;
	z-index: 1;
	color: #FFF;
}

.rankingList li .ranking_01 a .rank_num {
	background: url(../images/cmn/icon/icon_ranking01.png);
	background-size: 100%;
}

.rankingList li .ranking_02 a .rank_num {
	background: url(../images/cmn/icon/icon_ranking02.png);
	background-size: 100%;
}

.rankingList li .ranking_03 a .rank_num {
	background: url(../images/cmn/icon/icon_ranking03.png);
	background-size: 100%;
}

/* areaBtn
-------------------------------------------*/
.contents .areaBtn {
	margin-top: 3.75em;
	text-align: center;

	& a {
		display: inline-block;
		position: relative;
		min-width: 380px;
		margin: 0 auto;
		border: 2px solid #0B318F;
		border-radius: 40px;
		padding: 0.5em 2em;
		color: #0B318F !important;
		font-size: 1.06em;
		font-weight: bold;
		box-sizing: border-box;
		transition: all 0.3s ease;

		&:hover {
			background-color: var(--bg-color-section);
			text-decoration: none !important;
		}

		&::after {
			content: "";
			display: block;
			background: url(../../../img/common/icon/icon_arrow_tri_blue.svg) center center no-repeat;
			background-size: 100%;
			position: absolute;
			top: 0;
			bottom: 0;
			right: 10px;
			width: 10px;
			height: 13px;
			margin: auto;
		}
	}

	&.areaBtnSmart {
		margin-top: 20px;

		& a {
			padding: .4em 2em;
		}
	}
}

.contents .areaLink {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 20px;
	text-align: right;

	& a {
		position: relative;
		color: #000;
		font-size: 1.125rem;
		font-weight: bold;
		padding-left: 20px;

		&::before {
			content: "";
			display: inline-block;
			width: 18px;
			height: 18px;
			background: url(../images/cmn/icon/arw_blue_r.png) center center no-repeat;
			background-size: contain;
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
			margin: auto 0;
		}
	}
}


@media screen and (max-width: 960px) {
	.contents .areaBtn {
		margin-top: 20px;

		& a {
			padding: 10px;
			font-weight: bold;
			line-height: 1;
			font-size: 1rem;
			width: 100%;
			max-width: 500px;
			min-width: 0;
		}
	}
}


/** AmazonPayポップアップ **/
#amazonpayAssist .amazonpay-button-inner-image {
	width: 100%;
	max-width: 296px;
}

/** ソーシャルログインボタン **/
.socialLoginButoonGroup {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px 0;
}

@font-face {
	font-family: "Noto Sans SignInGoogle";
	src: url("../../luis/img/common/social/google/NotoSansCJKjp-Medium_subset.woff2") format("woff2"),
		url("../../luis/img/common/social/google/NotoSansCJKjp-Medium_subset.woff") format("woff");
}

/* Google */
#googleLogin,
#lineLogin {
	display: inline-block;
	color: #fff;
}

#googleLogin a,
#lineLogin a {
	color: #fff;
	text-decoration: none;
}

#googleLogin {
	height: 40px;
	background-color: #3689ef;
	margin-left: 40px;
}

#googleLogin a {
	position: relative;
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-family: "Noto Sans SignInGoogle";
}

#googleLogin a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -40px;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	border: 1px solid #3689ef;
	background: url(../../luis/img/common/social/google/google_logo.png) no-repeat center / 18px;
}

/* LINE */
#lineLogin {
	height: 40px;
	background-color: #00C300;
	border-radius: 0 7px 7px 0;
	margin-left: 34px;
}

#lineLogin:hover {
	background-color: #00e000;
}

#lineLogin a {
	position: relative;
	display: block;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: bold;
}

#lineLogin a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -34px;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	background: url(../../luis/img/common/social/line/line_btn_base.png) no-repeat center / cover;
	border-right: 1px solid #00b300;
}

#lineLogin:hover a::before {
	background: url(../../luis/img/common/social/line/line_btn_hover.png) no-repeat center / cover;
	border-right: 1px solid #00c900;
}

#lineLogout {
	margin: 0;
	padding: 0;
	height: 40px;
	background: #f6f6f6;
	color: #333;
	border: 1px solid #ccc;
	line-height: 1.4;
	font-size: 0.9em;
	cursor: pointer;
	border-radius: 6px;
	font-weight: normal;
	min-width: 180px;
	min-height: 36px;
}

#lineLogout a {
	position: relative;
	display: block;
	padding: 10px 30px;
	font-size: 14px;
	color: black;
	text-decoration: none;
	font-weight: normal;
}

#lineLoginStatus_label {
	display: inline-block;
	position: relative;
	padding: 5px 10px 5px 40px;
	border: 1px solid black;
	font-size: 0.9em;
	color: black;
	margin: 0;
}

#lineLoginStatus_label::before {
	position: absolute;
	top: 46%;
	left: 10px;
	transform: translate(0, -50%);
	content: "\f00c";
	color: #2fa700;
	font-size: 1.2em;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
}

/* マウスオーバー時 */
.fb-login-button:hover,
#googleLogin:hover,
.yconnectLogin:hover {
	opacity: 0.8;
}

#paymentTypeInfoLayoutGroup {
	margin-top: -1px;
}

/** 外部送信規律*/
.external-send-agreement {
	display: none;
	position: fixed;
	z-index: 100;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px -2px 5px -2px rgba(0, 0, 0, 0.15);
	padding: 20px 10vw;
	overflow: hidden;
}

.external-send-agreement-contents {
	float: left;
	font-size: var(--font-size-s);
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 160px);

	& h2 {
		&::after {
			content: "：";
		}
	}

	& p {
		font-feature-settings: "palt";
	}
}

.external-send-agreement-buttons {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	width: 150px;
	height: calc(100% - 40px);
	position: absolute;
	inset: auto 10vw auto auto;

	& a {
		font-size: var(--font-size-ss);
		border-radius: 5px;
		height: 44px;
		margin: 0;
		padding: 10px;

		&.external-send-agreement-button-ok {
			background-color: var(--color-corporate);
			border: 1px solid var(--color-corporate);
			color: #fff;
		}

		&.external-send-agreement-button-ng {
			background-color: #fff;
			color: var(--color-corporate);
			border: 1px solid var(--color-corporate);
		}
	}
}

@media screen and (max-width: 960px) {
	.external-send-agreement-contents {
		float: none;
		width: fit-content;
		margin: 0 auto;
		display: block;

		& h2 {
			font-weight: bold;
			text-align: center;

			&::after {
				content: none;
			}
		}
	}

	.external-send-agreement-buttons {
		position: revert;
		margin: 10px auto 0;
	}
}

@media screen and (max-width: 768px) {
	#wrap:has(.footer_nav.fixed) {
		+.external-send-agreement {
			bottom: 82px;
			box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
		}
	}

	body:has(.external-send-agreement[style*="block"]) {
		& #scrollUp {
			z-index: 99 !important;
		}
	}
}

@media screen and (max-width: 600px) {
	.external-send-agreement {
		padding: 20px 8vw;
	}

	.external-send-agreement-buttons {
		width: 100%;
	}
}

/** 外部送信規律*/


/* レスポンシブ用要素表示非表示 */
.sp-displayBlock {
	display: none;
}

.sp-displayInlineBlock {
	display: none;
}

.pc-displayBlock {
	display: block;
}

.pc-displayInlineBlock {
	display: inline-block;
}

@media screen and (max-width: 600px) {

	.sp-displayBlock {
		display: block;
	}

	.sp-displayInlineBlock {
		display: inline-block;
	}

	.pc-displayBlock {
		display: none;
	}

	.pc-displayInlineBlock {
		display: none;
	}

}


/* エラーメッセージ */
.alertMessageContent,
.systemMessageContent {
	font-size: var(--font-size-ss);
	margin: 0;
	padding: 0 0 0 1.5em;
	color: var(--bg-color-alert);

	&+.alertMessageContent,
	&+.systemMessageContent {
		margin-top: .5em;
	}
}

.alertMessageContentTitle,
.alertMessageContent {
	background-color: transparent;
	border: none;
	background-position: top 0px left;
}

.systemMessageContent {
	position: relative;
	background-color: transparent;
	border: none;
	color: var(--text-color-accent);

	&::before {
		content: "！";
		display: block;
		text-align: center;
		width: 1.3em;
		height: 1.3em;
		background-color: var(--color-corporate);
		border-radius: 1em;
		font-weight: bold;
		color: #fff;
		position: absolute;
		left: 0;
		top: -0.1em;
	}
}

.__error .alertMessageContent {
	display: block;
}

.checkboxWrap span.__error {
	display: inline-block;
}

.__error_senderNameSei .alertMessage:before,
.__error_orderNameSei .alertMessage:before,
.__error_destNameSei .alertMessage:before,
.__error_nameSei .alertMessage:before {
	content: "姓："
}

.__error_senderNameMei .alertMessage:before,
.__error_orderNameMei .alertMessage:before,
.__error_destNameMei .alertMessage:before,
.__error_nameMei .alertMessage:before {
	content: "名："
}

.__error_senderNameSeiKana .alertMessage:before,
.__error_orderNameSeiKana .alertMessage:before,
.__error_destNameSeiKana .alertMessage:before,
.__error_nameSeiKana .alertMessage:before {
	content: "セイ："
}

.__error_senderNameMeiKana .alertMessage:before,
.__error_orderNameMeiKana .alertMessage:before,
.__error_destNameMeiKana .alertMessage:before,
.__error_nameMeiKana .alertMessage:before {
	content: "メイ："
}

#__error_address21 .alertMessage:after,
/* 会員登録・会員情報の確認/変更 */
#__error_address2 .alertMessage:after,
/* マイページ定期変更 */
#__error_orderAddress2 .alertMessage:after,
/* 注文入力・LP */
#__error_senderAddress2 .alertMessage:after

/* ギフト */
	{
	content: "※番地がない住所は「無番地」と入力してください。";
}

/* 文章 汎用クラス */
.note {
	font-size: .9em;
	text-indent: -1.1em;
	padding-left: 1.1em;

	&::before {
		content: "※";
		margin-right: .1em;
	}
}

.alert {
	color: var(--text-color-alert);
}

.info {
	color: var(--text-color-accent);
}


/* 最後に消す */
.includePartsArea {
	border: 3px dashed var(--border-color-separate);
	padding: 20px;
	text-align: center;
	font-size: var(--font-size-ss);
}