/* ========================================
   BP事業ページ専用スタイル
   styles.cssで定義されている共通クラスは使用
   全てのスタイルは .service_bp 配下で定義
   ======================================== */

/* セクション共通 */
.service_bp section {
	/* padding削除: .cont__innerと重複するため */
}

/* 概要セクション */
.service_bp .service__overview {
	background-color: transparent;
}

.service_bp .service__overview .cont__txt--lead {
	line-height: 2;
}

@media screen and (max-width: 640px) {
	.service_bp .service__overview .cont__txt--lead {
		line-height: 1.8;
		text-align: left;
	}
}

.service_bp .bp-overview__img-wrapper {
	max-width: 1000px;
	margin: 60px auto 0;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-overview__img-wrapper {
		margin-top: 8vw;
	}
}

.service_bp .bp-overview__img-wrapper img {
	width: 100%;
	height: auto;
}

/* 選ばれる理由セクション */
.service_bp .sec__assessment {
	background-color: #f9f5f2;
}

.service_bp .bp-features__wrapper {
	margin-top: 60px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__wrapper {
		margin-top: 8vw;
	}
}

.service_bp .bp-features__list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.service_bp .bp-features__list {
		flex-direction: column;
		gap: 6vw;
	}
}

.service_bp .bp-features__item {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 1 1 calc(50% - 20px);
	min-width: 300px;
}

.service_bp .bp-features__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__item:hover {
		transform: none;
	}
}

.service_bp .bp-features__item--image {
	width: 100%;
	line-height: 0;
}

.service_bp .bp-features__item--image img {
	width: 100%;
	height: auto;
	display: block;
}

.service_bp .bp-features__item--header {
	padding: 20px 30px 0;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__item--header {
		padding: 4vw 5vw 0;
	}
}

.service_bp .bp-features__item--caption {
	display: block;
	font-size: 24px;
	font-weight: bold;
	color: #DF0000;
	margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__item--caption {
		font-size: 4.2vw;
		margin-bottom: 2vw;
	}
}

.service_bp .bp-features__item--accent {
	display: block;
	width: 40px;
	height: 1px;
	background-color: #DF0000;
	margin: 0 auto 15px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__item--accent {
		margin-bottom: 3vw;
	}
}

.service_bp .bp-features__item--txt {
	line-height: 1.7;
	color: #333;
	padding: 0 30px 30px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-features__item--txt {
		padding: 0 5vw 5vw;
	}
}

/* 技術領域セクション */
.service_bp .sec__bp-tech {
	background-color: #fff;
	overflow: hidden;
}

.service_bp .sec__bp-tech .cont__inner--full {
	max-width: 1840px;
	width: 95%;
}

.service_bp .bp-tech__wrapper {
	margin: 60px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	justify-content: center;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__wrapper {
		margin-top: 8vw;
		gap: 3%;
	}
}

.service_bp .bp-tech__block {
	flex: 0 1 23.5%;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service_bp .bp-tech__block.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* タブレット: 2カラム */
@media screen and (max-width: 1024px) and (min-width: 641px) {
	.service_bp .bp-tech__block {
		flex: 0 1 48.5%;
	}
}

/* スマホ: 2カラム */
@media screen and (max-width: 640px) {
	.service_bp .sec__bp-tech .cont__inner--full {
		max-width: 100%;
		width: 100%;
		padding-left: 4vw;
		padding-right: 4vw;
	}
	
	.service_bp .bp-tech__block {
		flex: 0 1 48.5%;
	}
}

/* コンテンツ部分 */
.service_bp .bp-tech__content {
	height: 100%;
	padding: 30px 25px;
	background-color: #f9f5f2;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service_bp .bp-tech__content:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__content {
		padding: 4vw 3vw;
	}
	
	.service_bp .bp-tech__content:hover {
		transform: translateY(-2px);
	}
}

.service_bp .bp-tech__icon {
	width: 100%;
	height: auto;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	padding: 12px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__icon {
		margin-bottom: 3vw;
		padding: 2vw;
	}
}

.service_bp .bp-tech__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service_bp .bp-tech__sttl {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #DF0000;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__sttl {
		font-size: 4.8vw;
		margin-bottom: 3vw;
	}
}

.service_bp .bp-tech__txt {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 8px;
	color: #333;
	text-align: center;
}

.service_bp .bp-tech__txt:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__txt {
		font-size: 13px;
		margin-bottom: 2vw;
	}
}

