@charset "utf-8";
/*-------------------
製品ページ　料金ページ用CSS
/asp/price/index.asp
-------------------*/
#breadcrumbs ol li,
#breadcrumbs ol li a {
	color: #fff;
}
main {
	padding-top: 56px;
}
@media (min-width: 1200px) {
	main {
		padding-top: 73px;
	}
}
section {
	padding: 3.0em 0;
}
.contents {
	width: 90%;
	max-width: 64em;
	margin: auto;
	text-align: center;
}
h2 {
	margin-bottom: 1.0em;
	font-size: clamp(20px, 3.0vw, 32px);
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
@media screen and (min-width:48em) {
	section {
		padding: 3.5em 0;
	}
}

/* page_title */
.page_title { 
	padding: 5em 0 3em;
	background: #3071b3;
}
.page_title hgroup {
	margin: auto;
	padding: 0 16px;
}
.page_title h1 {
	color: #fff;
	font-size: clamp(20px, 3.5vw, 38px);
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: center;
}
.page_title p {
	margin-top: 24px;
	font-size: 14px;
	color: #fff;
	line-height: 1.5;
	text-align: left;
}
@media screen and (min-width:48em) {
	.page_title h1 { 
			letter-spacing: 0.1em;
	}
	.page_title p {
		text-align: center;
	}	
}
@media screen and (min-width:64em) {
	.page_title { 
		padding: 6em 0 3.5em;
	}
	.page_title	p {
		font-size: 16px;
	}
}
/* sec_price */
.sec_price.buyer {
	background-color: #fff;
}
.sec_price.seller {
	background-color: #E9ECF4;
}
.sec_price .contents {
	max-width: 640px;
}
.price_box {
	background-color: #fff;
	border: 1px solid #007CFF;
	border-radius: 6px;
}
.price_box h3 {
	display: block;
	padding: .5em .25em;
	background-color: #007CFF;
	color: #fff;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}
.price_box p {
	padding: 1em .5em;
	font-size: 16px;
	line-height: 1.5;
}
.price_note {
	margin-top: 1em;
	font-size: 18px;
	line-height: 1.4;
}
.price_cta {
	margin-top: 32px;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.price_cta .emphasis {
	display: flex; 
	align-items: center; 
	justify-content: center; 
	margin-bottom: .5em;
	font-size: 16px;
}
.price_cta .emphasis::before,
.price_cta .emphasis::after {
	background-color: #333;
	content: "";
	height: 1px;
	width: 1.125em;
} 
.price_cta .emphasis::before {
	margin-right: .5em; 
	transform: rotate(60deg); 
}
.price_cta .emphasis::after {
	margin-left: .5em; 
	transform: rotate(-60deg);
}
.price_cta  a.btn_cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 256px;
	padding: 1em .5em;
	background-color: #007CFF;
	border-radius: 8px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s 0s ease;
}
.price_cta a.btn_cta::after {
	content: "";
	position: absolute;
	right: 16px;
	width: 10px;
	height: 10px;
	top: 50%;
	border-top-width: 2px;
	border-top-style: solid;
	border-right-width: 2px;
	border-right-style: solid;
	transform: translateY(-50%) rotate(45deg);
}  
.price_cta a:hover.btn_cta {
	opacity: 0.7;
}
.sec_price.seller .price_box { border: 1px solid #7AC41F; }
.sec_price.seller .price_box h3 { background-color: #7AC41F; }
.sec_price.seller .price_cta a.btn_cta {background-color: #7AC41F; }
@media screen and (min-width:64em) {
	.price_box p {
		font-size: 18px;
	}
	price_note {
		font-size: 20px;
	}
	.price_cta .emphasis {
		font-size: 18px;
	}
}

/* 料金CTA */
.sec_asp_cta {
	background-color: #d6eafe;
}
.sec_asp_cta h2 {
	color: #3071b3;
}
.asp_cta_wrap {
	display: flex;
	align-items: center;
	gap: 2em;
	width: 100%;
}
.asp_cta_wrap .btn_area {
	width: calc(100% / 2 - 16px);
}
.asp_cta_wrap .btn_area p.txt {
	text-align: center;
	color: #0067c0;
	font-weight: 700;
	line-height: 1.6rem;
}
.asp_cta_wrap .btn_area a.cta_btn {
	position: relative;
	display: block;
	padding: 10px;
	background-color: #007CFF; 
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
	border-radius: 16px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: background 0.4s ease-in-out, transform 0.2s ease-in-out;
}
.asp_cta_wrap .btn_area.seller a.cta_btn {
	background-color: #7AC41F;
}
.asp_cta_wrap .btn_area a.cta_btn:hover {
	transform: translateY(2px);
	opacity: 0.85;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}
.asp_cta_wrap .btn_area a.cta_btn p {
	font-size: 1rem;
	line-height: 1.6rem;
	color: #fff;
	letter-spacing: 0.05rem;
	vertical-align: middle;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);	
}
.asp_cta_wrap .btn_area a.cta_btn span {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 3rem;
	letter-spacing: 0.3rem;
	color: #fff;
}
.asp_cta_wrap .btn_area a.cta_btn p:before {
	content: '';
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	right: 8px;
	bottom: 0;
	margin: auto;
}
.asp_cta_wrap .btn_area a.cta_btn p:after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 16px;
	bottom: 0;
	margin: auto;
}
@media (max-width: 768px) {
	.asp_cta_wrap {
		position: relative;
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.asp_cta_wrap .btn_area {
		width: 100%;
	}
}

/* FAQ */
#sec-faq { 
	background-color: #fff;
}
.faq-list {
	background-color: #fff;
	padding: 1.25em 1em 1.25em 3.05em;
	border-radius: 6px;
	font-size: 1em;
	text-align: left;
}
.faq-list + .faq-list {
	margin-top: 1em;
}
.faq-list dt {
	position: relative;
	padding-top: 2px;
	line-height: 1.6;
}
.faq-list dd {
	position: relative;
	margin-top: 1.5em;
	padding-top: 2px;
	line-height: 1.6;
}
.faq-list dt::before {
	content: "Q";
	background: #333;
	color: #fff;
	line-height: 1.8;
	top: 0;
	left: -36px;
}
.faq-list dd::before {
	content: "A";
	background: #fff;
	color: #333;	
	border: 1px solid #333;
	line-height: 1.8;
	top: 0;
	left: -36px;
}
.faq-list dt::before,
.faq-list dd::before {
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	margin-right: 1em;
}
.faq-list .bold {
	font-weight: bold;
}
.faq-list a {
	display: inline-block;
	text-decoration: underline;
	color: #2684e2;
	padding-right: 2em;
}
.faq-list a:hover {
	opacity: 0.7;
}
.faq_transition {
	margin: 32px auto 0;
	max-width: 300px;
}
.faq_transition a.btn_faq {
	position: relative;
	display: block;
	padding: 1em .5em;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 8px;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s 0s ease;
}
.faq_transition a.btn_faq::after {
	content: "";
	position: absolute;
	right: 16px;
	width: 10px;
	height: 10px;
	top: 50%;
	border-top-width: 2px;
	border-top-style: solid;
	border-right-width: 2px;
	border-right-style: solid;
	transform: translateY(-50%) rotate(45deg);
}  
.faq_transition a:hover.btn_faq {
	opacity: 0.7;
}
@media screen and (min-width:48em) {
	.faq-list {
		padding: 1.25em 1em 1.25em 3.625em;
	}
	.faq-list dd {
		margin-top: 1.25em;
	}
	.faq-list dt::before {
		top: 0;
		left: -40px;
	}
	.faq-list dd::before {
		top: 0;
		left: -40px;
	}
}
@media screen and (min-width:64em) {
	.faq-list {
		padding: 1.5em 1.5em 1.5em 4.75em;
	}
	.faq-list dt {
		padding-top: 6px;
	}
	.faq-list dd {
		margin-top: 1.5em;
		padding-top: 6px;
	}
	.faq-list dt::before {
		line-height: 2;
		top: 0;
		left: -50px;
	}
	.faq-list dd::before {
		line-height: 2;
		top: 0;
		left: -50px;
	}
	.faq-list dt::before,
	.faq-list dd::before {
		display: block;
		width: 32px;
		height: 32px;
		margin-right: 1.25em;
	}
}

#btn_Pagetop {
	bottom: 120px;
}