@charset "UTF-8";

/*************************
font_import
*************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');


/*************************
reset
*************************/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}*[hidden]{display:none}body{line-height:1}menu,ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}body.noscroll{overflow:hidden}.iframe{width:100%;height:100%}.overlay{position:fixed;top:0;left:0;height:100vh;width:100%}.overlay.hidden{top:-100vh}#header.fixed{top:0;height:48px;position:sticky;box-shadow:0 2px 10px #2121211a}#header,#footer{overflow:hidden}@media screen and (min-width: 768px){#header.fixed{height:64px}}

*, *::before, *::after { box-sizing: border-box; }

#header {
	position: relative;
	z-index: 100;
}

#drawer.overlay,
#search-modal.overlay { z-index: 101; }

#drawer.overlay.hidden,
#search-modal.overlay.hidden {
	opacity: 0;
	z-index: 0;
}

/*************************
custom properties
*************************/

#LP.msp10off {
	--lp-color_black: #222;
	--lp-color_white: #fff;
	--lp-color_dark-gray: #3c3c3c;
	--lp-color_gray: #F2EFEA;

	--lp-color_bg-blue: #288DFF;
	--lp-color_orange: #FFAA01;

	--lp-color_navy: #0076B7;
	--lp-color_aqua: #49C4D6;
	--lp-color_yellow: #F4EE4D;
	--lp-color_gold: #F4EBBC;
	--lp-color_red: #C92222;
}

/* 背景色 */
#LP.msp10off .bgcl_black {
	background-color: var(--lp-color_black);
}

#LP.msp10off .bgcl_navy {
	background-color: var(--lp-color_navy);
}

#LP.msp10off .bgcl_orange {
	background-color: var(--lp-color_orange);
}

#LP.msp10off .bgcl_darkGray {
	background-color: var(--lp-color_dark-gray);
}

#LP.msp10off .bgcl_aqua {
	background-color: var(--lp-color_aqua);
}

/*************************
SP_layout（980px未満）
*************************/

#LP.msp10off {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: var(--lp-color_black);
	line-height: 1.5;
	width: 100%;
	height: auto;
	overflow: hidden;
}

#LP.msp10off.is_end { pointer-events: none; }

#LP.msp10off img {
	vertical-align: bottom;
	width: 100%;
	height: auto;
}

#LP.msp10off a {
	transition-duration: .3s;
	text-decoration-line: none;
}

#LP.msp10off a:hover {
	opacity: 1;
	filter: brightness(.7);
	transition-duration: .4s;
}

#LP.msp10off .device_sp { display: block; }
#LP.msp10off .device_pc { display: none; }

#LP.msp10off .inline_txt_pc { display: none; }

/* スペーサー */
#LP.msp10off .mb_none { margin-bottom: 0 !important; }
#LP.msp10off .mb_xs { margin-bottom: 3% !important; }
#LP.msp10off .mb_sm { margin-bottom: 5% !important; }
#LP.msp10off .mb_md { margin-bottom: 8% !important; }
#LP.msp10off .mb_lg { margin-bottom: 15% !important; }

#LP.msp10off .mt_none { margin-top: 0 !important; }
#LP.msp10off .mt_xs { margin-top: 3% !important; }
#LP.msp10off .mt_sm { margin-top: 5% !important; }
#LP.msp10off .mt_md { margin-top: 8% !important; }
#LP.msp10off .mt_lg { margin-top: 15% !important; }

/* スペーサー（SP限定） */
@media screen and (max-width: 980px) {
	#insta-live .mb_xs_sp { margin-bottom: 3% !important; }
	#insta-live .mb_sm_sp { margin-bottom: 5% !important; }
	#insta-live .mb_md_sp { margin-bottom: 8% !important; }
	#insta-live .mb_lg_sp { margin-bottom: 15% !important; }

	#insta-live .mt_xs_sp { margin-top: 3% !important; }
	#insta-live .mt_sm_sp { margin-top: 5% !important; }
	#insta-live .mt_md_sp { margin-top: 8% !important; }
	#insta-live .mt_lg_sp { margin-top: 15% !important; }
}

