@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');

/*************************
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;
}

/*************************
LP_color
custom properties
*************************/

#LP.PGpointup {
	--lp-color_white: #fff;
	--lp-color_light-gray: #f5f5f5;
	--lp-color_gray: #dfdfdf;
	--lp-color_dark-gray: #3C3C3C;
	--lp-color_black: #222222;

	--lp-color_navy: #00437C;
	--lp-color_blue: #2882FF;
	--lp-color_orange: #FF9600;

	--lp-color_red: #FF2828;
	--lp-color_green: #3AAE36;
	--lp-color_pale-blue: #D4E6FF;
	--lp-color_pale-gold: #F4E7BE;
	--lp-color_pale-yellow: #FFFDE0;
	--lp-color_pale-green: #F0FFEA;
	--lp-color_pale-orange: #FFF6E5;

	--lp-color_yellow: #F4EE4D;
	--lp-color_pink: #E77979;
	--lp-color_link-blue: #0014FF;
}

#LP.PGpointup .cl_navy {
	color: var(--lp-color_navy);
}

#LP.PGpointup .cl_blue {
	color: var(--lp-color_blue);
}

#LP.PGpointup .cl_orange {
	color: var(--lp-color_orange);
}

#LP.PGpointup .cl_pink {
	color: var(--lp-color_pink);
}

#LP.PGpointup .cl_red {
	color: var(--lp-color_red);
}

#LP.PGpointup .bgcl_blue {
	background-color: var(--lp-color_blue);
}

#LP.PGpointup .bgcl_pale-blue {
	background-color: var(--lp-color_pale-blue);
}

#LP.PGpointup .bgcl_pale-gold {
	background-color: var(--lp-color_pale-gold);
}

#LP.PGpointup .bgcl_pale-yellow {
	background-color: var(--lp-color_pale-yellow);
}

#LP.PGpointup .bgcl_pale-green {
	background-color: var(--lp-color_pale-green);
}

#LP.PGpointup .bgcl_orange {
	background-color: var(--lp-color_orange);
}

#LP.PGpointup .bgcl_dark-gray {
	background-color: var(--lp-color_dark-gray);
}

/*************************
main
SP_layout（980px未満）
*************************/

/* -------------
LP共通
------------- */
#LP.PGpointup {
	font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
	overflow: hidden;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: none;
	color: var(--lp-color_dark-gray);
}

#LP.PGpointup.bg_full {
	background-image: linear-gradient(
    to right,
    #004199 0%,
	#0079C3 25%,
    #18A1DD 50%,
	#0079C3 75%,
    #004199 100%
  );
}

#LP.PGpointup.is_end { pointer-events: none; }

#LP.PGpointup img {
	user-select: none;
	vertical-align: bottom;
	margin: 0 auto;
	width: 100%;
	height: auto;
}

#LP.PGpointup a {
	display: block;
	transition: .4s;
	text-decoration: none;
}
#LP.PGpointup a:hover { filter: brightness(.7); }
#LP.PGpointup a.inline {
	display: inline;
}

#LP.PGpointup .device_sp { display: block; }
#LP.PGpointup .device_pc { display: none; }

/* スペーサー */
#LP.PGpointup .mb_xxs { margin-bottom: 1% !important; }
#LP.PGpointup .mb_xs { margin-bottom: 3% !important; }
#LP.PGpointup .mb_sm { margin-bottom: 5% !important; }
#LP.PGpointup .mb_md { margin-bottom: 8% !important; }
#LP.PGpointup .mb_lg { margin-bottom: 10% !important; }

#LP.PGpointup .mt_xs { margin-top: 3% !important; }
#LP.PGpointup .mt_sm { margin-top: 5% !important; }
#LP.PGpointup .mt_md { margin-top: 8% !important; }
#LP.PGpointup .mt_lg { margin-top: 10% !important; }

/* スペーサー（SP限定） */
@media screen and (max-width: 980px) {
#LP.PGpointup .mb_xs_sp { margin-bottom: 3% !important; }
#LP.PGpointup .mb_sm_sp { margin-bottom: 5% !important; }
#LP.PGpointup .mb_md_sp { margin-bottom: 8% !important; }
#LP.PGpointup .mb_lg_sp { margin-bottom: 10% !important; }

#LP.PGpointup .mt_xs_sp { margin-top: 3% !important; }
#LP.PGpointup .mt_sm_sp { margin-top: 5% !important; }
#LP.PGpointup .mt_md_sp { margin-top: 8% !important; }
#LP.PGpointup .mt_lg_sp { margin-top: 10% !important; }
}

/* -------------
キービジュアル
------------- */

#LP.PGpointup .kvArea {
	margin: 0 auto;
	width: 100%;
}

#LP.PGpointup .kvArea__top {
	width: 100%;
}

#LP.PGpointup .kvArea__bottom {
	background-image: url(../images/sp/wh_kv_main_bg.png);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	width: 100%;
}

#LP.PGpointup .kvArea__h1 {
	width: 100%;
}

/* -------------
メインコンテンツ
------------- */
#LP.PGpointup .mainArea__wrapper {
	padding: 5% 0 8%;
}

#LP.PGpointup .mainArea__inner {
	position: relative;
	margin: 0 auto;
	width: 92%;
}

#LP.PGpointup .mainArea__headerGroup-h2 {
	text-align: center;
	margin-bottom: 8%;
	letter-spacing: .01em;
	font-size: 5.8vw;
	font-weight: 900;
	color: var(--lp-color_white);
}

#LP.PGpointup .mainArea__headerGroup-h2 span {
	font-size: 4vw;
}