.service_bp .bp-tech__list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
}

.service_bp .bp-tech__item {
	padding-left: 1.2em;
	position: relative;
	margin-bottom: 8px;
	line-height: 1.6;
	color: #333;
	font-size: 14px;
}

.service_bp .bp-tech__item:last-child {
	margin-bottom: 0;
}

.service_bp .bp-tech__item::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #DF0000;
	font-weight: bold;
}

.service_bp .bp-tech__item-sub {
	font-size: 12px;
	color: #666;
	display: inline-block;
	margin-top: 2px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-tech__item {
		font-size: 13px;
		margin-bottom: 2vw;
		padding-left: 1em;
	}
	
	.service_bp .bp-tech__item-sub {
		font-size: 13px;
	}
}

/* フローセクション */
.service_bp .sec__flow {
	background-color: #f9f5f2;
}

.service_bp .bp-flow__wrapper {
	max-width: 1000px;
	margin: 60px auto 0;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__wrapper {
		margin-top: 8vw;
	}
}

.service_bp .bp-flow__item {
	margin-bottom: 60px;
	padding: 40px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: relative;
	display: flex;
	align-items: center;
	gap: 40px;
}

@media screen and (max-width: 768px) {
	.service_bp .bp-flow__item {
		flex-direction: column;
		gap: 10px;
		padding: 30px 20px;
		margin-bottom: 8vw;
	}
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__item {
		padding: 6vw 4vw;
	}
}

.service_bp .bp-flow__item:last-child {
	margin-bottom: 0;
}

.service_bp .bp-flow__item::after {
	content: "↓";
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 28px;
	color: #DF0000;
	font-weight: bold;
}

.service_bp .bp-flow__item:last-child::after {
	display: none;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__item::after {
		bottom: -6vw;
		font-size: 6vw;
	}
}

.service_bp .bp-flow__icon {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.service_bp .bp-flow__icon {
		width: 160px;
		height: 160px;
	}
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__icon {
		width: 40vw;
		height: 40vw;
	}
}

.service_bp .bp-flow__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service_bp .bp-flow__content {
	flex: 1;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__content {
		text-align: center;
	}
}

.service_bp .bp-flow__number {
	display: inline-block;
	padding: 8px 20px;
	background-color: #DF0000;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
	margin-bottom: 15px;
	font-size: 14px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__number {
		padding: 2vw 4vw;
		margin-bottom: 3vw;
		font-size: 3vw;
	}
}

.service_bp .bp-flow__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #333;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__title {
		font-size: 4.5vw;
		margin-bottom: 2vw;
	}
}

.service_bp .bp-flow__duration {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-flow__duration {
		font-size: 3.2vw;
		margin-bottom: 3vw;
		text-align: center;
	}
}

.service_bp .bp-flow__desc {
	line-height: 1.8;
	color: #333;
}

/* 料金セクション */
.service_bp .sec__bp-pricing {
	background-color: #f5f5f5;
	background-image: url("../images/service_bp/pricing_bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.service_bp .sec__bp-pricing .cont__inner {
	position: relative;
	z-index: 1;
}

.service_bp .bp-pricing__wrapper {
	max-width: 1000px;
	margin: 60px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

@media screen and (max-width: 768px) {
	.service_bp .bp-pricing__wrapper {
		flex-direction: column;
		margin-top: 8vw;
		gap: 5vw;
	}
}

.service_bp .bp-pricing__block {
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	flex: 1 1 calc(33.333% - 20px);
	min-width: 280px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_bp .bp-pricing__block:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 640px) {
	.service_bp .sec__bp-pricing {
		background-attachment: scroll;
	}
	
	.service_bp .bp-pricing__block {
		padding: 5vw;
	}
	
	.service_bp .bp-pricing__block:hover {
		transform: translateY(-2px);
	}
}

.service_bp .bp-pricing__icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-pricing__icon {
		width: 12vw;
		height: 12vw;
		margin-bottom: 3vw;
	}
}

.service_bp .bp-pricing__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service_bp .bp-pricing__sttl {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #DF0000;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-pricing__sttl {
		font-size: 4vw;
		margin-bottom: 3vw;
	}
}

.service_bp .bp-pricing__txt {
	line-height: 1.7;
	color: #333;
}

.service_bp .bp-pricing__list {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.service_bp .bp-pricing__item {
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 12px;
	line-height: 1.7;
}

.service_bp .bp-pricing__item::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #DF0000;
	font-weight: bold;
}

