@charset "utf-8";
/* ============== 共通 =================== */
#contents {
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	background-color: #ffffff;
	padding: 0;
	overflow: hidden;
}
#footer {
	margin-top: 60px;
}
#contents * {
	box-sizing: border-box;
}
#contents a {
	color: #0099cc;
	text-decoration: underline;
}
#contents a:hover {
	opacity: 0.7;
}
figure {
	margin: 0;
}
.display_sp {
	display: none;
}
.end_txt {
	color: #f50028;
	background-color: #fff;
	font-size: 180%;
	font-weight: bold;
	text-align: center;
	padding: 20px 0;
	line-height: 1;
}
/*注釈テキスト*/
.note_txt {
	font-size: 12px;
	line-height: 1.6;
	font-weight: normal;
	color: #999;
	text-indent: -1em;
	padding-left: 1em;
}
/*角丸ブロック*/
.round_block {
	border-radius: 8px;
}
/*マーカー*/
.line_txt {
	display: inline;
	background: linear-gradient(transparent 70%, #fee661 0%);/* 任意 */
	padding: 0 5px;
}
/*強調カラーテキスト*/
.em_font {
	color: #ff9123;/* 任意 */
}
/*太字*/
.bold_font {
	font-weight: bold;
}
/*中黒リスト*/
.dot_list {
	text-indent: -1em;
	margin-top: 10px;
	padding-left: 1em;
}
/*(数字)リスト*/
.num_list {
	text-indent: -1.4em;
	padding-left: 1.5em;
	counter-reset: number 0;
}
.num_list > li::before {
	counter-increment: number 1;
	content: "(" counter(number) ")";
}
/*数字. リスト*/
.num_dot_list {
	text-indent: -1.4em;
	padding-left: 1.5em;
	counter-reset: number 0;
}
.num_dot_list > li::before {
	counter-increment: number 1;
	content: counter(number) ".";
}
/*吹き出しタイトル*/
.slash_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	gap: 16px;
}
.slash_ttl::before,
.slash_ttl::after {
	content:"";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex: 0 0 24px;
	height: 28px;
}
.slash_ttl::before {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/slash_left.png);
}
.slash_ttl::after {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/slash_right.png);
}
/* ============== btn =================== */
#contents .btn {
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
.btn_wrap {
	padding: 0 60px;
}
.btn {
	display: grid;
	place-items: center;
	background-color: #ff9123;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/btnarrow_right.png);
	background-size: 20px;
	background-position: center right 15px;
	background-repeat: no-repeat;
	border-radius: 5px;
	max-width:400px;
	height: 50px;
	margin: 0 auto;
	position: relative;
}
.btn_att {
	color: #999999;
	font-size: 12px;
	margin-top: 20px;
}
.btn_sns {
	filter: drop-shadow(4px 4px 0px #ccc);
	text-align: center;
	margin: 60px auto;
}
.btn_sns img {
	max-width: 400px;
}
/*終了対応*/
#contents .close_btn {
	position: relative;
	pointer-events: none;
}
#contents .close_btn::after {
	content:"※本キャンペーンは終了しました";
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
	background-color: rgba(0,0,0,0.7); /* 固定 */
	width: 104%;
	height: 120%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
/* ============== top =================== */
.top {
	background-color: #4da6ff;/* 任意 */	
	font-size: 0;
}
.top_date {
	display: grid;
	place-items: center;
	background-color: #3669B2;/* 任意 */
	height: 45px;
	padding: 0 28px;
}
.top_date img {
	width: auto;
	max-height: 23px;
}
.top + * {
	margin-top: 60px;
}

/* ============== sec共通 =================== */
.sec {
	width:calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
}
.btn_wrap,
.btn_wrap + .sec {
	margin-top: 60px;
}
.sec.join,
.sec.flow {
	background-color: #CCEBFF;/* 任意 */
	margin-top: 60px;
}
.sec.about {
	background-color: #FFE2E2;/* 任意 */
	margin-top: 60px;
	padding-bottom: 50px;
}
.sec_ttl {
	font-size: 22px;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	margin: 50px auto 40px;
}
/* join,flowの見出し */
.sec.join .sec_ttl,
.sec.flow .sec_ttl {
	font-size: 24px;
    color: #fff;
    background-color: #1FA5FF;
    height: 60px;
    width: 100%;
    padding: 18px 0;
    border-radius: 8px 8px 0 0;
	margin: 0 auto;
}
.sec.join .sec_ttl .ttl_inner,
.sec.flow .sec_ttl .ttl_inner{
	display: flex;
	justify-content: center;
    align-items: center;
    line-height: 1;
}
.sec.join .sec_ttl .ttl_inner::before,
.sec.flow .sec_ttl .ttl_inner::before,
.sec.join .sec_ttl .ttl_inner::after,
.sec.flow .sec_ttl .ttl_inner::after {
	display: inline-block;
    content: "";
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/star.png) 0 0 / contain no-repeat;
	width: 20px;
	height: 20px;
}
.sec.join .sec_ttl .ttl_inner::before,
.sec.flow .sec_ttl .ttl_inner::before {
	margin-right: 10px;
}
.sec.join .sec_ttl .ttl_inner::after,
.sec.flow .sec_ttl .ttl_inner::after {
	margin-left: 10px;
}