#LP.PGpointup .mainArea__headerGroup-h2 .header_notes {
	margin-top: 3%;
	font-size: 2.8vw;
	font-weight: 500;
	color: var(--lp-color_white);
}

#LP.PGpointup span.marker_yellow {
	background: linear-gradient(transparent 75%, var(--lp-color_yellow) 75%);
	padding-left: 1%;
	padding-right: 0.5%;
	font-weight: 900;
	letter-spacing: .05em;
}

#LP.PGpointup .mainArea__headerGroup-h3 {
	margin-bottom: 6%;
	text-align: center;
    font-size: 5.5vw;
    font-weight: 900;
	letter-spacing: .01em;
}
#LP.PGpointup .mainArea__headerGroup-h3 span {
    font-size: 65%;
}

#LP.PGpointup .mainArea__headerGroup-h4 {
	margin-bottom: 4%;
	text-align: center;
	line-height: 1.6;
    font-size: 4.3vw;
    font-weight: 900;
	letter-spacing: .01em;
	color: var(--lp-color_navy);
}
#LP.PGpointup .mainArea__headerGroup-h4 span {
	display: block;
    margin-top: 3%;
    font-size: 2.8vw;
    font-weight: 500;
	color: var(--lp-color_black);
}

#LP.PGpointup .mainArea__headerGroup-h5 {
	margin-bottom: 5%;
	text-align: center;
	line-height: 1.8;
    font-size: 3.5vw;
    font-weight: 900;
	letter-spacing: .01em;
	color: var(--lp-color_white);
}


/* 左右スラッシュ付きヘッダー */
#LP.PGpointup .headerText_wrap {
	text-align: center;
}

#LP.PGpointup .headerText_white {
	text-align: center;
	font-weight: 900;
	color: var(--lp-color_white);
}
#LP.PGpointup .headerText_white.-fs_sm {
	line-height: 1.4;
	font-size: 2.4vw;
}
#LP.PGpointup .headerText_white.-fs_md {
	font-size: 2.7vw;
}
#LP.PGpointup .headerText_white.-fs_lg {
	line-height: 1;
    letter-spacing: .05em;
	font-size: 6.5vw;
}

#LP.PGpointup .slash_txtWrap {
	position: relative;
	display: inline-block;
	line-height: 1.6;
	vertical-align: middle;
}

#LP.PGpointup .slash_txtWrap::before,
#LP.PGpointup .slash_txtWrap::after {
	content: "";
	position: absolute;
	top: -5%;
	bottom: -5%;
	background-repeat: no-repeat;
	background-size: contain;
}

#LP.PGpointup .slash_txtWrap.-slash_sm {
	padding: 0 5.5vw;
}
#LP.PGpointup .slash_txtWrap.-slash_sm::before,
#LP.PGpointup .slash_txtWrap.-slash_sm::after {
	width: 5.2vw;
}

#LP.PGpointup .slash_txtWrap.-slash_md {
	padding: 0 4vw;
}
#LP.PGpointup .slash_txtWrap.-slash_md::before,
#LP.PGpointup .slash_txtWrap.-slash_md::after {
	width: 3vw;
}

#LP.PGpointup .slash_txtWrap.-slash_lg {
	padding: 0 6vw;
}
#LP.PGpointup .slash_txtWrap.-slash_lg::before,
#LP.PGpointup .slash_txtWrap.-slash_lg::after {
	width: 5vw;
}

/* 左側の画像 */
#LP.PGpointup .slash_txtWrap::before {
  left: 0;
  background-image: url('../images/common/wh_main_slash_left.png');
  background-position: center left;
}

/* 右側の画像 */
#LP.PGpointup .slash_txtWrap::after {
  right: 0;
  background-image: url('../images/common/wh_main_slash_right.png');
  background-position: center right;
}

/* キャンペーン概要 */
#LP.PGpointup .section__reward {
	margin: 0 auto 8%;
	background-image: linear-gradient(
    to right,
    #F9F6ED 0%,
	#EAD8AC 25%,
    #F9F6ED 50%,
	#EAD8AC 75%,
    #F9F6ED 100%
  );
}

#LP.PGpointup .section__reward_inner {
	width: 94%;
    margin: 0 auto;
    padding: 3% 0;
}

#LP.PGpointup .icn_downArroww {
	margin: 0 auto;
	line-height: 1;
    width: 12%;
}

#LP.PGpointup .eligible_cards {
	position: relative;
}
#LP.PGpointup .eligible_cards .anchorText {
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2.7vw;
	color: var(--lp-color_link-blue);
}
#LP.PGpointup .eligible_cards .anchorText span {
	border-bottom: 1px solid var(--lp-color_link-blue);
}


/* 対象カード */
#LP.PGpointup .cardList__wrapper {
	padding: 4% 3%;
	background-color: var(--lp-color_white);
}

#LP.PGpointup .cardList__header {
	margin-bottom: 8%;
	text-align: center;
	font-size: 5vw;
	font-weight: 900;
	letter-spacing: .05em;
	color: var(--lp-color_navy);
}

#LP.PGpointup .cardList__header span {
	padding: 0 1%;
	background: linear-gradient(transparent 75%, var(--lp-color_yellow) 75%);
	font-weight: 900;
}

#LP.PGpointup .cardList__container {
	display: block;
	text-align: center;
}

#LP.PGpointup .cardList__container .cardList {
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
}

#LP.PGpointup .cardList__container .cardList li {
	flex-basis: 45%;
	margin-bottom: 6%;
}

#LP.PGpointup .cardList__container .cardList li p {
	font-size: 2.3vw;
}