.service_bp .bp-pricing__note {
	font-size: 14px;
	color: #666;
	margin-top: 15px;
	line-height: 1.6;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-pricing__note {
		font-size: 3.2vw;
		margin-top: 3vw;
	}
}

/* FAQセクション */
.service_bp .sec__bp-faq {
	background-color: #f9f5f2;
}

.service_bp .bp-faq__wrapper {
	max-width: 900px;
	margin: 60px auto 0;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-faq__wrapper {
		margin-top: 8vw;
	}
}

.service_bp .bp-faq__item {
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 640px) {
	.service_bp .bp-faq__item {
		margin-bottom: 4vw;
	}
}

.service_bp .bp-faq__question {
	display: flex;
	align-items: flex-start;
	padding: 25px 30px;
	background-color: #fff;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-faq__question {
		padding: 5vw;
	}
}

.service_bp .bp-faq__answer {
	display: flex;
	align-items: flex-start;
	padding: 25px 30px;
	background-color: #f9f5f2;
	border-top: 1px solid #e0e0e0;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-faq__answer {
		padding: 5vw;
	}
}

.service_bp .bp-faq__icon {
	font-size: 18px;
	font-weight: bold;
	color: #DF0000;
	margin-right: 15px;
	flex-shrink: 0;
}

.service_bp .bp-faq__icon--a {
	color: #333;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-faq__icon {
		font-size: 4vw;
		margin-right: 3vw;
	}
}

.service_bp .bp-faq__desc {
	flex: 1;
	font-weight: bold;
	line-height: 1.7;
}

.service_bp .bp-faq__desc--a {
	font-weight: normal;
}

/* お問い合わせ・協業パートナー募集セクション */
.service_bp .sec__bp-contact {
	background: linear-gradient(135deg, #DF0000 0%, #8B0000 100%);
	position: relative;
}

.service_bp .sec__bp-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.service_bp .sec__bp-contact .cont_ttl,
.service_bp .sec__bp-contact .cont_ttl .en {
	color: #fff;
}

.service_bp .bp-contact__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 60px auto 0;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1024px) {
	.service_bp .bp-contact__wrapper {
		flex-direction: column;
		gap: 6vw;
		margin-top: 8vw;
	}
}

.service_bp .bp-contact__box {
	padding: 40px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(50% - 20px);
	min-width: 320px;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-contact__box {
		padding: 6vw;
	}
}

.service_bp .bp-contact__box-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #DF0000;
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 2px solid #DF0000;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-contact__box-title {
		font-size: 4.5vw;
		margin-bottom: 4vw;
		padding-bottom: 3vw;
	}
}

.service_bp .bp-contact__box-desc {
	line-height: 1.8;
	margin-bottom: 25px;
	color: #333;
	flex-grow: 1;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-contact__box-desc {
		margin-bottom: 5vw;
	}
}

.service_bp .bp-contact__list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	flex-grow: 1;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-contact__list {
		margin-bottom: 5vw;
	}
}

.service_bp .bp-contact__item {
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 12px;
	line-height: 1.7;
	font-size: 15px;
}

.service_bp .bp-contact__item::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #DF0000;
	font-weight: bold;
}

@media screen and (max-width: 640px) {
	.service_bp .bp-contact__item {
		margin-bottom: 2.5vw;
		font-size: 3.4vw;
	}
}

/* BP専用ボタン */
.service_bp .btn-primary {
	display: block;
	padding: 18px 40px;
	background-color: #DF0000;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(223, 0, 0, 0.2);
	text-align: center;
}

.service_bp .btn-primary:hover {
	background-color: #b00000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(223, 0, 0, 0.3);
}

@media screen and (max-width: 640px) {
	.service_bp .btn-primary {
		padding: 4vw 8vw;
		font-size: 3.6vw;
	}
	
	.service_bp .btn-primary:hover {
		transform: none;
	}
}

.service_bp .btn-secondary {
	display: block;
	padding: 18px 40px;
	background-color: #fff;
	color: #DF0000;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	border: 2px solid #DF0000;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(223, 0, 0, 0.1);
	text-align: center;
}

.service_bp .btn-secondary:hover {
	background-color: #DF0000;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(223, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
	.service_bp .btn-secondary {
		padding: 4vw 8vw;
		font-size: 3.6vw;
	}
	
	.service_bp .btn-secondary:hover {
		transform: none;
	}
}