.sec_ttl + *,
.sec_main  {
	margin-top: 40px;
}
.sec_lead_main,
.sec_lead_main .em_font {
	font-size: 22px;
	font-weight: bold;
}
.sec_lead p + .sec_lead_main {
	margin-top: 10px;
}
.sec_main + .note_txt {
	margin-top: 20px;
}
.sec_main .round_block {
	background-color: #ffffff;
}
.sec .note_txt {
	text-align: left;
}
.sec_item_txt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 20px;
	word-wrap: break-word;
	text-align: left;
}
.sec_item_txt p {
	max-width: 100%;
}
.sec_inner{
	width: calc(100% - 140px);
    max-width: 830px;
}
.sec_inner:not(.att_list){
	margin: 0 auto;
    overflow: hidden;
}
/*2~3カラム*/
.column2_block,
.column3_block {
	display: grid;
}
.column2_block .sec_item,
.column3_block .sec_item {
	display: flex;
	flex-direction: column;
}
/*2カラム*/
.column2_block {
	grid-template-columns: 1fr 1fr;
 grid-template-rows: max-content max-content;
	gap: 0 30px;
}
.column2_block .slash_ttl {
	gap: 13px;
}
/*3カラム*/
.column3_block {
	grid-template-columns: 1fr 1fr 1fr;
 grid-template-rows: max-content max-content max-content;
	gap: 0 25px;
}
.column3_block .slash_ttl {
	justify-content: space-between;
}
.column3_block .slash_ttl {
	gap: 8px;
}

/* ============== join(参加方法) =================== */
.join {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/join_bg_pc.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
}
.step .sec_item {
	position: relative;
}
.step_icon {
	display: grid;
	place-items: center;
	color: #ffffff;
	font-weight: bold;
	line-height: 1;
	background-color: #3669B2;
	border-radius: 15px;
	width: 160px;
	height: 30px;
	margin: auto;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	z-index: 2;
}
.step_img {
	/* max-width: 400px; */
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
	padding-bottom: 20px;
}
.column2_block .step_img {
	padding-top: 8px;
}
.column3_block .step_img {
	padding-top: 15px;
}
.join_goal_pic {
	font-size: 0;
	line-height: 0;
	/* vertical-align: bottom; */
	display: block;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
}
.step_txt {
	padding: 0 20px;
}
.join_goal {
	margin-top: 30px;
}
.join_goal::before {
	content:"";
	display: block;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/join_arrow.png) 0 0/contain no-repeat;
	width: 34px;
	height: 60px;
	margin: 0 auto;
}
.join_goal_txt {
	margin: 30px auto;
}
.join_goal .em_font {
	font-size: 32px;
}
.join .btn_sns {
	margin: 30px auto;
}
.join .btn_sns img {
	max-width: 360px;
	width: 100%;
}
/* ======== flow(当選後の流れ) ======== */
.flow .sec_inner .step {
	margin-bottom: 50px;
}
/* ===== about(プレゼントとカードについて) ===== */
/* ぬいぐるみ */
.about_present {
	background-color: #fff;
	border-radius: 8px;
	padding: 40px;
}
.list_present {
	display: grid;
	place-content: center;
	grid-template-columns: 2fr 1fr;
	gap: 30px 20px;
	margin-bottom: 20px;
}
.present_ttl {
	grid-column: 1/2;
	grid-row: 1/2;
}
.present_img {
	grid-column: 2/3;
	grid-row: 1/3;
	place-items: center;
	display: inline-block;
	place-content: center;
}
.present_img img {
	width: 100%;
	max-width: 220px;
	border-radius: 40px;
}
.present_txt {
	grid-column: 1/2;
	grid-row: 2/3;
}
.present_txt h3 {
	font-size: 22px;
	font-weight: bold;
	color: #FF3333;
}
.present_txt p {
	text-align: left;
}

