@charset "UTF-8";
/* --------------------------------------

	MBP商品を探す

---------------------------------------- */

html {
	min-height: -webkit-fill-available;
	min-height: 100vh;
}
body.is-fixed {
	position: fixed;
	width: calc( 100vw - ( 100vw - 100% ));
}

#stage.mbp-recommendation * {
	box-sizing: border-box;
}

#stage .mod-annotation {
	margin-top: 10px;
	text-align: right;
}
@media only screen and (max-width: 736px) {
	#stage .mod-annotation {
		text-align: left;
	}
}

/* ------------------------------------
	* tab contetns
* ------------------------------------ */

/* tab */
.tab {
	position: relative;
}
.tab_content {
	display: none;
}
.tab_content.is-active {
	display: block;
}

/* tab-menu */
#stage .tab_menu {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin-top: 50px;
	height: 50px;
}
#stage .tab_menu::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background: #0039a6;
}
#stage .tab_menu a {
	display: block;
	height: 100%;
	text-decoration: none;
	color: #fff;
	transition: color .3s ease-in-out;
}
#stage .tab_menu li {
	position: relative;
	width: calc(( 100% - 16px * 3 )/ 4 );
}
#stage .tab_menu li:not(:last-child) {
	margin-right: 16px;
}
#stage .tab_menu_item {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 14px 20px 12px;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 600;
	transition: all .3s ease-in-out;
}
#stage .tab_menu_item::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	border: 1px solid #0039a6;
	background: #0039a6;
	border-radius: 5px 5px 0 0;
	box-sizing: border-box;
	transition: all .2s ease-in-out;
}
#stage .tab_menu_item::after {
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	content: '';
	width: 0;
	height: 3px;
	background: #0039a6;
	border-radius: 3px;
	transition: width .3s ease-in-out;
}
#stage .is-active .tab_menu_item {
	top: -10px;
	color: #0039a6;
	height: 60px;
}
#stage .is-active .tab_menu_item::before {
	background: #fff;
	border-bottom-color: #fff;
	color: #0039a6;
}
#stage .is-active .tab_menu_item::after {
	width: 74px;
}
#stage .tab_menu_item span {
	position: relative;
}
@media only screen and (min-width: 737px) {
	#stage a:hover .tab_menu_item {
		top: -10px;
		color: #0039a6;
		height: 60px;
	}
	#stage a:hover .tab_menu_item::before {
		background: #fff;
		border-bottom-color: #fff;
		color: #0039a6;
	}
}
@media only screen and (max-width: 736px) {
	#stage .tab_menu {
		margin: 30px 5px 0;
		height: 54px;
	}
	#stage .tab_menu::before {
		left: -5px;
		right: -5px;
		width: auto;
	}
	#stage .tab_menu li {
		position: relative;
		width: calc(( 100% - 3px * 3 )/ 4 );
	}
	#stage .tab_menu li:not(:last-child) {
		margin-right: 3px;
	}
	#stage .tab_menu_item {
		padding: 11px 14px;
		font-size: 12px;
		text-align: center;
	}
	#stage .tab_menu_item::after {
		height: 2px;
	}
	#stage .is-active .tab_menu_item {
		top: -6px;
		height: 60px;
	}
	#stage .is-active .tab_menu_item::after {
		width: 60px;
	}
}


/* ------------------------------------
	* section parts
* ------------------------------------ */
/* h3 */
#stage .tab_content .section_h3 {
	position: relative;
	margin-top: 40px;
	padding: 26px 0;
	background-color: #e1f3ff;
	border-radius: 10px 10px 0 0;
	color: #0036a6;
	font-size: 22px;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
}
#stage .tab_content .section_h3::before {
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	content: '';
	width: 74px;
	height: 3px;
	background-color: #0036a6;
	border-radius: 3px;
}
@media only screen and (max-width: 736px) {
	#stage .tab_content .section_h3 {
		margin-top: 30px;
		padding: 14px 0;
		font-size: 18px;
		list-style: none;
	}
	#stage .tab_content .section_h3::before {
		width: 60px;
		height: 2px;
	}
}