#LP.PGpointup .cardList__container .cardList li:last-child {
	flex-basis: 55%;
	margin-bottom: 0;
}

#LP.PGpointup .cardList__container .cardList li img {
	width: 28vw;
	margin: 0 auto 4%;
}


/* バナーリンク */
#LP.PGpointup .section__bnrLink {
	margin: 0 auto 8%;
}

#LP.PGpointup .section__bnrLink .header_txt {
	text-align: center;
}

#LP.PGpointup .section__bnrLink .header_txt.moreInfo {
	width: 30vw;
	margin: 0 auto 3%;
}


/* おすすめショップ・アイテム */
#LP.PGpointup .section__recommend {
	width: 94%;
	margin: 0 auto;
}

#LP.PGpointup .section__recommend_inner {
	padding: 6% 4%;
	border-radius: 5px;
	background-color: var(--lp-color_white);
	box-shadow: 0 0 16px #03285A8a;
}

#LP.PGpointup .section__recommend .recommend_header {
	margin-bottom: 5%;
    text-align: center;
    font-size: 4.8vw;
    font-weight: 900;
    letter-spacing: .05em;
	color: var(--lp-color_navy);
}

#LP.PGpointup .mainArea__headerRibbon {
	position: relative;
	text-align: center;
	margin: 0 auto 7%;
}

#LP.PGpointup .mainArea__headerRibbon_txt {
	text-align: center;
	margin-bottom: 2%;
    font-size: 3.4vw;
	font-weight: 900;
}

#LP.PGpointup .mainArea__headerRibbon p {
	position: absolute;
	text-align: center;
    width: 100%;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 5vw;
    font-weight: 900;
	color: var(--lp-color_white);
}
#LP.PGpointup .mainArea__headerRibbon p.headerMALL {
    transform: translate(-50%, -75%);
	font-size: 5.5vw;
}
#LP.PGpointup .mainArea__headerRibbon p.headerMOP {
    transform: translate(-50%, -80%);
	font-size: 4vw;
}

#LP.PGpointup .mainArea__headerRibbon p.fs_sm {
	font-size: 3.2vw;
    line-height: 1.3;
}


#LP.PGpointup .mainArea__frame-inner {
	position: relative;
	padding: 6% 10%;
	background-color: var(--lp-color_white);
	border-radius: 8px 8px 0 0;;
}

#LP.PGpointup .mainArea__frame-image {
	margin: 0 auto 8%;
}


/* ショップロゴ スライダー */
#LP.PGpointup .swiper-slide img {
	width: 100%;
	height: auto;
	object-fit: contain;
	vertical-align: bottom;
}

#LP.PGpointup .logo-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#LP.PGpointup .swiper {
  width: 100%;
  z-index: 1;
}

#LP.PGpointup .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#LP.PGpointup .logo-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

/* APIスライダー もっと見るボタン */
#LP.PGpointup .sliderWrapper {
	margin: 0 auto 8%;
	border-radius: 5px;
	background-color: var(--lp-color_white);
}

#LP.PGpointup .mainArea__sliderheader {
	padding-bottom: 5%;
}

#LP.PGpointup .sliderDynamic .btn_andmore {
	display: none;
    position: absolute;
    right: 2vw;
    bottom: 0;
    align-items: center;
    gap: 0.4em;
    text-decoration: none;
    font-size: 4vw;
    font-weight: 700;
    color: #252525;
    border-bottom: 2px solid #8f8f8f;
    line-height: 1;
	padding-bottom: 0.2em;
}

#LP.PGpointup .sliderDynamic .btn_andmore:hover {
	 filter: opacity(.7) 
}

#LP.PGpointup .sliderWrapper:has(.is_show) .btn_andmore {
    display: inline-flex;
}

#LP.PGpointup .sliderDynamic .btn_andmore.arrow_right {
	padding-right: 0.1em;
}

#LP.PGpointup .sliderDynamic .btn_andmore.arrow_right::after {
	content: '';
    width: 0.5em;
    height: 0.5em;
    border-top: solid 2px #252525;
    border-right: solid 2px #252525;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
    margin-top: 0.1em;
}


/* ボタン各種 */
#LP.PGpointup .mainArea__btnLink a {
	position: relative;
	display: block;
	width: 70vw;
	min-height: 3.3rem;
	margin: 0 auto;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	border-radius: 100px;
	transition: .4s;
	user-select: none;
	padding: 5% 0;
    font-size: 4vw;
	font-weight: 700;
	color: var(--lp-color_white);
}

#LP.PGpointup .mainArea__btnLink a::after {
	content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    width: 11px;
    height: 11px;
	border-top: solid 2px var(--lp-color_white);
    border-right: solid 2px var(--lp-color_white);
}

#LP.PGpointup .mainArea__btnLink a.txt_twoLine {
    padding: 2.5% 0;
    line-height: 1.4;
	font-size: 3.2vw;
}

#LP.PGpointup .mainArea__btnLink .btn_txt {
	width: 48vw;
	margin: 0 auto;
}

#LP.PGpointup .mainArea__btnLink.btn_lineID a {
	width: 100%;
	background-color: var(--lp-color_green);
	border-bottom: solid 3px #FCE633;
	border-right: solid 3px #FCE633;
}

/* 黒帯アンカーリンク */
#LP.PGpointup .anchorLink.wideBtn {
	position: relative;
	width: 100%;
	min-height: 3.3rem;
	margin: 0 auto;
	padding: 4% 0;
	display: block;
	text-align: center;
	font-size: 4vw;
	font-weight: 900;
	letter-spacing: 0.05em;
	color: var(--lp-color_white);
	background-color: var(--lp-color_dark-gray);
	transition: .3s;
}
#LP.PGpointup .anchorLink.wideBtn.txtAdjust {
	padding: 4% 0 4% 6%;
	text-align: left;
	font-size: 3.8vw;
}