/* KV */
#LP.msp10off .kvArea { 
	position: relative;
}

#LP.msp10off .kvArea__header {
	width: 100%;
}

#LP.msp10off .kvArea__bottom {
	background-image: url(../images/sp/wh_kv_bottom_band.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

#LP.msp10off .kvArea__bottom .pointUp_txt {
	width: 66vw;
	padding: 1% 0;
	margin-right: 5%;
}

/* メインコンテンツ共通 */
#LP.msp10off .mainContents {
	width: 100%;
	background-color: var(--lp-color_white);
}

#LP.msp10off .mainContents__inner {
	width: 92%;
	margin: 0 auto;
	padding: 6% 0 10%;
}

#LP.msp10off .mainContents .notes_list {
	display: inline-block;
}

#LP.msp10off .mainContents .notes_list li {
	text-align: left;
	letter-spacing: -.01em;
	font-size: 2.7vw;
	font-weight: 500;
	margin-bottom: 2%;
	text-indent: -1em;
	padding-left: 1em;
}

#LP.msp10off .mainContents .notes_list.txt_center li {
	text-align: center;
	font-weight: 500;
}

#LP.msp10off .mainContents .notes_list.txt_center li span {
	border-bottom: 1px solid var(--lp-color_black);
	font-weight: 500;
}

#LP.msp10off .mainContents span.marker_gold {
	background: linear-gradient(transparent 75%, var(--lp-color_gold) 75%);
	font-weight: 900;
}

#LP.msp10off .mainContents span.marker_yellow {
	background: linear-gradient(transparent 75%, var(--lp-color_yellow) 75%);
	padding-left: 1%;
	padding-right: 1%;
	font-weight: 900;
}

#LP.msp10off .header_txt {
    text-align: center;
    font-weight: 900;
	letter-spacing: .05em;
}

#LP.msp10off .header_txt.fs_lg {
	margin-bottom: 4%;
    font-size: 6vw;
}

#LP.msp10off .header_txt.fs_md {
	margin-bottom: 2%;
    font-size: 4.5vw;
}

/* ボタン各種 */
#LP.msp10off .section_btns {
	width: 100%;
	margin: 0 auto 8%;
}

#LP.msp10off .btn_square a {
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	user-select: none;
	height: 3.5rem;
	padding: 1.2rem 0;
	font-size: 4vw;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	border-radius: 5px;
	transition: .4s;
	color: var(--lp-color_white);
}

#LP.msp10off .btn_square a::after {
	content: "";
    display: block;
    position: absolute;
    top: 42%;
    right: 3%;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    width: 10px;
    height: 10px;
	border-top: solid 2px var(--lp-color_white);
    border-right: solid 2px var(--lp-color_white);
}

#LP.msp10off .btn_square.short a {
	width: 80%;
}

#LP.msp10off .btn_square.wide a {
	width: 100%;
}

#LP.msp10off .btn_square.twoLines a {
	padding: 0.7rem 0;
    font-size: 3.4vw;
    line-height: 1.3;
}

#LP.msp10off .btn_square.buyNow a {
	font-size: 3.8vw;
}

#LP.msp10off .btn_square.joinSaison a {
	text-align: left;
    padding-left: 0.5rem;
    padding-top: 1.35rem;
	font-size: 3.2vw;
}

#LP.msp10off .btn_square.joinMembers a {
	padding: 0.5rem 0;
	line-height: 1.1;
	font-size: 4vw;
}

#LP.msp10off .btn_square.joinMembers a .fs_sm {
	font-size: 3.5vw;
}

#LP.msp10off .btn_square.joinMembers a .fs_lg {
	font-size: 5.5vw;
}

#LP.msp10off .btn_square.joinMembers a .poppins {
	font-family: 'Poppins', sans-serif;
}

#LP.msp10off .btn_round a {
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	user-select: none;
	width: 75vw;
	height: 3.5rem;
	padding: 1.2rem 0;
	font-size: 4vw;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	border-radius: 100px;
	transition: .4s;
	color: var(--lp-color_white);
}