/* catch */
#stage .tab_content .section_catch {
	padding-top: 25px;
	background: #e1f3ff url(/mbp/common/img/bg_catch_pc.svg) no-repeat 0 100%;
	background-size: 100% auto;
}
#stage .tab_content .section_catch img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 640px;
}
@media only screen and (max-width: 736px) {
	#stage .tab_content .section_catch {
		padding-top: 20px;
	}
}

/* section_lead */
#stage .tab_content .section_lead {
	margin: 30px 0;
	color: #0039a6;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}
@media only screen and (max-width: 736px) {
	#stage .tab_content .section_lead {
		margin: 20px 0;
		font-size: 14px;
	}
}

/* ------------------------------------
	* anchor
* ------------------------------------ */
#stage .anchor {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin-top: 40px;
}
#stage .anchor a {
	display: block;
	height: 100%;
	text-decoration: none;
	color: initial;
	transition: color .3s ease-in-out;
}
#stage .anchor_btn {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 13px 46px 13px 20px;
	height: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 13px;
	font-weight: bold;
}
#stage .anchor_btn::after {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: '';
	width: 18px;
	height: 18px;
	background: #0039a6 url(/mbp/common/img/icon_arrow_down.svg) no-repeat;
	background-size: 100% auto;
	border-radius: 50%;
	transition: background-color .3s ease-in-out;
}
@media only screen and (min-width: 737px) {
	#stage .anchor li {
		width: calc(( 100% - 20px * 2 )/ 3 );
	}
	#stage .anchor li:not(:nth-child(3n)) {
		margin-right: 20px;
	}
	#stage .anchor li:not(:nth-child( -n + 3)) {
		margin-top: 20px;
	}
	#stage .anchor a:hover {
		color: #06AFE2;
	}
	#stage a:hover .anchor_btn::after {
		background-color: #06AFE2;
	}
}
@media only screen and (max-width: 736px) {
	#stage .anchor {
		margin-top: 20px;
		flex-direction: column;
	}
	#stage .anchor li {
		width: 100%;
	}
	#stage .anchor li:first-child .anchor_btn {
		border-radius: 5px 5px 0 0;
	}
	#stage .anchor li:last-child .anchor_btn {
		border-radius: 0 0 5px 5px;
	}
	#stage .anchor li:not(:first-child):not(:last-child) .anchor_btn {
		border-radius: 0;
	}
	#stage .anchor li:not(:last-child) .anchor_btn {
		border-bottom: none;
	}
}

/* ------------------------------------
	* filter
* ------------------------------------ */
/* menu */
#stage .filter_head {
	margin-top: 40px;
	background: #E1F3FF;
	border-radius: 5px;
	font-size: 13px;
}
#stage .filter_title {
	font-weight: bold;
}
#stage .filter_menu .filter_menu_all {
	position: relative;
}
#stage .filter_menu .filter_menu_all.is-checked::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
}
@media only screen and (min-width: 737px) {
	#stage .filter_head {
		display: flex;
		align-items: center;
		padding: 20px 60px;
	}
	#stage .filter_title {
		flex: 0 1 190px;
	}
	#stage .filter_menu {
		display:-ms-grid;
		display:grid;
		-ms-grid-columns: auto 30px auto 30px auto 30px auto;
		grid-template-columns: auto auto auto auto;
		-ms-grid-rows: 1fr;
		grid-template-rows: 1fr;
		gap: 14px 30px;
		place-content: stretch;
		padding-left: 30px;
		border-left: 1px solid #ccc;
	}
	#stage .filter_menu > *:nth-child(1) {
			-ms-grid-row:1;
			-ms-grid-column:1;
	}
	#stage .filter_menu > *:nth-child(2) {
			-ms-grid-row:1;
			-ms-grid-column:3;
	}
	#stage .filter_menu > *:nth-child(3) {
			-ms-grid-row:1;
			-ms-grid-column:5;
	}
	#stage .filter_menu > *:nth-child(4) {
			-ms-grid-row:1;
			-ms-grid-column:7;
	}
	#stage .filter_menu > *:nth-child(5) {
		-ms-grid-row:2;
		-ms-grid-column:3;
	}
	#stage .filter_menu > *:nth-child(6) {
		-ms-grid-row:2;
		-ms-grid-column:5;
	}
	#stage .filter_menu > *:nth-child(7) {
		-ms-grid-row:2;
		-ms-grid-column:7;
	}
	#stage .filter_menu .filter_menu_all {
		grid-area: span 2 / span 1 / span 2 / span 1;
		-ms-grid-row-align: auto;
		-ms-grid-column-align: auto;
		place-self: auto;
	}
	#stage .filter_menu label {
		display: flex;
	}
	#stage .filter_menu label span {
		display: inline-block;
		padding-left: 3px;
	}
	#stage .filter_menu label input {
		margin-top: 2px;
	}
	#stage .filter_menu label:hover {
		cursor: pointer;
	}
}
@media only screen and (max-width: 736px) {
	#stage .filter_head {
		margin-top: 20px;
	}
	#stage .filter_title {
		position: relative;
		padding: 17px 20px;
	}
	#stage .filter_title::after {
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		content: '';
		width: 18px;
		height: 18px;
		background: #fff url(/mbp/common/img/icon_arrow_down_blue.svg) no-repeat;
		background-size: 100% auto;
		border-radius: 50%;
		transition: all .3s ease-in-out;
	}
	#stage .is-open .filter_title::after {
		transform: translateY(-50%) rotate(180deg);
	}
	#stage .filter_menu {
		overflow: hidden;
		padding: 0 20px 10px;
	}
	#stage .filter_menu li {
		float: left;
		margin-bottom: 10px;
		min-width: 115px;
		padding-right: 16px;
	}
	#stage .filter_menu label {
		display: flex;
	}
	#stage .filter_menu label span {
		display: inline-block;
		padding-left: 3px;
	}
	#stage .filter_menu label input {
		margin-top: 2px;
	}
}

