@charset "shift_jis";
/* CSS Document */

/* ==================================================

   限定セットLP

================================================== */

/* コンテンツ幅リセット */
main#wrapper {
	position: relative;
	width: 100%!important;
	max-width: initial!important;
	max-width: auto!important;
	margin: 0 auto!important;
	padding: 0!important;
	overflow: visible!important;
}
article#contents { padding-bottom: 0!important; }
article#contents .inner_content { padding-top: 0!important; }

:root {
	--main-clr-lightgray: #c9c9c8;
	--main-clr-lightbeige: #cbc1ae;

	--main-clr-white: #f4f5f0;
	--main-clr-gray: #7f7c7a;
	--main-clr-red: #d07157;

	--clr-ss-black: #48413b;
}
#limitedset a,
#limitedset a:hover {
    color: var(--clr-ss-black);
    text-decoration: none;
	transition: all 0.2s;
}
#limitedset * { box-sizing: border-box; line-height: 1; }
#limitedset h1,
#limitedset h2,
#limitedset h3,
#limitedset h4 { color: var(--clr-ss-black);}
#limitedset img { width: 100%; height: auto; }
#limitedset .pc_none { display: none; }





#limitedset {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	background-color: #f0f1f3;

	/* fonts */
	font-family:	"Avenir Next", /* macOS, iOS*/
					"Arial",  /* windows, macOS */
					"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  /* macOS, iOS*/
					"游ゴシック", "Yu Gothic", /* windows8.1以降 */
					"メイリオ", Meiryo,  /* windows8.1以前 */
					sans-serif;
	color: var(--clr-ss-black);
	font-weight: 500;
}


/* ==================================================
   メインコンテンツエリア
================================================== */

/* 看板
================================================== */

#kanban {
	position: relative;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: baseline;
	align-items: center;
	padding: 0 20px;
}
#kanban h2 {
	font-size: 15px;
	line-height: 1.5;
	font-weight: bold;
	text-align: left;
}
#kanban .logo {
	width: 160px;
	height: auto;
	margin-left: auto;
}

/* コンテンツ幅・セクション
================================================== */

#limitedset .contentsarea {
	order: 2;
    position: relative;
	width: 560px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 54px 0px rgba(72, 65, 59, 0.1);
}

#limitedset .section {
	position: relative;
	width: 100%;
	margin: 0 auto 80px;
}

/* 見出し
================================================== */

#limitedset .heading_img {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.list_item + .heading_img { margin-top: 80px!important; }

#limitedset .heading {
	position: relative;
	width: 100%;
	padding: 40px 0 24px;
}
#limitedset .heading p {
	font-size: 16px;
	margin-bottom: 0.5em;
	letter-spacing: 0.1em;
}
#limitedset .heading h4 {
	font-size: 24px;
	letter-spacing: 0.1em;
}

/* 商品一覧
================================================== */

#limitedset .list_item {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
#limitedset .list_item > li {
	position: relative;
	width: 100%;
}
#limitedset .list_item > li > a {
	position: relative;
	width: 100%;
	display: block;
}
#limitedset .list_item > li > a h5 {
	color: #687585;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 0 0 1em;
}
#limitedset .list_item > li:nth-child(n+2) > a h5 {
	margin-top: 1em;
	padding: 1em 0;
}
#limitedset .list_item > li > a h5 span {
	color: #fff;
	letter-spacing: 0;
	background-color: #687585;
	margin-right: 0.25em;
	padding: 0.15em 0.45em 0.15em 0.5em;
}

/* ポイントバック表記あり */
#limitedset .list_item > li a .pointback {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-top: 24px;
}
#limitedset .list_item > li a .pointback::before {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: "";
	width: 100%;
	height: 1px;
	background: rgb(72,65,59);
	background: linear-gradient(90deg, rgba(72,65,59,0) 5%, rgba(72,65,59,0.5) 25%, rgba(72,65,59,0.5) 75%, rgba(72,65,59,0) 95%);
}

#limitedset .pointback {
	font-size: 14px;
	line-height: 1.75;
}
#limitedset .pointback span {
	font-size: 18px;
	padding: 0 0.25em;
}
#limitedset .pointback span.price_sell { color: #d07157 !important; }
#limitedset .pointback strong { font-size: 28px; font-weight: normal !important; }

/* 購入ボタン */
#limitedset .list_item > li > a > .btn_buy {
	position: relative;
	width: 70%;
	display: block;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	background-color: #48413b;
	border: solid 1px #48413b;
	margin: 15px auto 0;
	padding: 12px 0;
	border-radius: 100px;
}
#limitedset .list_item > li > a > .btn_buy::after {
	position: absolute;
	top: calc(50% - 2px);
	right: 20px;
	display: inline-block;
	content: "";
	width: 4px;
	height: 4px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
#limitedset .list_item > li > a:hover > .btn_buy {
	color: #48413b;
	background-color: #fff;
}
#limitedset .list_item > li > a:hover > .btn_buy::after {
	right: 16px;
	border-color: #48413b;
}