/* 台湾カードとは？ */
.about_card {
	background-color: #FFFFD6;
	border-radius: 8px;
	padding: 40px;
}
/* 吹き出し */
.about_card h3 {
	width: 400px;
	height: 50px;
	font-size: 18px;
	margin: 0 10px 30px;
	padding: 10px 10px;
	background-color: #fff;
	border: #000 solid 2px;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	color: #000;
	box-sizing: border-box;
	z-index: 3;
}
.about_card h3::before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top: 10px solid #fff;
	z-index: 2;
}
.about_card h3::after {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translateX(-50%);
	border: 12px solid transparent;
	border-top: 12px solid #000;
	z-index: 1;
}
.about_card p {
	text-align: left;
}
.about_card .btn_wrap {
	margin-top: 30px;
	padding: 0;
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.about_card .btn_wrap .btn {
	padding: 0 60px;
	line-height: 1.7rem;
}
/* ============== att =================== */
.att {
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	overflow: hidden;
}
.att_item + .att_item {
	margin-top: 30px;
}
.att_item_ttl {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	padding-left: 1.5em;
	position: relative;
}
/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	display: block;
	background-color: #F33;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 2px;
	left: 0;
}
.att_item_inner p {
	margin-top: 10px;
}
.att_item_inner .note_txt {
	margin-top: 0;
}
.att_item_inner p + p {
	margin-top: 0;
}
.att_item_img {
	text-align: center;
	margin-top: 20px;
}
.att_item_img + * {
	margin-top: 20px;
}
.att .dot_list,
.att .num_list,
.att_small_unit,
.att_small_unit + * {
	margin-top: 10px;
}
.att_small_unit dd > *:first-child {
	margin-top: 0;
}
.att .dot_list .att_small_unit {
	text-indent: 0;
}
.att .dot_list li > .dot_list,
.att .dot_list li > .num_list,
.att .num_list li > .dot_list,
.att .num_list li > .num_list,
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-top: 0;
}
.att .dot_list li > .dot_list + *,
.att .dot_list li > .num_list + *,
.att .num_list li > .dot_list + *,
.att .num_list li > .num_list + *,
.att_small_unit .dot_list + *,
.att_small_unit .num_list + * {
	margin-top: 10px;
}
.att .dot_list li > .num_list,
.att .num_list li > .num_list {
	transform: translateX(-0.2em);
}
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-left: 0.5em;
}
.att .em_font {
	color: #f50028;
	font-weight: bold;
}
.att_list {
    margin: 40px auto;
}
/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
	/* ============== 共通 =================== */
	img {
		width: 100%;
	}
	.display_pc {
		display: none;
	}
	.display_sp {
		display: block;
	}
	.end_txt {
		font-size: 150%;
	}
	/*吹き出しタイトル*/
	.slash_ttl::before, .slash_ttl::after {
		flex: 0 0 30px;
	}
	/* ============== btn =================== */
	.btn_wrap {
		padding: 0 45px;
	}
	.btn_wrap,
	.btn_wrap + .sec {
		margin-top: 50px;
	}
	.btn_att {
		text-align: left;
		margin-top: 15px;
	}
	/*終了対応*/
	#contents .close_btn::after {
		font-size: 1.8rem;
	}
	.btn_sns {
		width: calc(100% - 30px);
	}
	/* ============== top =================== */
	.top_date {
		height: auto;
		padding: 10px;
	}
	.top_date img {
		max-height: 60px;
	}

	/* ============== sec共通 =================== */
	.sec:not(.att) {
		/* border-top: 1px solid #000000;
		border-bottom: 1px solid #000000; */
		border-radius: 0;
		width: 100%;
	}
	.sec.novelty,
	.sec.join,
	.sec.flow,
	.sec.about {
		margin-top: 50px;
	}
	.sec_ttl + *,
	.sec_main {
		margin-top: 30px;
	}
	.sec_lead_main {
		font-size: 18px;
	}
	.sec_main + .note_txt {
		margin-top: 28px;
	}
	.sec_inner{
		width: auto;
		width: calc(100% - 30px);
	}
	.sec_ttl{
		margin:36px auto 30px;
	}
	/* join,flowの見出し */
	.sec.join .sec_ttl,
	.sec.flow .sec_ttl {
		border-radius: 0;
	}
	/*2~3カラム*/
	.column2_block,
	.column3_block {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	/*3カラム*/
	.column2_block .slash_ttl,
	.column3_block .slash_ttl {
		justify-content: center;
		gap: 8px;
	}
	/* ============== join =================== */
	.sec.join::before{
		background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/taiwan_2508/img/join_top_sp.png);
	}
	.join {
		background-image: none;
	} 
	.join .step {
		gap: 30px;
	}
	.step_icon {
		height: 25px;
		top: -12px;
	}
	.column2_block .step_img,
	.column3_block .step_img {
		padding-top: 0;
	}
	.join .btn_sns {
		width: 100%;
	}
	.step_txt {
		justify-content: flex-start;
		align-items: flex-start;
		text-align: left;
	}
	.join_goal::before {
		content: none;
	}
	.join_goal_txt {
		margin-top: 30px;
		width: calc(100% - 30px);
	}
	.join_goal_pic {
		border-radius: 0;
	}
	/* ====== flow ====== */

	/* ====== about ====== */
	/* プレゼント */
	.about_present {
		padding: 30px 20px 40px;
	}
	.list_present {
		display: block;
	}
	.present_img {
		margin: 30px auto;
	}
	/* 台湾カードとは */
	.about_card {
		padding: 40px 20px;
	}
	.about_card h3 {
		width: 100%;
		margin: 0 auto 30px;
	}
	.about_card .btn_wrap {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.about_card .btn_wrap .btn {
		width: 100%;
    	padding: 0px 40px;
	}
	/* ============== att =================== */
	.att_item_ttl {
		padding-left: 1.5em;
	}
	.att_item_inner p,
	.att .dot_list,
	.att .num_list,
	.att_small_unit,
	.att_small_unit + * {
		margin-top: 5px;
	}
	.sec_inner.att_list{
		width: calc(100% - 60px);
		margin: 30px auto;
	}
	.sec.att {
		width: calc(100% - 30px);
		margin: 50px auto;
	}
}