/* content */
#stage .filter_content {
	position: relative;
}

/* notfound */
#stage .filter_notfound {
	position: relative;
	top: 20px;
	left: 0;
	display: none;
	opacity: 0;
	margin-top: 30px;
	width: 100%;
	transition: all .3s ease-in-out;
}
#stage .filter_notfound.is-inview {
	opacity: 1;
	top: 0;
	transition: all .3s ease-in-out;
}

/* ------------------------------------
	* question
* ------------------------------------ */
#stage .question_content {
	padding-top: 40px;
}

/* question_head */
#stage .question_head {
	position: relative;
	padding: 20px 0 37px;
	background: #e1f3ff url(/mbp/common/img/bg_catch_pc.svg) no-repeat 0 115%;
	background-size: 100% auto;
	border-radius: 10px 10px 0 0;
	color: #0036a6;
	font-size: 22px;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
}
#stage .question_head img {
	width: 100%;
}
#stage .question_title {
	margin: 0 auto;
	width: 100%;
	max-width: 448px;
}
#stage .question_thumb {
	margin: -8px auto 0;
	width: 100%;
	max-width: 800px;
}
@media only screen and (max-width: 736px) {
	#stage .question_content {
		padding-top: 20px;
	}
	#stage .question_head {
		padding: 12px 0;
		background-position: 0 108%;
		border-radius: 5px 5px 0 0;
	}
	#stage .question_title {
		width: 83.582089552%;
		max-width: 560px;
	}
	#stage .question_thumb {
		margin: 10px auto 0;
		width: 89.552238806%;
	}
}

/* answerlist */
#stage .answerlist {
	display: flex;
	margin-top: 30px;
}
#stage .answerlist_item label {
	display: flex;
	justify-content: center;
	padding: 30px;
	width: 100%;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 15px;
	color: #ccc;
	font-size: 20px;
	font-weight: bold;
	transition: all .2s ease-in-out;
}
#stage .answerlist_item :checked + label {
	background: #0039a6;
	border: 2px solid #0039a6;
	color: #fff;
}
#stage .answerlist_item input {
	display: none;
}
@media only screen and (min-width: 737px) {
	#stage .answerlist_item {
		width: calc((100% - 32px)/ 2);
	}
	#stage .answerlist_item:first-child {
		margin-right: 32px;
	}
	#stage .answerlist-tree .answerlist_item {
		margin-right: 32px;
		width: calc((100% - 32px * 2)/ 3);
	}
	#stage .answerlist_item:last-child {
		margin-right: 0;
	}
	#stage .answerlist_item label:hover {
		border-color: #0039a6;
		color: #0039a6;
		cursor: pointer;
	}
}
@media only screen and (max-width: 736px) {
	#stage .answerlist {
		display: block;
		margin-top: 20px;
	}
	#stage .answerlist_item {
		width: 100%;
	}
	#stage .answerlist_item + .answerlist_item {
		margin-top: 10px;
	}
	#stage .answerlist_item label {
		padding: 17px 20px;
		border-radius: 5px;
		font-size: 14px;
	}
}