#LP.msp10off .btn_round a::after {
	content: "";
    display: block;
    position: absolute;
    top: 42%;
    right: 6%;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    width: 10px;
    height: 10px;
	border-top: solid 2px var(--lp-color_white);
    border-right: solid 2px var(--lp-color_white);
}

/* キャンペーン概要 */
#LP.msp10off .section_overview h2 {
	margin-bottom: 7%;
	text-align: center;
	line-height: 1.8;
	font-size: 4vw;
    font-weight: 900;
}

#LP.msp10off .section_overview .anchorArea.btn2col {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 10%;
}

#LP.msp10off .section_overview .anchorArea.btn2col li {
	flex-basis: 48%;
}

#LP.msp10off .section_overview .anchorArea.btn2col li .cp_txt_round {
	text-align: center;
	margin: 0 auto 4%;
	width: 26vw;
	padding: 0.4rem 0;
	font-size: 2.8vw;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	border-radius: 100px;
	color: var(--lp-color_white);
	background-color: var(--lp-color_black);
}

#LP.msp10off .section_overview .anchorArea .anchorLink {
	transition-duration: .3s;
}

#LP.msp10off .section_overview .anchorArea .anchorLink:hover {
	cursor: pointer;
	opacity: 1;
	filter: brightness(.9);
	transition-duration: .4s;
}

/* カード別ポイント早見表 */
#LP.msp10off .scroll_table_wrap {
	display: flex;
	overflow: hidden;
	margin-bottom: 8%;
}

#LP.msp10off .scroll_table_wrap .scroll_table_left {
	position: relative;
	z-index: 10;	
}

#LP.msp10off .scroll_table_wrap .scroll_table_left img {
	width: 45vw;
}

#LP.msp10off .scroll_table_wrap .scroll_table_right {
	overflow-x: auto;
}

#LP.msp10off .scroll_table_wrap .scroll_table_right img {
	width: 68.25vw;
	margin-bottom: 8%;
}

#LP.msp10off .scroll_table_wrap .simplebar-scrollbar {
	background-color: #fff;
	border: 1px solid #9e9e9e;
	border-radius: 20px;
}

#LP.msp10off .scroll_table_wrap .simplebar-scrollbar::before {
	background-color: #fff;
}

#LP.msp10off .scroll_table_wrap .simplebar-track {
	background-color: #EDEDED;
	border-radius: 20px;
}


/* 注意事項・有効期限 */
#LP.msp10off .cp_notes_round {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	padding: 0.4rem 0;
	border-radius: 100px;
	color: var(--lp-color_white);
	background-color: var(--lp-color_red);
}

#LP.msp10off .cp_notes_round.icn_warning {
	background-image: url(../images/common/wh_main_icon_warning.png);
	background-repeat: no-repeat;
    background-size: 7vw;
    background-position-x: 3.5vw;
    background-position-y: 3.3vw;
}

#LP.msp10off .cp_notes_round p {
	padding-left: 1rem;
	font-size: 2.1vw;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.5;
}

#LP.msp10off .cp_notes_round p span {
	display: inline-block;
	padding-top: 1%;
	font-size: 2.6vw;
	font-weight: 900;
	line-height: 1.5;
}

#LP.msp10off .cp_notes_txt {
	margin-top: 2%;
	margin-bottom: 8%;
	text-align: center;
	font-size: 2.6vw;
}

/* お支払い例 */
#LP.msp10off .section_campaign {
	margin: 0 auto 10%;
	padding: 6% 3%;
	background-color: var(--lp-color_gray);
}

#LP.msp10off .section_campaign .cp_txt_round {
	text-align: center;
	margin: 0 auto 3%;
    width: 30vw;
    padding: 0.45rem 0;
    font-size: 3vw;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	border-radius: 100px;
	color: var(--lp-color_white);
	background-color: var(--lp-color_black);
}

#LP.msp10off .section_campaign h2 {
	margin-bottom: 6%;
	text-align: center;
	font-size: 4vw;
	font-weight: 900;
}