#limitedset .list_item > li > a > .btn_buy,
#limitedset .list_item > li > a:hover > .btn_buy { transition: all 0.2s; }
#limitedset .list_item > li > a > .btn_buy::after,
#limitedset .list_item > li > a:hover > .btn_buy::after { transition: right 0.2s; }


/* 大きいボタン
================================================== */

#limitedset .btn_l {
	position: relative;
	width: 100%;
	margin: 0 auto 80px;
}
#limitedset .btn_l p {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0.5em;
}
#limitedset .btn_l p::before,
#limitedset .btn_l p::after {
	display: inline-block;
	vertical-align: middle;
	content: "";
	width: 2px;
	height: 16px;
	background-color: var(--clr-ss-black);
}
#limitedset .btn_l p::before { transform: rotate(-20deg); margin-right: 0.5em;}
#limitedset .btn_l p::after { transform: rotate(20deg); margin-left: 0.5em;}
#limitedset .btn_l a {
	position: relative;
	display: block;
	width: 75%;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	background-color: #687585;
	border: solid 2px #687585;
	margin: 0 auto;
	border-radius: 120px;
	padding: 1.5em 0;
}
#limitedset .btn_l a::after {
	position: absolute;
	top: calc(50% - 6px);
	right: 8%;
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	transition: all 0.2s;
}

/* hover*/
#limitedset .btn_l a:hover {
	color: #687585;
	background-color: #fff;
}
#limitedset .btn_l a:hover::after {
	right: 6%;
	border-color: #687585;
	transition: all 0.2s;
}

/* スマホ固定ナビ
================================================== */

#limitedset .smp_fixed_nav { display: none!important; }


/* 楽天・Yahoo フッター
================================================== */
#limitedset footer {
	position: relative;
	width: 100%;
	background-color: var(--clr-ss-black);
	padding: 24px 0;
}
#limitedset footer ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
#limitedset footer ul li {
	position: relative;
}
#limitedset footer ul li:not(:nth-child(1))::before{
	position: relative;
	display: inline-block;
	content: "|";
	color: #fff;
	font-size: 14px;
	line-height: 1;
	margin: 0 1em;
}
#limitedset footer ul li a {
	color: #fff;
	font-size: 14px;
	line-height: 1;
}





/* ==================================================
   PC左側 / PC右側
================================================== */

#limitedset .pc_left,
#limitedset .pc_right {
	position: sticky;
	/*top: 0;*/
	width: calc((100% - 560px)/2);
	/*height: 100vh;*/
	display: flex;
	justify-content: center;
	align-items: center;
}
#limitedset .pc_left > .inner,
#limitedset .pc_right > .inner {
	text-align: center;
	padding: 0 16%;
}


/*  PC用 左側
================================================== */

#limitedset .pc_left {
	order: 1;
}

/* レイアウト */
#limitedset .pc_menu_cmn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 32px;
	text-align: left;
}
#limitedset .pc_menu_cmn > li { width: 100%; }
#limitedset .pc_menu_cmn > li:nth-child(1) {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 32px;
}
#limitedset .pc_menu_cmn > li:nth-child(1) > ul { width: calc((100% - 32px*1)/2); }
#limitedset .pc_menu_cmn h3,
#limitedset .pc_menu_cmn h4 { width: 100%; }


/* フォントサイズなど */
#limitedset .pc_menu_cmn > li {
	position: relative;
}
#limitedset .pc_menu_cmn > li > h3 {
	width: 100%;
	font-size: 1vw;/*20px*/
	font-weight: bold;
	line-height: 1.75;
	border-bottom: solid 1px var(--clr-ss-black);
	margin-bottom: 1em;
}
#limitedset .pc_menu_cmn > li h4 {
	font-size: 0.8vw;/*16px*/
	font-weight: bold;
	line-height: 1.75;
	margin-bottom: 0.5em;
}
#limitedset .pc_menu_cmn > li > ul li a {
	position: relative;
	display: block;
	font-size: 0.8vw;/*16px*/
	line-height: 1.75;
	text-indent: 0.75em;
}
#limitedset .pc_menu_cmn > li > ul li a::before {
	position: absolute;
	top: 0.5vw;/*10px*/
	left: 0;
	display: inline-block;
	content: "";
	width: 4px;
	height: 4px;
	border-top: solid 2px var(--clr-ss-black);
	border-right: solid 2px var(--clr-ss-black);
	transform: rotate(45deg);
}

#limitedset .pc_menu_cmn > li > ul li:hover a { background-color: #d9dce0;}



/*  PC用 右側
================================================== */

#limitedset .pc_right {
	order: 3;
	background: url(/IMAGE/limitedset/bg.jpg) no-repeat center center;
	background-size: cover;
}
#limitedset .pc_right p {
	font-size: 1.4vw;/*28px*/
	font-weight: bold;
	line-height: 2;
	letter-spacing: 0.25em;
}