/* question_list */
#stage .question_list {
	position: relative;
	background: #fff;
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: -20px;
	transition: all .2s ease-in-out;
}
#stage .question_item {
	position: relative;
	opacity: 0;
	transition: all .5s ease-in-out;
	width: 100%;
}
#stage .question_item:not(:first-child) {
	position: absolute;
	top: 20px;
}
#stage .question_item.is-inview {
	top: 0;
	opacity: 1;
	z-index: 200;
}
#stage .question_item .section_h3 {
	margin-top: 0;
}

/* notfound */
#stage .notfound {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #ccc;
    border-radius: 15px;
    text-align: center;
}

#stage .notfound_title {
    margin-bottom: 10px;
    color: #999;
    font-size: 20px;
    font-weight: bold;
}
#stage .notfound_text {
    color: #666;
}
#stage .notfound_button {
    margin-top: 20px;
}
#stage .notfound_button .mod-button .button_inner {
	background: #aaa;
}
#stage .notfound_button .mod-button .button_inner::after {
	display: none;
}

/* ------------------------------------
	* productlist
* ------------------------------------ */
#stage .productlist {
	position: relative;
	margin-top: 30px;
	width: 100%;
	font-size: 0;
	transition: all .2s ease-in-out;
}
#stage .list_item {
	display: inline-block;
	transition: all .3s ease-in-out;
	opacity: 0;
	font-size: 14px;
	vertical-align: top;
}
#stage .list_item.is-inview {
	display: inline-block;
	opacity: 1;
}
#stage .list_item a {
	display: block;
	color: inherit;
}
#stage .list_thumb {
	opacity: 1;
	transition: opacity .2s ease-in-out;
}
#stage .list_thumb img {
	width: 100%;
}
#stage .list_name {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	margin-left: 14px;
	font-size: 14px;
}
#stage .list_name span {
	position: relative;
	display: inline-block;
	text-indent: -14px;
}
#stage .list_name span::before {
	display: inline-block;
	content: '';
	width: 8px;
	height: 1em;
	margin-right: 6px;
	background: url(/common/img/icon-rwd/arrow_blue.png) no-repeat 0 50%;
	background-size: 8px 8px;
	vertical-align: -1px;
}
#stage .list_label {
	margin-top: 6px;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	opacity: 1;
	transition: opacity .2s ease-in-out;
}
#stage .list_label span {
	display: inline-block;
    padding: 5px 6px 6px;
	color: #fff;
}
#stage .label_tokuho {
	background: #009F96;
}
#stage .label_kinou {
	background: #EF8D00;
}
#stage .list_item.is-inview:nth-of-type(1) { transition-delay: calc(.1s * 0); }
#stage .list_item.is-inview:nth-of-type(2) { transition-delay: calc(.1s * 1); }
#stage .list_item.is-inview:nth-of-type(3) { transition-delay: calc(.1s * 2); }
#stage .list_item.is-inview:nth-of-type(4) { transition-delay: calc(.1s * 3); }
#stage .list_item.is-inview:nth-of-type(5) { transition-delay: calc(.1s * 4); }
#stage .list_item.is-inview:nth-of-type(6) { transition-delay: calc(.1s * 5); }
#stage .list_item.is-inview:nth-of-type(7) { transition-delay: calc(.1s * 6); }
#stage .list_item.is-inview:nth-of-type(8) { transition-delay: calc(.1s * 7); }
#stage .list_item.is-inview:nth-of-type(9) { transition-delay: calc(.1s * 8); }
#stage .list_item.is-inview:nth-of-type(10) { transition-delay: calc(.1s * 9); }
#stage .list_item.is-inview:nth-of-type(11) { transition-delay: calc(.1s * 10); }
#stage .list_item.is-inview:nth-of-type(12) { transition-delay: calc(.1s * 11); }
#stage .list_item.is-inview:nth-of-type(13) { transition-delay: calc(.1s * 12); }
#stage .list_item.is-inview:nth-of-type(14) { transition-delay: calc(.1s * 13); }
#stage .list_item.is-inview:nth-of-type(15) { transition-delay: calc(.1s * 14); }
#stage .list_item.is-inview:nth-of-type(16) { transition-delay: calc(.1s * 15); }
#stage .list_item.is-inview:nth-of-type(17) { transition-delay: calc(.1s * 16); }
#stage .list_item.is-inview:nth-of-type(18) { transition-delay: calc(.1s * 17); }