#LP.msp10off .section_campaign .payment_image {
	margin-bottom: 6%;
}

/* 対象カード・注意事項 */
#LP.msp10off .attentionArea__box {
	margin: 0 auto;
    padding: 5% 3% 6% 3%;
    border-radius: 8px;
	border: 2px solid var(--lp-color_navy);
	background-color: var(--lp-color_white);
}

#LP.msp10off .section_campaign .attentionArea__header {
	margin-bottom: 4%;
	text-align: center;
	font-size: 5vw;
	font-weight: 900;
	letter-spacing: .05em;
	color: var(--lp-color_navy);
}

#LP.msp10off .attentionArea__header span {
	padding: 0 1%;
	background: linear-gradient(transparent 75%, var(--lp-color_yellow) 75%);
	font-weight: 900;
}

#LP.msp10off .attentionArea__listWrap {
	display: block;
	text-align: center;
}

#LP.msp10off .attentionArea__listWrap .cardList {
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	padding-bottom: 7%;
}

#LP.msp10off .attentionArea__listWrap .cardList li {
	flex-basis: 45%;
	margin-bottom: 6%;
}

#LP.msp10off .attentionArea__listWrap .cardList li p {
	font-size: 2.3vw;
}

#LP.msp10off .attentionArea__listWrap .cardList li:last-child {
	flex-basis: 55%;
	margin-bottom: 0;
}

#LP.msp10off .attentionArea__listWrap .cardList li img {
	width: 28vw;
	margin: 0 auto 4%;
}

#LP.msp10off .attentionArea__list {
	display: inline-block;
	line-height: 1.5;
}

#LP.msp10off .attentionArea__list li {
	margin-bottom: 1%;
	text-align: left;
	font-size: 2.8vw;
	font-weight: 500;
	letter-spacing: -0.02em;
	text-indent: -1em;
	padding-left: 1em;
}

#LP.msp10off .attentionArea__list li span.fs_sm {
	font-size: 2.5vw;
}

#LP.msp10off .attentionArea__header-line {
	margin-bottom: 2%;
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 4vw;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: var(--lp-color_navy);
}
#LP.msp10off .attentionArea__header-line::before,
#LP.msp10off .attentionArea__header-line::after {
	content: '';
	flex-grow: 1;
	height: 2px;
	background-color: var(--lp-color_navy);
}
#LP.msp10off .attentionArea__header-line::before { margin-right: 1.5em; }
#LP.msp10off .attentionArea__header-line::after { margin-left: 1.5em; }

#LP.msp10off .attentionArea__button {
	width: 100%;
	margin: 0 auto;
}
#LP.msp10off .attentionArea__button a { display: block; }

/* メダル会員限定ポイントアップ */
#LP.msp10off .pointTable {
	margin: 0 auto 5%;
}

/* おすすめカテゴリー */
#LP.msp10off .recommendArea { margin: 10% 0 8%; }

#LP.msp10off .recommendArea .recommendArea_header {
	position: relative;
	width: 100%;
	margin: 0 auto 4%;
}

#LP.msp10off .recommendArea .recommendArea_header p {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -53%);
	text-align: center;
	font-size: 5vw;
	font-weight: 900;
	letter-spacing: 0.05em;
	color: var(--lp-color_white);
}

#LP.msp10off .recommendArea .recommendArea_header.mop_header p {
	transform: translate(-50%, -52%);
    font-size: 4.3vw;
    line-height: 1.2;
}

#LP.msp10off .category__header {
	border-left: 6px solid #dc3545;
	font-size: 4.5vw;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 6%;
	padding-left: .5em;
}

#LP.msp10off .recommendArea__list.category_item {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto 10%;
}
#LP.msp10off .recommendArea__list.category_item > li {
	position: relative;
	flex-basis: 46%;
	margin-bottom: 5%;
}

#LP.msp10off .recommendArea__list.category_item > li:nth-child(n+5) { margin-bottom: 0; }

#LP.msp10off .recommendArea__btn a {
	display: block;
	width: 52%;
	margin: 0 auto;
}