#LP.PGpointup .anchorLink.wideBtn::after {
	content: "";
	display: block;
	position: absolute;
	right: 4%;
	top: 33%;
	transition: all 0.2s ease-in-out;
	transform: rotate(135deg);
	width: 12px;
	height: 12px;
	border-top: solid 2px var(--lp-color_white);
	border-right: solid 2px var(--lp-color_white);
}

#LP.PGpointup .anchorLink.round {
	position: absolute;
	left: 31%;
	bottom: 5%;
	width: 36vw;
	margin: 0 auto;
	padding: 1%;
	display: block;
	text-align: center;
	font-size: 3.3vw;
	font-weight: bold;
	letter-spacing: 0.05em;
	background-color: var(--lp-color_dark-gray);
	color: var(--lp-color_white);
	border-radius: 50px;
	transition: .3s;
}

#LP.PGpointup .anchorLink.round::after {
	content: "";
	display: block;
	position: absolute;
	right: 7%;
	top: 26%;
	transition: all 0.2s ease-in-out;
	transform: rotate(135deg);
	width: 8px;
	height: 8px;
	border-top: solid 1px var(--lp-color_white);
	border-right: solid 1px var(--lp-color_white);
}

/* 新規会員登録 */
#LP.PGpointup .section__members {
	text-align: center;
}

#LP.PGpointup .headerText_members {
	position: relative;
	display: inline-block;
	margin: 0 auto 2%;
	padding-left: 1.2em;
	text-align: center;
	font-size: 3.3vw;
	font-weight: 900;
	letter-spacing: .01em;
	color: var(--lp-color_white);
}

#LP.PGpointup .headerText_members::before {
	content: "";
	position: absolute;
	left: -0.5em;
	top: 50%;
	width: 1px;
	height: 1.4em;
	background-color: var(--lp-color_white);
	transform: translateY(-50%) rotate(-25deg);
}
#LP.PGpointup .headerText_members::after {
	content: "";
	position: absolute;
	right: -0.5em;
	top: 50%;
	width: 1px;
	height: 1.4em;
	background-color: var(--lp-color_white);
	transform: translateY(-50%) rotate(25deg);
}

#LP.PGpointup .headerText_members.icn_msp span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.1em;
	height: 1.1em;
	background: url('../images/common/wh_main_icn_msp.png') no-repeat center / contain;
}

#LP.PGpointup .mainArea__bnrLink {
	margin: 0 auto;
}

#LP.PGpointup .mainArea__bnrLink .header_txt {
	width: 100%;
	margin: 0 auto 2%;
}

#LP.PGpointup .mainArea__bnrLink .regist_bnr {
	position: relative;
}

#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist {
	position: absolute;
	top: 61%;
}

#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist a {
	position: relative;
	display: block;
	width: 40vw;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	border-radius: 100px;
	transition: .4s;
	user-select: none;
	padding: 1.2rem 0;
	font-size: 3vw;
	font-weight: 700;
	color: var(--lp-color_white);
	background-color: var(--lp-color_navy);
}

#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist a::after {
	content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 6%;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    width: 7px;
    height: 7px;
	border-top: solid 1px var(--lp-color_white);
    border-right: solid 1px var(--lp-color_white);
}


/* 各種キャンペーン概要 */
#LP.PGpointup .mainArea__section_campaign .header_yokoku {
	width: 50%;
	margin: 0 auto 4%;
}

#LP.PGpointup .mainArea__section_campaign .txt_cp_promotion {
	margin-bottom: 5%;
	line-height: 1.8;
	text-align: center;
	font-size: 4.3vw;
	font-weight: 700;
}

#LP.PGpointup .mainArea__section_campaign .txt_cp_promotion span {
	font-size: 120%;
	font-weight: 900;
	border-bottom: 1px solid;
}

#LP.PGpointup .mainArea__section_lineID {
	margin-bottom: 8%;
	padding: 6% 4%;
	background-color: var(--lp-color_pale-green);
}

#LP.PGpointup .mainArea__section_lineID .txt_ribbonTop {
	margin-bottom: 2%;
	text-align: center;
	font-size: 3.5vw;
	font-weight: 900;
	letter-spacing: .05em;
	color: var(--lp-color_green);
}

#LP.PGpointup .mainArea__section_lineID .line_box > .howTo_ttl{
	position: relative;
	width: 100%;
	margin-left: 7%;
	margin-bottom: 3%;
	font-size: 3.75vw;
	line-height: 1.6;
	font-weight: bold;
}

#LP.PGpointup .mainArea__section_lineID .line_box > .howTo_ttl.position_adust {
	margin-left: 20%;
}

#LP.PGpointup .mainArea__section_lineID .line_box .screenShot {
	width: 90%;
	margin: 0 auto;
}

#LP.PGpointup .mainArea__section_lineID .line_box .howTo_ttl .num_icn{
	position: absolute;
	width: 1.2rem;
    left: -1.4rem;
    top: -2px;
}

#LP.PGpointup .mainArea__section_lineID .line_flex_container {
	margin-bottom: 8%;
}

#LP.PGpointup .line_flex_container .line_arrow {
	width: 20%;
    margin: 0 auto;
    padding: 6% 0;
}

#LP.PGpointup .mainArea__section_app {
	margin-bottom: 10%;
	padding: 6% 4%;
	background-color: var(--lp-color_pale-orange);
}