@media only screen and (min-width: 737px) {
	#stage .productlist-center {
		text-align: center;
	}
	#stage .list_item {
		width: calc((100% - 58px * 3)/4);
	}
	#stage .list_item.is-inview:not(:nth-of-type(4n)) {
		margin-right: 58px;
	}
	#stage .list_item.is-inview:not(:nth-of-type( -n + 4)) {
		margin-top: 50px;
	}
	#stage .list_item.is-inview:last-child {
		margin-right: 0;
	}
	#stage .list_item a:hover .list_thumb,
	#stage .list_item a:hover .list_label {
		opacity: .7;
	}
}
@media only screen and (max-width: 736px) {
	#stage .productlist {
		margin-top: 10px;
	}
	#stage .list_item {
		width: calc((100% - 21px)/ 2);
	}
	#stage .list_item.is-inview:nth-of-type(2n - 1) {
		margin-right: 21px;
	}
	#stage .list_item.is-inview:not(:nth-of-type( -n + 2)) {
		margin-top: 30px;
	}
	#stage .list_name {
		margin-top: 5px;
	}
	#stage .list_label {
		font-size: 12px;
	}
}



/* ------------------------------------
	* modal
* ------------------------------------ */

/* コンテナ */
#stage .modal {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
	width: 100%;
	overflow-y: scroll;
}
#stage .modal::before {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}
#stage .modal_scroll {
	position: relative;
	display: flex;
	padding: 60px 20px;
	min-height: 100%;
	align-items: center;
}
#stage .modal_inner {
	position: relative;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
	margin: 0 auto;
	padding: 40px;
	width: 100%;
	max-width: 1000px;
	min-height: 500px;
	background: #fff;
	border-radius: 25px;
}
#stage .modal_body {
	display: flex;
	margin-top: 40px;
	width: 100%;
}
#stage .modal_close {
	position: absolute;
	top: -30px;
	right: -30px;
}
#stage .modal_close a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	background: #0039A6;
	border-radius: 50%;
	color: transparent;
	font-size: 0;
	transition: background .3s ease-in-out;
}
#stage .modal_close a::before,
#stage .modal_close a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	content: '';
	width: 34px;
	height: 5px;
	background: #fff;
	border-radius: 5px;
}
#stage .modal_close a::before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#stage .modal_close a::after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
@media only screen and (min-width: 737px) {
	#stage .modal_close a:hover {
		background: #06AFE2;
	}
}
@media only screen and (max-width: 736px) {
	#stage .modal_scroll {
		padding: 20px 5px 40px;
		min-height: 100%;
		align-items: center;
	}
	#stage .modal_inner {
		margin: 0;
		padding: 15px 15px 50px;
		width: 100%;
		height: auto;
	}
	#stage .modal_body {
		display: block;
		margin-top: 10px;
	}
	#stage .modal_close {
		top: auto;
		right: auto;
		bottom: -15px;
		left: calc( 50% - 20px);
	}
	#stage .modal_close a {
		width: 40px;
		height: 40px;
	}
	#stage .modal_close a::before,
	#stage .modal_close a::after {
		width: 25px;
		height: 3px;
		border-radius: 5px;
	}
}