#LP.msp10off .recommendArea__photo {
	font-size: 3.8vw;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--lp-color_black);
}
#LP.msp10off .recommendArea__photo > figcaption { margin-top: 3%; font-weight: 700 }

#LP.msp10off .txt_join {
	margin-bottom: 2%;
	text-align: center;
    font-size: 3.3vw;
    font-weight: 900;
	color: var(--lp-color_dark-gray);
}

#LP.msp10off .ecTop__button {
	margin: 0 auto;
	width: 75%;
}
#LP.msp10off .ecTop__button a { display: block; }

#LP.msp10off .noticeArea {
	margin-top: 12%;
}
#LP.msp10off .noticeArea__txt {
	margin-bottom: 1%;
	font-size: 3.2vw;
	text-indent: -1em;
	padding-left: 1em;
}
#LP.msp10off .noticeArea__btn a {
	display: block;
	width: 48%;
	margin-right: 0;
	margin-left: auto;
}

/* セール終了後 */
#LP.msp10off .saleEnd {
	background-color: var(--lp-color_white);
	color: var(--lp-color_black);
	border: 2px solid var(--lp-color_black);
	border-radius: 10px;
	display: none;
	font-size: 4.5vw;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 4%;
	padding: 3% 0;
}
#LP.msp10off .saleEnd span { font-size: 70%; }