#LP.PGpointup .mainArea__section_app .txt_ribbonTop {
	margin-bottom: 2%;
	text-align: center;
	font-size: 3.2vw;
	font-weight: 900;
	letter-spacing: .05em;
	background-image: url(../images/sp/wh_main_header_slash_app.png);
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: bottom;
	background-size: 85%;
}

#LP.PGpointup .mainArea__section_app .app_content_box {
	position: relative;
	padding: 10% 4% 4%;
	background-color: var(--lp-color_white);
}

#LP.PGpointup .mainArea__section_app .app_content_box .howTo_txt {
	margin-bottom: 8%;
	text-align: center;
    font-size: 4.3vw;
    font-weight: 700;
    line-height: 1.7;
}

#LP.PGpointup .mainArea__section_app .app_content_box .screenShot {
	width: 90%;
	margin: 0 auto;
}

#LP.PGpointup .mainArea__section_app .app_content_box .num_icn {
	position: absolute;
    width: 2.7rem;
    left: 50%;
    transform: translateX(-50%);
    top: -1.3rem;
}

#LP.PGpointup .mainArea__section_app .app_flex_container .line_arrow {
	width: 20%;
    margin: 0 auto;
    padding: 6% 0;
}

#LP.PGpointup .mainArea__section_app .icn_app_container {
	position: relative;
	padding: 4%;
	background-color: var(--lp-color_light-gray);
}

#LP.PGpointup .mainArea__section_app .icn_app_container p {
	position: absolute;
	top: 1.2rem;
	font-size: 3.8vw;
    font-weight: 700;
}

#LP.PGpointup .mainArea__section_app .icn_app_flexBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.icn_appstore {
	width: 23vw;
}

#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.icn_googleplay {
	width: 29vw;
}

#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.img_qr {
	width: 19vw;
}


/* クーポンの注意事項 */
#LP.PGpointup .mainArea__frame-inner.notes {
	background-color: var(--lp-color_white);
	border-radius: 5px;
	position: relative;
	padding: 5% 4%;
}

#LP.PGpointup .mainArea__notes-h3,
#LP.PGpointup .mainArea__notes-list > li {
	letter-spacing: 0.01em;
	line-height: 1.5;
}

#LP.PGpointup .mainArea__notes-h3 {
	margin-bottom: 3%;
	text-align: center;
	font-size: 4vw;
	font-weight: 900;
}

#LP.PGpointup .mainArea__notes-list > li {
	color: var(--lp-color_black);
	font-size: 2.9vw;
	font-weight: 500;
	text-align: left;
	padding-left: 1.1em;
}
#LP.PGpointup .mainArea__frame-inner .mainArea__notes-list > li { color: var(--lp-color_black); }

#LP.PGpointup .mainArea__notes-list > li::before {
	content: '※';
	display: inline-block;
	margin-left: -1em;
	width: 1.1em;
}
#LP.PGpointup .mainArea__notes-list > li:not(:last-of-type) { margin-bottom: 1%; }

#LP.PGpointup .fontMarker { background: linear-gradient(transparent 70%, var(--lp-color_yellow) 70%); font-weight: 500;}

#LP.PGpointup .textLink {
	color: var(--lp-color_link-blue);
	border-bottom: 1px solid var(--lp-color_link-blue);
	font-weight: 500;
}

#LP.PGpointup .textLink_block {
	text-align: right;
}
#LP.PGpointup .textLink_block a {
	display: inline-block;
	font-size: 3vw;
}


/* ローディング画面 */
#LP .loader {
    background: var(--lp-color_white);
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 20;
    width: 100vw;
    height: 100vh;
}
#LP .loader.fade-out {
    opacity: 0;
    transition: opacity .4s ease;
}

#LP .loading__wrapper {
    text-align: center;
    width: 50%;
}

#LP .loading__text {
    color: var(--lp-color_black);
    font-size: 1.5em;
    margin-bottom: 1em;
}

#LP .loading__progress {
    background-color: var(--lp-color_gray);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: 6px;
}

#LP .loading__progress__bar {
    background: linear-gradient(90deg, #004199, #18A1DD);
    transition: width .4s ease;
    width: 0%;
    max-width: 300px;
    height: 100%;
}


/* 期間終了後表示 */
#LP.PGpointup .mainArea__campaignEnd {
	display: none;
	width: 92%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 6%;
	padding: 3% 0;
	font-size: 4.3vw;
	font-weight: bold;
	line-height: 1.5;
	color: var(--lp-color_black);
	background-color: var(--lp-color_white);
	border: 2px solid #cba657;
	border-radius: 5px;
}
#LP.PGpointup .mainArea__campaignEnd span { font-size: 70%; font-weight: 500;}

/*************************
main
PC_layout（980px以上）
*************************/

