@charset "utf-8";
/* ============== 共通 =================== */
#contents {
	padding: 0 0 60px;
	font-size: 14px;
	text-align: center;
	line-height: 1.6;
	background-color: #FBF3D8;
	color: #333333;
	overflow: hidden;
}
#contents * {
	box-sizing: border-box;
}
#contents a {
	color: #0099cc;
	text-decoration: underline;
}
#contents a:hover {
	opacity: 0.7;
}
button, a {
	-webkit-tap-highlight-color: transparent;
}
figure {
	margin: 0;
}
hr {
	border-color: #dddddd;
}
.display_sp {
	display: none;
}
.end_txt {
	padding: 20px 0;
	font-size: 180%;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #f50028;
	background-color: #fff;
}
/*注釈テキスト*/
.note_txt {
	padding-left: 1em;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.6;
	text-indent: -1em;
	color: #999;
}
/*角丸ブロック*/
.round_block {
	border-radius: 8px;
}
/*吹き出し*/
.slash_txt {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-weight: bold;
	color: #005326;
}
.slash_txt::before,
.slash_txt::after {
	content: "";
	width: 16px;
	height: 17px;
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.slash_txt::before {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_2607/img/line_left.png);
}
.slash_txt::after {
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_2607/img/line_right.png);
}
.slash_txt + p {
	margin-top: 5px;
}
/*強調カラーテキスト*/
.em_font_orange {
	color: #ff9123;
}
.em_font_green {
	color: #005326;
}
/*太字*/
.bold_font {
	font-weight: bold;
}
.large_txt {
	font-size: 18px;
}
.slash_txt.large_txt::before,
.slash_txt.large_txt::after {
	width: 19px;
	height: 21px;
}
/*中黒リスト*/
.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 {
	content: "(" counter(number) ")";
	counter-increment: number 1;
}
/* ============== btn =================== */
#contents .btn {
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
}
.btn_wrap {
	padding: 60px;
	background-color: #FFF;
}
.btn_em_font {
	white-space: nowrap;
}
.btn_slash_txt {
	margin-top: 5px;
}
.btn {
	width: 100%;
	max-width: 400px;
	height: 50px;
	margin: 10px auto 0;
	position: relative;
	display: grid;
	place-items: center;
	background-color: #005326;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_2607/img/btnarrow_right.png);
	background-size: 20px;
	background-position: center right 15px;
	background-repeat: no-repeat;
	border-radius: 5px;
}
.btn_att {
	margin-top: 20px;
	font-size: 12px;
	color: #999999;
}
/*終了対応*/
#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;
}
/* ============== sec共通 =================== */
.sec {
	width: calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
}
.btn_wrap + *,
.sec + .sec {
	margin-top: 60px;
}
.sec_ttl {
	width: 345px;
	margin: 0 auto;
}
.sec_ttl + * {
	margin-top: 30px;
}
/* tab*/
.tab_head{
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 10px;
}
.tab_btn {
	width: 100%;
	height: 100%;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	font-weight: bold;
	color: #FFF;
	background-color: #FFF;
	border-radius: 8px 8px 0 0;
	transform-origin: bottom center;
	transform: translateY(10px);
	transition: .5s;
	cursor: pointer;
}
.tab_btn.is_active {
	padding-bottom: 0;
	font-size: 16px;
	color: #FFF;
	transform: translateY(0);
}
.tab_btn_card {
	color: #FF9123;
	border: 1px solid #FF9123;
}
.tab_btn_card.is_active {
	background-color: #FF9123;
}
.tab_btn_product {
	color: #005326;
	border: 1px solid #005326;
}
.tab_btn_product.is_active {
	background-color: #005326;
}
.tab_body {
	position: relative;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	z-index: 100;
}
.tab_panel {
	padding: 40px;
	display: none;
	background-color: #fff;
}
.tab_panel.is_active {
	display: block;
}
.tab_panel_card.is_active {
	border-top: 5px solid #FF9123;
}
.tab_panel_product.is_active {
	border-top: 5px solid #005326;
}
/* ============== LP =================== */
/* seasonal 季節商品のご案内 */
.seasonal_list {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.seasonal_item {
	width: 100%;
	max-width: 300px;
}
/* join 参加方法 */
.join {
	margin-top: 40px;
}
.join_tab_panel_card {
	padding: 40px 0 0;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_2607/img/join_bg_pc.png);
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
}
.join_item {
	width: 100%;
	max-width: 830px;
	margin: 27.5px auto 0;
	padding-top: 12.5px;
}
.join_item > * + * {
	margin-top: 0;
}
.join_goal + .join_item {
	margin-top: 50px;
}
.join_item_no_ttl {
	margin-top: 30px;
	padding-top: 0;
}
.join_item_inner {
	width: 100%;
	padding: 40px 40px 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background-color: #FBF3D8;
}
.join_item_no_ttl .join_item_inner {
	padding-top: 30px;
}
.join_item_card {
	width: calc(100% - 80px);
}
.join_icon,
.join_item_ttl {
	width: 160px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.join_ponta_img {
	width: 315px;
}
.join_point_img {
	width: 315px;
}
.join_att {
	display: inline-block;
}
.join_att .txt_left {
	text-align: left;
}
.join_goal {
	margin-top: 20px;
}
.join_goal::before {
	content: "";
	width: 50px;
	height: 62px;
	margin: 0 auto;
	display: block;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/doutor_2607/img/arrow.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.join_goal_middle {
	width: calc(100% - 80px);
	margin-right: auto;
	margin-left: auto;
	max-width: 830px;
}
.join_goal_ponta_img {
	margin-top: 20px;
}
.join_goal_att {
	padding-bottom: 20px;
	background-color: #FF9123;
}
.join_goal_note_txt {
	color: #FFF;
}
.join_products_category_list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.join_products_category_item > * + * {
	margin-top: 20px;
}
.join_products_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 25px;
	row-gap: 20px;
}
.join_products_item {
	width: 220px;
}
.join_products_figcaption {
	margin-top: 10px;
	text-align: left;
}
.join_gifts_list {
	width: 100%;
	max-width: 710px;
	margin-right: auto;
	margin-left: auto;
}
.join_gifts_header {
	font-weight: bold;
	color: #FFF;
	background-color: #986F56;
}
.join_gifts_header,
.join_gifts_row {
	display: grid;
	grid-template-columns: 45fr 16fr 10fr;
	justify-content: center;
	align-items: stretch;
}
.join_gifts_header div,
.join_gifts_row div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.join_gifts_header p,
.join_gifts_row p {
	padding: 10px;
}
.join_gifts_header > * + *,
.join_gifts_row > * + * {
	border-left: 1px solid #FBF3D8;
}
.join_gifts_row:nth-of-type(odd) {
	background-color: #E2E8E0;
}
.join_gifts_row:nth-of-type(even) {
	background-color: #FFF;
}
/* ============== att =================== */
.att_tab_panel {
	padding: 50px 70px;
}
.att {
	text-align: left;
	overflow: hidden;
}
.att_ttl {
	font-size: 22px;
	text-align: center;
}
.att_list {
	margin-top: 40px;
}
.att_item + .att_item {
	margin-top: 40px;
}
.att_item_ttl {
	padding-left: 1.5em;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
}
/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	border-radius: 50%;
}
.tab_panel_card .att_item_ttl::before {
	background-color: #ff9123;
}
.tab_panel_product .att_item_ttl::before {
	background-color: #005326;
}
.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 {
	margin-top: 20px;
	text-align: center;
}
.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 {
	font-weight: bold;
	color: #f50028;
}
/* コンテンツ（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%;
	}
	/*注釈テキスト*/
	.note_txt {
		text-align: left;
	}
	/* ============== btn =================== */
	.btn_wrap {
		padding: 50px 45px;
	}
	.btn_att {
		text-align: left;
	}
	/*終了対応*/
	#contents .close_btn::after {
		font-size: 1.8rem;
	}
	/* ============== sec共通 =================== */
	.sec {
		width: calc(100% - 30px);
	}
	.btn_wrap + *,
	.sec + .sec {
		margin-top: 50px;
	}
	.sec_ttl {
		width: calc(100% - 34.5px);
		max-width: 400px;
	}
	/* tab*/
	.tab_head{
		gap: 5px;
	}
	.tab_btn {
		padding: 6px 0 16px;
		font-size: 12px;
	}
	.tab_btn.is_active {
		padding: 8px 0;
		font-size: 14px;
	}
	.tab_panel	{
		padding: 40px 15px 20px;
	}
	/* ============== LP =================== */
	/* seasonal 季節商品のご案内 */
	.seasonal_list {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.seasonal_item {
		max-width: 750px;
	}
	/* join 参加方法 */
	.join_tab_panel_card {
		padding-right: 0;
		padding-left: 0;
		padding-bottom: 0;
		background-image: none;
	}
	.join_item_inner {
		padding: 30px 0 20px;
	}
	.join_item_card,
	.join_goal_middle {
		width: calc(100% - 30px);
	}
	.join_item_inner > *:not(img, .join_icon, .join_item_ttl) {
		margin-right: 15px;
		margin-left: 15px;
	}
	.join_item_no_ttl {
		margin-top: 20px;
	}
	.join_btn {
		width: calc(100% - 30px);
	}
	.join .join_btn_att,
	.join .join_att {
		margin-right: 20px;
		margin-left: 20px;
	}
	.join_att {
		width: calc(100% - 40px);
		display: block;
	}
	.join_goal_att {
		padding-bottom: 10px;
	}
	.join_goal_note_txt {
		text-align: center;
	}
	.join_products_category_ttl {
		width: 285px;
		margin-right: auto;
		margin-left: auto;
	}
	.join_products_list {
		column-gap: 30px;
		row-gap: 20px;
	}
	.join_products_item {
		width: 110px;
	}
	.join_goal_ponta_img_middle {
		margin-right: 15px;
		margin-left: 15px;
	}
	.join_gifts_header,
	.join_gifts_row {
		grid-template-columns: 153fr 72fr 61fr;
	}
	.join_gifts_row {
		text-align: left;
	}
	.join_gifts_header p,
	.join_gifts_row p {
		padding-right: 5px;
		padding-left: 5px;
	}
	/* ============== att =================== */
	.att_tab_panel {
		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;
	}
}