/*************************
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
	#LP.msp10off .device_sp { display: none; }
	#LP.msp10off .device_pc { display: block; }

	#LP.msp10off img {
		width: fit-content;
	}

	#LP.msp10off .inline_txt_pc { display: inline-block; margin-left: 1.5em;}

	/* スペーサー */
	#LP.msp10off .mb_xs { margin-bottom: 16px !important; }
	#LP.msp10off .mb_sm { margin-bottom: 32px !important; }
	#LP.msp10off .mb_md { margin-bottom: 48px !important; }
	#LP.msp10off .mb_lg { margin-bottom: 80px !important; }

	#LP.msp10off .mt_xs { margin-top: 16px !important; }
	#LP.msp10off .mt_sm { margin-top: 32px !important; }
	#LP.msp10off .mt_md { margin-top: 48px !important; }
	#LP.msp10off .mt_lg { margin-top: 80px !important; }

	/* スペーサー（PC限定） */
	#LP.msp10off .mb_xs_pc { margin-bottom: 16px !important; }
	#LP.msp10off .mb_sm_pc { margin-bottom: 32px !important; }
	#LP.msp10off .mb_md_pc { margin-bottom: 48px !important; }
	#LP.msp10off .mb_lg_pc { margin-bottom: 80px !important; }

	#LP.msp10off .mt_xs_pc { margin-top: 16px !important; }
	#LP.msp10off .mt_sm_pc { margin-top: 32px !important; }
	#LP.msp10off .mt_md_pc { margin-top: 48px !important; }
	#LP.msp10off .mt_lg_pc { margin-top: 80px !important; }

	/* KV */
	#LP.msp10off .kvArea {
		min-width: 1240px;
	}

	#LP.msp10off .kvArea__inner {
		background-image: url(../images/pc/wh_kv_bg.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 300px;
	}

	#LP.msp10off .kvArea__header {
		margin: 0 auto;
		padding: 12px 0;
		width: fit-content;
	}

	#LP.msp10off .kvArea__bottom {
		height: 75px;
	}

	#LP.msp10off .kvArea__bottom .pointUp_txt {
		width: fit-content;
		margin-right: 45px;
		padding: 7px 0;
	}

	/* メインコンテンツ共通 */
	#LP.msp10off .mainArea_bg {
		padding-bottom: 60px;
		background: linear-gradient(to right, var(--lp-color_bg-blue) 0%, var(--lp-color_bg-blue) 50%, var(--lp-color_orange) 50%, var(--lp-color_orange) 100%);
	}

	#LP.msp10off .mainContents {
		width: 1240px;
		margin: 0 auto;
	}

	#LP.msp10off .mainContents__inner {
		width: 980px;
		padding: 40px 0;
	}

	#LP.msp10off .header_txt.fs_lg {
		margin-bottom: 24px;
		font-size: 42px;
	}

	#LP.msp10off .header_txt.fs_md {
		margin-bottom: 16px;
		font-size: 26px;
	}

	/* ボタン各種 */
	#LP.msp10off .section_btns {
		width: 980px;
		margin: 0 auto 20px;
	}

	#LP.msp10off .btn_flexBox {
		display: flex;
		justify-content: space-between;
	}

	#LP.msp10off .btn_square a {
		height: 80px;
		padding: 27px 0;
		font-size: 25px;
		letter-spacing: 0.01em;
		line-height: 1;
	}

	#LP.msp10off .btn_square.short a {
		width: 450px;
	}

	#LP.msp10off .btn_square.twoLines a {
		padding: 15px 0;
		font-size: 20px;
	}

	#LP.msp10off .btn_square a::after {
		top: 33px;
        right: 22px;
        width: 15px;
        height: 15px;
		border-top: solid 3px var(--lp-color_white);
		border-right: solid 3px var(--lp-color_white);
	}

	#LP.msp10off .btn_square.buyNow a {
		font-size: 24px;
		margin: 0;
	}

	#LP.msp10off .btn_square.joinSaison a {
		width: 700px;
        font-size: 24px;
        padding: 28px 0 27px 27px;
	}

	#LP.msp10off .btn_square.joinMembers a {
		width: 700px;
		height: 100px;
		padding: 18px 0;
        line-height: 1;
        font-size: 25px;
	}

	#LP.msp10off .btn_square.joinMembers a::after {
        top: 45px;
    }
	
	#LP.msp10off .btn_square.joinMembers a .fs_sm {
		font-size: 20px;
	}
	
	#LP.msp10off .btn_square.joinMembers a .fs_lg {
		font-size: 40px;
	}

	#LP.msp10off .btn_round a {
		width: 450px;
		height: 82px;
		padding: 26px 0;
		font-size: 25px;
	}

	#LP.msp10off .btn_round a::after {
		top: 33px;
        right: 22px;
        width: 15px;
        height: 15px;
        border-top: solid 3px var(--lp-color_white);
        border-right: solid 3px var(--lp-color_white);
	}

	/* キャンペーン概要 */
	#LP.msp10off .section_overview h2 {
		margin-bottom: 48px;
		font-size: 26px;
		letter-spacing: .05em;
	}

	#LP.msp10off .section_overview .anchorArea.btn2col {
		justify-content: space-around;
		margin: 0 auto 60px;
	}

	#LP.msp10off .section_overview .anchorArea.btn2col li {
		flex-basis: 450px;
	}

	#LP.msp10off .section_overview .anchorArea.btn2col li .cp_txt_round {
		margin: 0 auto 24px;
		width: 250px;
		height: 50px;
        padding: 12px 0;
		font-size: 24px;
	}

	/* カード別ポイント早見表 */
	#LP.msp10off .cpTable_container {
		margin-bottom: 40px;
	}

	/* 注意事項・有効期限 */
	#LP.msp10off .cp_notes_round {
		padding: 12px 0;
        height: 75px;
	}

	#LP.msp10off .cp_notes_round.icn_warning {
		background-size: auto;
		background-position-x: 24px;
        background-position-y: 17px;
	}

	#LP.msp10off .cp_notes_round p {
		padding-left: 1.5rem;
		font-size: 16px;
	}

	#LP.msp10off .cp_notes_round p span {
		padding-top: 0;
		font-size: 18px;
	}

	#LP.msp10off .cp_notes_txt {
		margin-top: 16px;
		margin-bottom: 60px;
		font-size: 14px;
	}

	/* お支払い例 */
	#LP.msp10off .section_campaign {
		margin: 0 auto 48px;
		padding: 32px 18px;
	}

	#LP.msp10off .section_campaign .cp_txt_round {
		margin: 0 auto 24px;
		width: 250px;
		height: 55px;
		padding: 16px 0;
		font-size: 24px;
	}

	#LP.msp10off .section_campaign h2 {
		margin-bottom: 36px;
		font-size: 36px;
	}

	#LP.msp10off .section_campaign .payment_image {
		margin-bottom: 48px;
	}

	/* 対象カード・注意事項 */
	#LP.msp10off .attentionArea__box {
		padding: 24px 36px;
	}

	#LP.msp10off .section_campaign .attentionArea__header {
		margin-bottom: 40px;
		font-size: 40px;
		letter-spacing: .01em;
	}

	#LP.msp10off .attentionArea__header-line {
		font-size: 24px;
		margin-bottom: 16px;
	}

	#LP.msp10off .attentionArea__listWrap .cardList {
		justify-content: center;
		padding-bottom: 32px;
	}

	#LP.msp10off .attentionArea__listWrap .cardList li {
		flex-basis: 230px;
		margin-bottom: 20px;
		margin-right: 40px;
	}

	#LP.msp10off .attentionArea__listWrap .cardList li p {
		font-size: 12px;
	}

	#LP.msp10off .attentionArea__listWrap .cardList li:nth-child(3) {
		margin-right: 0;
	}

	#LP.msp10off .attentionArea__listWrap .cardList li:last-child {
		flex-basis: 230px;
		margin-right: 0;
	}

	#LP.msp10off .attentionArea__listWrap .cardList li img {
		width: fit-content;
		margin: 0 auto 12px;
	}

	#LP.msp10off .attentionArea__list li{
		margin-bottom: 4px;
		font-size: 14px;
		letter-spacing: 0.01em;
	}

	#LP.msp10off .attentionArea__list li span.fs_sm {
		font-size: 20px;
	}

	#LP.msp10off .mainContents .notes_header {
		margin-bottom: 16px;
		font-size: 24px;
	}

	#LP.msp10off .mainContents .notes_list li {
		font-size: 14px;
		margin-bottom: 4px;
	}
	
	#LP.msp10off .mainContents span.marker_yellow {
		padding-left: 4px;
		letter-spacing: .01em;
	}

	#LP.msp10off .pointTable {
		width: fit-content;
		margin: 0 auto 40px;
	}

	/* おすすめカテゴリー */
	#LP.msp10off .recommendArea {
		margin: 60px auto 40px;
	}

	#LP.msp10off .recommendArea .recommendArea_header {
		width: 678px;
		margin: 0 auto 24px;
	}

	#LP.msp10off .recommendArea .recommendArea_header p {
		font-size: 36px;
	}

	#LP.msp10off .recommendArea .recommendArea_header.mop_header p {
		font-size: 32px;
	}

	#LP.msp10off .category__header {
		width: 850px;
		margin: 0 auto 24px;
		font-size: 24px;
	}

	#LP.msp10off .recommendArea__list.category_item {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		width: 750px;
		margin: 0 auto 60px;
	}

	#LP.msp10off .recommendArea__list.category_item > li { 
		flex-basis: 210px;
		margin-right: 0;
	}

	#LP.msp10off .recommendArea__list.category_item > li:nth-child(4n) {
		margin-bottom: 0;
	}

	#LP.msp10off .recommendArea__btn a {
		width: 303px;
	}

	#LP.msp10off .recommendArea__photo { font-size: 18px; }
	#LP.msp10off .recommendArea__photo > figcaption { margin-top: 5px; letter-spacing: .01em; }

	#LP.msp10off .txt_join {
		font-size: 24px;
		margin: 0 auto 12px;
		letter-spacing: .02em;
	}

	#LP.msp10off .attentionArea__button,
	#LP.msp10off .ecTop__button { width: 504px; }

	#LP.msp10off .noticeArea {
		margin-top: 72px;
	}

	#LP.msp10off .noticeArea__txt {
		margin-bottom: 4px;
		font-size: 16px;
		letter-spacing: 0.05em;
	}

	#LP.msp10off .noticeArea__btn a {
		display: block;
		width: 201px;
		margin-right: 0;
		margin-left: auto;
	}

	/* セール終了後 */
	#LP.msp10off .saleEnd {
		font-size: 32px;
		margin-bottom: 36px;
		padding: 20px 0;
	}
}