@media screen and (min-width: 980px) {
	/* -------------
	LP共通
	------------- */

	#LP.PGpointup {
		margin: 0 auto;
		min-width: 1000px;
	}

	#LP.PGpointup img { width: fit-content; }

	#LP.PGpointup .device_sp { display: none; }
	#LP.PGpointup .device_pc { display: block; }

	/* -------------
	スペーサー
	------------- */
	#LP.PGpointup .mb_xs { margin-bottom: 16px !important; }
	#LP.PGpointup .mb_sm { margin-bottom: 32px !important; }
	#LP.PGpointup .mb_md { margin-bottom: 48px !important; }
	#LP.PGpointup .mb_lg { margin-bottom: 60px !important; }

	#LP.PGpointup .mt_xs { margin-top: 16px !important; }
	#LP.PGpointup .mt_sm { margin-top: 24px !important; }
	#LP.PGpointup .mt_md { margin-top: 48px !important; }
	#LP.PGpointup .mt_lg { margin-top: 60px !important; }

	/* -------------
	キービジュアル
	------------- */
	#LP.PGpointup .kvArea {
		position: relative;
		min-width: 1240px;
		min-height: 380px;
	}

	#LP.PGpointup .kvArea__top {
		position: relative;
		background-image: url(../images/pc/wh_kv_top_bg.jpg);
		background-size: auto;
		background-position: center top;
		background-repeat: repeat;
		height: 100px;
	}

	#LP.PGpointup .kvArea__top_text {
		position: absolute;
		left: 50%;
        top: 10px;
        transform: translateX(-50%);
	}

	#LP.PGpointup .kvArea__bottom {
		background-image: url(../images/pc/wh_kv_main_bg.png);
		background-size: auto;
		background-position: center top;
		background-repeat: repeat-x;
		height: 280px;
        width: 100%;
	}

	#LP.PGpointup .kvArea__h1 {
		background-image: none;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -90px);
		width: fit-content;
	}

	/* -------------
	メインコンテンツ
	------------- */

	#LP.PGpointup .mainArea__wrapper {
		width: 1240px;
		margin: 0 auto;
		padding: 50px 0 60px;
	}

	#LP.PGpointup .mainArea__inner {
		padding: 0;
		width: 980px;
	}

	#LP.PGpointup .mainArea__frame-inner {
		width: 840px;
		border-radius: 15px 15px 0 0;
		padding: 36px;
	}

	#LP.PGpointup .mainArea__frame .box_yellow {
		width: 800px;
		padding: 20px;
		border-radius: 0 0 15px 15px;
	}

	#LP.PGpointup .mainArea__frame-image {
		width: 534px;
		margin: 0 auto 40px;
	}

	#LP.PGpointup .mainArea__headerGroup-h2 {
		margin-bottom: 40px;
		font-size: 40px;
	}
	#LP.PGpointup .mainArea__headerGroup-h2 span {
		font-size: 32px;
	}
	#LP.PGpointup .mainArea__headerGroup-h2 .header_notes {
		margin-top: 20px;
		font-size: 14px;
	}

	#LP.PGpointup span.marker_yellow {
		padding-right: 0.2%;
	}

	#LP.PGpointup .mainArea__headerGroup-h3 {
		margin-bottom: 24px;
		font-size: 32px;
		letter-spacing: .02em;
	}

	#LP.PGpointup .mainArea__headerGroup-h4 {
		margin-bottom: 20px;
		font-size: 24px;
		letter-spacing: .05em;
	}
	#LP.PGpointup .mainArea__headerGroup-h4 span{
		margin-top: 10px;
		font-size: 18px;
		letter-spacing: .01em;
	}

	#LP.PGpointup .mainArea__headerGroup-h5 {
		margin-bottom: 20px;
        font-size: 26px;
	}


	/* 左右スラッシュ付きヘッダー */
	#LP.PGpointup .headerText_white.-fs_sm,
	#LP.PGpointup .headerText_white.-fs_md {
		letter-spacing: .05em;
		font-size: 24px;
	}

	#LP.PGpointup .slash_txtWrap {
		padding: 0 60px;
		line-height: 1.5;
	}

	#LP.PGpointup .slash_txtWrap.-slash_sm {
		padding: 0 60px 4px;
	}
	#LP.PGpointup .slash_txtWrap.-slash_md {
		padding: 0 42px 4px;
	}
	#LP.PGpointup .slash_txtWrap.-slash_sm::before,
	#LP.PGpointup .slash_txtWrap.-slash_sm::after {
		width: 53px;
	}
	#LP.PGpointup .slash_txtWrap.-slash_md::before,
	#LP.PGpointup .slash_txtWrap.-slash_md::after {
		width: 53px;
	}

	#LP.PGpointup .headerText_white.-fs_lg {
		letter-spacing: .1em;
		font-size: 60px;
	}
	#LP.PGpointup .slash_txtWrap.-slash_lg {
		padding: 0 60px 12px;
	}
	#LP.PGpointup .slash_txtWrap.-slash_lg::before,
	#LP.PGpointup .slash_txtWrap.-slash_lg::after {
		width: 50px;
	}

	
	/* キャンペーン概要 */
	#LP.PGpointup .section__reward {
		margin: 0 auto 60px;
	}

	#LP.PGpointup .section__reward_inner {
		width: 100%;
		padding: 30px 0;
	}

	#LP.PGpointup .icn_downArroww {
		width: fit-content;
	}

	#LP.PGpointup .textLink_block {
		margin-top: 5px;
		margin-right: 40px;
	}

	#LP.PGpointup .textLink_block a {
		font-size: 14px;
	}

	#LP.PGpointup .eligible_cards .anchorText {
		bottom: 20px;
		font-size: 14px;
	}


	/* 対象カード */
	#LP.PGpointup .cardList__wrapper {
		width: 900px;
		margin: 0 auto;
		padding: 30px 20px;
	}

	#LP.PGpointup .cardList__header {
		margin-bottom: 40px;
		font-size: 40px;
		letter-spacing: .01em;
	}

	#LP.PGpointup .cardList__header-line {
		font-size: 24px;
		margin-bottom: 16px;
	}

	#LP.PGpointup .cardList__container .cardList {
		justify-content: center;
		padding-bottom: 0;
	}

	#LP.PGpointup .cardList__container .cardList li {
		flex-basis: 230px;
		margin-bottom: 20px;
		margin-right: 40px;
	}

	#LP.PGpointup .cardList__container .cardList li p {
		font-size: 12px;
	}

	#LP.PGpointup .cardList__container .cardList li:nth-child(3) {
		margin-right: 0;
	}

	#LP.PGpointup .cardList__container .cardList li:last-child {
		flex-basis: 230px;
		margin-right: 0;
	}

	#LP.PGpointup .cardList__container .cardList li img {
		width: fit-content;
		margin: 0 auto 12px;
	}


	/* バナーリンク */
	#LP.PGpointup .section__bnrLink {
		margin: 0 auto 60px;
	}

	#LP.PGpointup .section__bnrLink .header_txt.moreInfo {
		width: fit-content;
		margin: 0 auto 20px;
	}


	/* おすすめショップ・アイテム */
	#LP.PGpointup .section__recommend {
		width: 1240px;
	}

	#LP.PGpointup .section__recommend_inner {
		margin: 0 auto;
        padding: 40px 130px;
		border-radius: 7px;
	}

	#LP.PGpointup .section__recommend .recommend_header {
		margin-bottom: 28px;
		font-size: 32px;
	}

	#LP.PGpointup .mainArea__headerRibbon {
		margin: 0 auto 40px;
	}

	#LP.PGpointup .mainArea__headerRibbon_txt {
		margin-bottom: 16px;
		font-size: 25px;
		letter-spacing: .05em;
	}

	#LP.PGpointup .mainArea__headerRibbon p {
		font-size: 34px;
	}
	#LP.PGpointup .mainArea__headerRibbon p.fs_sm {
		font-size: 26px;
	}

	#LP.PGpointup .mainArea__headerRibbon p.headerMALL {
		transform: translate(-50%, -80%);
		font-size: 32px;
	}
	#LP.PGpointup .mainArea__headerRibbon p.headerMOP {
		transform: translate(-50%, -80%);
		font-size: 32px;
	}

	/* ショップロゴ スライダー */
	#LP.PGpointup .swiper-slide img {
		width: 180px;
	}

	/* APIスライダー もっと見るボタン */
	#LP.PGpointup .mainArea__sliderheader {
		padding-bottom: 40px;
	}

	#LP.PGpointup .sliderWrapper {
		width: 980px;
		margin: 0 auto 40px;
		border-radius: 7px;
	}

	#LP.PGpointup .sliderDynamic .btn_andmore {
		font-size: 20px;
		right: 10px;
	}

	#LP.PGpointup .sliderDynamic .btn_andmore.arrow_right::after {
		width: 11px;
        height: 11px;
        bottom: 9px;
	}



	/* ボタン各種 */
	#LP.PGpointup .mainArea__btnLink a {
		width: 450px;
        height: 82px;
        padding: 27px 0;
        font-size: 25px;
	}
	
	#LP.PGpointup .mainArea__btnLink a::after {
		top: 33px;
        right: 20px;
        width: 16px;
        height: 16px;
		border-top: solid 3px var(--lp-color_white);
		border-right: solid 3px var(--lp-color_white);
	}

	#LP.PGpointup .mainArea__btnLink a.txt_twoLine {
		padding: 13px 0;
		font-size: 20px;
	}

	#LP.PGpointup .mainArea__btnLink a.searchItems {
		width: 580px;
	}
	
	#LP.PGpointup .mainArea__btnLink a.btn_short {
		width: 400px;
	}

	#LP.PGpointup .mainArea__btnLink.btn_lineID a {
		width: 450px;
	}

	#LP.PGpointup .mainArea__btnLink .btn_txt {
		width: auto;
	}

	#LP.PGpointup .mainArea__btnLink.btn_square a {
		width: 650px;
		height: 82px;
		padding: 27px 0;
		font-size: 26px;
	}

	#LP.PGpointup .mainArea__btnLink.btn_square a::after {
		top: 32px;
		right: 25px;
		width: 18px;
		height: 18px;
		border-top: solid 3px var(--lp-color_white);
		border-right: solid 3px var(--lp-color_white);
	}

	#LP.PGpointup .mainArea__btnLink.btn_square a.fs_sm {
		padding: 8px 0;
		font-size: 26px;
	}

	/* 黒帯アンカーリンク */
	#LP.PGpointup .anchorLink.wideBtn {
		width: 650px;
        height: 80px;
        margin-bottom: 0;
        font-size: 24px;
        padding: 21px 0;
        letter-spacing: 0.05em;
	}
	#LP.PGpointup .anchorLink.wideBtn.txtAdjust {
		text-align: center;
		font-size: 24px;
		padding: 21px 0;
	}

	#LP.PGpointup .anchorLink.wideBtn::after {
		top: 26px;
        width: 18px;
        height: 18px;
        border-top: solid 2px var(--lp-color_white);
        border-right: solid 2px var(--lp-color_white);
	}

	/* 新規会員登録 */
	#LP.PGpointup .headerText_members {
		margin: 0 auto 16px;
		padding-left: 34px;
		font-size: 24px;
		letter-spacing: .05em;
	}

	#LP.PGpointup .headerText_members::before {
		left: -15px;
		width: 2px;
		height: 32px;
	}
	#LP.PGpointup .headerText_members::after {
		right: -15px;
		width: 2px;
		height: 32px;
	}

	#LP.PGpointup .headerText_members.icn_msp span::before {
		width: 30px;
		height: 30px;
	}

	#LP.PGpointup .mainArea__bnrLink {
		margin: 0 auto 32px;
	}

	#LP.PGpointup .mainArea__bnrLink .header_txt {
		margin: 0 auto 16px;
	}

	#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist {
		top: 265px;
	}

	#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist a {
		width: 300px;
		height: 60px;
		padding: 20px;
		font-size: 18px;
	}

	#LP.PGpointup .mainArea__bnrLink .regist_bnr .mainArea__btnLink.regist a::after {
		top: 25px;
		right: 20px;
		width: 10px;
		height: 10px;
		border-top: solid 2px var(--lp-color_white);
		border-right: solid 2px var(--lp-color_white);
	}

	#LP.PGpointup .mainArea__bnrLink .headerText_members {
		font-size: 24px;
	}


	/* 各種キャンペーン概要 */
	#LP.PGpointup .mainArea__section_campaign .txt_cp_promotion {
		margin-bottom: 40px;
		font-size: 25px;
		letter-spacing: .05em;
	}

	#LP.PGpointup .mainArea__section_lineID .txt_ribbonTop {
		margin-bottom: 12px;
		font-size: 25px;
	}

	#LP.PGpointup .mainArea__section_lineID {
		margin-bottom: 60px;
		padding: 40px;
	}

	#LP.PGpointup .mainArea__section_lineID .line_flex_container {
		display: flex;
		justify-content: space-between;
		width: 850px;
		margin: 0 auto 40px;
	}

	#LP.PGpointup .mainArea__section_lineID .line_flex_container .line_box {
		width: 240px;
		padding: 30px 0 20px;
		height: fit-content;
		background-color: var(--lp-color_white);
	}

	#LP.PGpointup .mainArea__section_lineID .line_box > .howTo_ttl {
		text-align: center;
		width: 100%;
        height: 120px;
        margin: 0 auto;
        font-size: 17px;
	}

	#LP.PGpointup .mainArea__section_lineID .line_box > .howTo_ttl.position_adust {
        margin-left: 0;
	}

	#LP.PGpointup .mainArea__section_lineID .line_box .howTo_ttl .num_icn {
        position: absolute;
        top: -45px;
        left: 105px;
    }

	#LP.PGpointup .mainArea__section_lineID .line_box .howTo_ttl .num_icn img {
        width: 30px;
    }

	#LP.PGpointup .mainArea__section_lineID .line_flex_container .line_arrow {
        width: 17px;
        padding-top: 200px;
    }

	#LP.PGpointup .mainArea__section_lineID .line_flex_container .line_box figure {
        width: fit-content;
		margin: 0 auto;
    }

	#LP.PGpointup .mainArea__section_lineID .line_flex_container .line_box .screenShot img {
        width: 210px;
    }

	#LP.PGpointup .mainArea__section_app .txt_ribbonTop {
		margin-bottom: 12px;
		font-size: 24px;
		background-image: none;
	}
	#LP.PGpointup .mainArea__section_app .txt_ribbonTop::before {
		content: '\FF3C';
	}
	#LP.PGpointup .mainArea__section_app .txt_ribbonTop::after {
		content: '\FF0F';
	}

	#LP.PGpointup .mainArea__section_app {
		margin-bottom: 60px;
		padding: 40px;
	}

	#LP.PGpointup .mainArea__section_app .app_flex_container {
		display: flex;
		justify-content: space-between;
		width: 550px;
		margin: 0 auto 40px;
	}

	#LP.PGpointup .mainArea__section_app .app_flex_container .app_content_box {
		width: 240px;
		height: 512px;
		padding: 30px 0 20px;
		background-color: var(--lp-color_white);
	}

	#LP.PGpointup .mainArea__section_app .app_content_box > .howTo_txt {
		text-align: center;
		width: 100%;
        height: 130px;
        margin: 0 auto;
        font-size: 17px;
	}

	#LP.PGpointup .mainArea__section_app .app_content_box .howTo_txt .num_icn {
        position: absolute;
        top: -15px;
        left: 120px;
    }

	#LP.PGpointup .mainArea__section_app .app_content_box .howTo_txt .num_icn img {
        width: 30px;
    }

	#LP.PGpointup .mainArea__section_app .app_flex_container .line_arrow {
        width: 17px;
        padding-top: 200px;
    }

	#LP.PGpointup .mainArea__section_app .app_flex_container .app_content_box figure {
        width: fit-content;
		margin: 0 auto;
    }

	#LP.PGpointup .mainArea__section_app .app_flex_container .app_content_box .screenShot img {
        width: 210px;
    }

	#LP.PGpointup .mainArea__section_app .icn_app_container {
		width: 700px;
		margin: 0 auto;
		padding: 20px 45px;
	}

	#LP.PGpointup .mainArea__section_app .icn_app_container p {
		top: 35px;
		font-size: 30px;
	}

	#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.icn_appstore,
	#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.icn_googleplay,
	#LP.PGpointup .mainArea__section_app .icn_app_flexBox li.img_qr {
		width: fit-content;
	}
	

	/* クーポンの注意事項 */
	#LP.PGpointup .mainArea__frame-inner.notes {
		margin: 0 auto;
		padding: 32px 20px;
	}

	#LP.PGpointup .mainArea__notes-h3 {
		font-size: 28px;
		margin-bottom: 20px;
		letter-spacing: .01em;
	}

	#LP.PGpointup .mainArea__notes-list > li { font-size: 14px; }

	#LP.PGpointup .mainArea__notes-list > li:not(:last-of-type) {
		margin-bottom: 4px;
	}

	/* 期間終了後表示 */
	#LP.PGpointup .mainArea__campaignEnd {
		width: 980px;
		font-size: 32px;
		margin-bottom: 40px;
		padding: 24px 0;
	}
}