@charset "utf-8";
/* ============== 共通 =================== */
#contents {
	padding: 0 0 60px;
	font-size: 14px;
	text-align: center;
	color: #333333;
	background-color: #FFEFDE;
	line-height: 1.6;
	overflow: hidden;
}
#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 {
	padding: 20px 0;
	font-size: 180%;
	font-weight: bold;
	text-align: center;
	color: #f50028;
	background-color: #fff;
	line-height: 1;
}
/*注釈テキスト*/
.note_txt {
	padding-left: 1em;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	color: #999;
	line-height: 1.6;
	text-indent: -1em;
}
/*角丸ブロック*/
.round_block {
	border-radius: 8px;
}
/*太字*/
.bold_font {
	font-weight: bold;
}
/*中黒リスト*/
.dot_list {
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1em;
}
/*(数字)リスト*/
.num_list {
	padding-left: 1.5em;
	text-indent: -1.4em;
	counter-reset: number 0;
}
.num_list > li::before {
	counter-increment: number 1;
	content: "(" counter(number) ")";
}
.example_num_list {
	margin-top: 10px;
	padding-left: 2.5em;
	text-indent: -2.5em;
	counter-reset: number 0;
}
.example_num_list > li::before {
	margin-right: 5px;
	counter-increment: number 1;
	content: "例" counter(number) ")";
}
/* ============== btn =================== */
#contents .btn {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
}
.btn_wrap {
	padding: 0 60px;
}
.btn {
	width: 100%;
	max-width:400px;
	height: 50px;
	margin: 20px auto 0;
	display: grid;
	place-items: center;
	position: relative;
	background-color: #E40000;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_tomods_2508/img/btnarrow_right.png);
	background-size: 20px;
	background-position: center right 15px;
	background-repeat: no-repeat;
	border-radius: 5px;
}
/*終了対応*/
#contents .close_btn {
	position: relative;
	pointer-events: none;
}
#contents .close_btn::after {
	content:"※本キャンペーンは終了しました";
	width: 104%;
	height: 120%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: bold;
	color: #ffffff;
	background-color: rgba(0,0,0,0.7);
	transform: translate(-50%,-50%);
	z-index: 10;
}
/* ============== top =================== */
.top {
	font-size: 0;
	background-color: #ffad5a;	
}
.top_date {
	padding: 10px 28px;
	display: grid;
	place-items: center;
	background-color: #255470;
}
.top_date img {
	width: 100%;
	max-width: 490px;
}
.top + * {
	margin-top: 60px;
}
/* ============== sec共通 =================== */
.sec {
	width:calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
}
* + .sec {
	margin-top: 60px;
}
/* ============== LP =================== */
/* join 参加方法 */
.join_step_list {
	margin-top: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: max-content max-content;
	gap: 0 20px;
}
.join_step {
	padding: 40px 20px 20px;
	position: relative;
	background-color: #fff;
	border: 1px solid #255470;
}
.step_num {
	width: 160px;
	height: 30px;
	margin: auto;
	display: grid;
	place-items: center;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	font-weight: bold;
	color: #fff;
	background-color: #255470;
	border-radius: 15px;
	line-height: 1;
	z-index: 2;
}
.join_step_main {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.step_att {
	font-size: 12px;
	color: #999999;
	text-align: left;
}
.step_att li + li {
	margin-top: 5px;
}
.join_goal {
	margin-top: 30px;
}
.join_goal::before {
	content: "";
	width: 100%;
	height: 20px;
	margin: 0 auto;
	display: block;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_tomods_2508/img/join_arrow.png) center / contain no-repeat;
}
.join_goal_pic {
	margin-top: 30px;
}
.join_goal_att {
	margin-top: 10px;
}
/* ============== att =================== */
.att {
	padding: 50px 70px;
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	overflow: hidden;
}
.att_ttl {
	text-align: center;
}
.att_list {
	margin-top: 40px;
}
.att_item + .att_item {
	margin-top: 40px;
}
.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: #ff9123;
	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 .mt-0 {
	margin-top: 0px;
}
.att .mt-10 {
	margin-top: 10px;
}
.att .pl-2em {
	padding-left: 2em;
}
/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
	/* ============== 共通 =================== */
	#contents {
		padding-bottom: 50px;
	}
	img {
		width: 100%;
	}
	.display_pc {
		display: none;
	}
	.display_sp {
		display: block;
	}
	.end_txt {
		font-size: 150%;
	}
	.top + * {
		margin-top: 30px;
	}
	/* ============== btn =================== */
	.btn {
		margin-top: 10px;
	}
	/*終了対応*/
	#contents .close_btn::after {
		font-size: 1.8rem;
	}
	/* ============== top =================== */
	.top_date {
		padding-right: 12.5px;
		padding-left: 12.5px;
	}
	/* ============== sec共通 =================== */
	.sec {
		width: calc(100% - 30px);
	}
	.sec + .sec {
		margin-top: 50px;
	}
	.sec_ttl + * {
		margin-top: 30px;
	}
	.sec_lead_main {
		font-size: 18px;
	}
	/* ============== LP =================== */
	/* join 参加方法 */
	.join {
		width: 100%;
	}
	.join_step_list {
		width: calc(100% - 30px);
		margin: 40px auto 0;
		grid-template-columns: 1fr;
		gap: 30px 0;
	}
	.join_step {
		padding-top: 30px;
	}
	.join_goal::before {
		height: 15px;
	}
	.join_goal_pic {
		margin-top: 20px;
	}
	.join_goal_att {
		width: calc(100% - 40px);
		margin-right: auto;
		margin-left: auto;
	}
	/* ============== att =================== */
	.att {
		padding: 40px 30px 30px;
	}
	.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;
	}
}