/* 詰め物 */
#stage .modal_head {
	position: relative;
	padding: 26px;
	background-color: #e1f3ff;
	border-radius: 10px 10px 0 0;
	color: #0036a6;
	font-size: 22px;
	line-height: 1.3;
	font-weight: bold;
	text-align: center;
}
#stage .modal_head::before {
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	content: '';
	width: 74px;
	height: 3px;
	background-color: #0036a6;
	border-radius: 3px;
}
#stage .modal_label {
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	opacity: 1;
	transition: opacity .2s ease-in-out;
	vertical-align: 2px;
}
#stage .modal_label span {
	display: inline-block;
    padding: 5px 6px 6px;
	color: #fff;
}
#stage .modal_label,
#stage .modal_name {
	display: inline-block;
}
#stage .modal_thumb {
	width: 240px;
	flex: 0 0 240px;
}
#stage .modal_thumb img {
	width: 100%;
}
#stage .modal_text {
	margin-left: 40px;
	width: 100%;
}
#stage .modal_captions {
    margin-top: 10px;
    font-size: 13px;
}
#stage .modal_comment {
	font-size: 16px;
}
#stage .modal_comment li {
	text-indent: -18px;
	padding-left: 18px;
}
#stage .modal_comment li + li {
	margin-top: 20px;
}
#stage .modal_comment li::before {
	display: inline-block;
	content: '';
	width: 8px;
	height: 8px;
	margin-right: 10px;
	background: #0039a6;
	border-radius: 50%;
	vertical-align: 2px;
}
#stage .modal_categories {
	margin-top: 22px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#stage .modal_categories ul {
	width: 100%;
	font-size: 0;
	line-height: 28px;
}
#stage .modal_categories li {
	display: inline-block;
	margin-right: 6px;
	padding: 5px 12px;
	background: #E1F3FF;
	border-radius: 20px;
	color: #0039a6;
	font-size: 12px;
	line-height: 1;
}
#stage .modal_categories li:last-child {
	margin-right: 0;
}
#stage .modal_scene,
#stage .modal_shop,
#stage .modal_type {
	display: flex;
	padding: 13px 0 5px;
	line-height: 1;
}
#stage .modal_shop,
#stage .modal_type {
	border-top: 1px dashed #ccc;
}
#stage .modal_scene::before,
#stage .modal_shop::before,
#stage .modal_type::before {
	display: block;
	margin-right: 18px;
	padding: 5px 0;
	color: #666;
	font-size: 12px;
	line-height: 1;
}
#stage .modal_scene::before	{
	content: '生活シーン';
}
#stage .modal_shop::before	{
	content: '購入できる場所';
}
#stage .modal_type::before	{
	content: '商品タイプ';
}
#stage .modal_button {
	margin: 30px 280px 0;
}
@media only screen and (min-width: 737px) {
	#stage .modal_scene::before,
	#stage .modal_shop::before,
	#stage .modal_type::before	{
		flex: 0 0 110px;
	}
}
@media only screen and (max-width: 736px) {
	#stage .modal_head {
		padding: 21px 15px 17px;
		border-radius: 15px 15px 0 0;
		font-size: 18px;
		list-style: none;
	}
	#stage .modal_head::before {
		width: 60px;
		height: 2px;
	}
	#stage .modal_label,
	#stage .modal_name {
		display: block;
	}
	#stage .modal_label {
		margin-bottom: 4px;
		font-size: 12px;
	}
	#stage .modal_thumb {
		margin: 0 auto;
		width: 37.3333333vw;
		flex: none;
	}
	#stage .modal_text {
		margin: 0 10px;
		width: calc(100% - 20px);
	}
	#stage .modal_captions {
		font-size: 12px;
	}
	#stage .modal_comment {
		margin-top: 10px;
		font-size: 12px;
	}
	#stage .modal_comment li {
		text-indent: -15px;
		padding-left: 15px;
	}
	#stage .modal_comment li + li {
		margin-top: 10px;
	}
	#stage .modal_comment li::before {
		margin-right: 9px;
		width: 6px;
		height: 6px;
		vertical-align: 1px;
	}
	#stage .modal_categories {
		margin-top: 12px;
	}
	#stage .modal_categories ul {
		line-height: 22px;
	}
	#stage .modal_categories li {
		margin-right: 5px;
		padding: 5px 10px;
		font-size: 10px;
	}
	#stage .modal_scene,
	#stage .modal_shop,
	#stage .modal_type {
		margin: 0;
		padding: 8px 0 3px;
	}
	#stage .modal_scene::before,
	#stage .modal_shop::before,
	#stage .modal_type::before {
		margin-right: 10px;
		padding: 5px 0;
		font-size: 10px;
		flex: 0 0 70px;
	}
	#stage .modal_button {
		margin: 20px 0 0;
	}
}