/**
 * Business Pages Styles
 *
 * 事業内容ページ専用のスタイル
 *
 * @package Onwords
 */

/* ========================================
   Section Header (共通)
   ======================================== */

.section-header {
	text-align: center;
	margin-top: 0;
	margin-bottom: 48px;
}

.section-header__label {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
	letter-spacing: 0.1em;
	margin-bottom: 16px;
	text-align: center;
}

.section-header__title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
	text-align: center;
	margin: 0;
}

/* ========================================
   Business Hero Section
   ======================================== */

.business-hero-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-bottom: 80px;
}

.business-hero {
	position: relative;
	width: 1280px;
	max-width: calc(100% - 64px);
	margin: 0 32px;
	padding: 116px 40px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	overflow: hidden;
}

.business-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('../images/business/hero/hero-local.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 20px;
	z-index: 0;
}

.business-hero__label {
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1;
	text-align: center;
	margin: 0;
	position: relative;
	z-index: 1;
}

.business-hero__title {
	color: #FFFFFF;
	font-size: 40px;
	font-weight: 700;
	line-height: 64px;
	text-align: center;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* ========================================
   Business List Section
   ======================================== */

.business-list {
	padding: 80px 0 0;
	background-color: #fff;
}

.business-list__container {
	max-width: 1312px;
	margin: 0 auto;
	padding: 0 16px;
}

.business-list__header {
	text-align: center;
	margin-bottom: 48px;
}

.business-list__subtitle {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	color: #333;
	margin-top: 16px;
}

/* ========================================
   Business Section (共通セクションスタイル)
   ======================================== */

.business-section {
	padding: 0 0 80px;
	background-color: #fff;
}

.business-section--gray {
	background-color: #f8f8f8;
}

.business-section__container {
	max-width: 1312px;
	margin: 0 auto;
	padding: 0 16px;
}

.business-section__description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
	margin-top: 24px;
	margin-bottom: 40px;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   Business Hero (トップページヒーロー)
   ======================================== */

.business-hero__description {
	font-size: 18px;
	line-height: 1.8;
	color: #fff;
	margin-top: 24px;
	max-width: 800px;
}

/* ========================================
   Business Cards (事業カード)
   ======================================== */

.business-cards__list {
	display: flex;
	gap: 60px 40px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.business-cards__list li {
	list-style: none;
	width: 368px;
	max-width: calc(50% - 20px);
}

.business-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.business-card__image {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
	background-color: #f0f0f0;
	border-radius: 8px;
	margin-bottom: 16px;
}

.business-card__image--local {
	background-image: url('https://storage.googleapis.com/studio-design-asset-files/projects/1pqDrBZNWj/s-1200x800_v-fms_webp_df73450b-6e71-4610-bb68-1da0e6550d51_small.webp');
}

.business-card__image--inbound {
	background-image: url('https://storage.googleapis.com/studio-design-asset-files/projects/1pqDrBZNWj/s-1152x648_v-fs_webp_0e1fc66c-d727-4f51-97eb-b378e3cb4581_small.webp');
}

.business-card__titles {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 16px;
}

.business-card__subtitle {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0;
	line-height: 1.4;
}

.business-card__title {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin: 0;
	line-height: 1.4;
}

.business-card__link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	background-color: var(--color-primary);
	border-radius: 24px;
	width: 112px;
	height: 48px;
	transition: background-color 0.3s ease;
}

.business-card:hover .business-card__link {
	background-color: var(--color-primary-hover);
}

.business-card__link p {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	line-height: 1.75;
	margin: 0;
}

/* ========================================
   Stats (支援実績)
   ======================================== */

.business-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	text-align: center;
}

.business-stats__number {
	font-size: 48px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 16px;
}

.business-stats__label {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

/* ========================================
   Strengths (強み)
   ======================================== */

.business-strengths {
	display: flex;
	gap: 40px;
}

/* ナビゲーションリスト */
.business-strengths__nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 395px;
	max-width: 100%;
	flex-shrink: 0;
	position: sticky;
	top: 100px;
	align-self: flex-start;
}

.business-strengths__nav-item {
	list-style: none;
	padding: 0;
	margin: -1px 0 0;
	border-bottom: 1px solid #e6e6e6;
}

.business-strengths__nav-item:first-child {
	margin-top: 0;
}

.business-strengths__nav-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 20px 0;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

.business-strengths__nav-link:hover {
	opacity: 0.7;
}

.business-strengths__nav-link.active {
	background-color: rgba(231, 74, 74, 0.05);
}

.business-strengths__nav-link.active .business-strengths__nav-number,
.business-strengths__nav-link.active .business-strengths__nav-title {
	color: var(--color-primary);
	font-weight: 700;
}

.business-strengths__nav-header {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	flex: 1 1 0%;
}

.business-strengths__nav-number {
	font-size: 15px;
	font-weight: 400;
	color: #222;
	line-height: 1.75;
	margin: 0;
}

.business-strengths__nav-title {
	font-size: 15px;
	font-weight: 400;
	color: #222;
	line-height: 1.75;
	margin: 0;
	flex: 1 1 0%;
}

.business-strengths__nav-icon {
	font-size: 16px;
	color: #222;
}

/* コンテンツリスト */
.business-strengths__content-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: -100px 0 0;
	width: 100%;
	max-width: 100%;
}

.business-strengths__content-item {
	list-style: none;
	padding: 100px 0 0;
	margin: 0;
	scroll-margin-top: 100px;
}

.business-strengths__content-wrapper {
	display: flex;
	padding: 50px 32px;
	background-color: #f5f5f5;
	border-radius: 12px;
}

.business-strengths__content-inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 0;
	width: 100%;
}

.business-strengths__content-header {
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 0;
}

.business-strengths__content-title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	line-height: 1.5;
	margin: 0;
	flex: 0 0 auto;
}

.business-strengths__content-number {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background-image: linear-gradient(90deg, var(--color-primary), var(--color-primary));
	padding: 0 24px;
	border-radius: 32px;
	line-height: 1.75;
	margin: 0;
	height: 26px;
	flex-shrink: 0;
}

.business-strengths__content-image {
	position: relative;
	width: 100%;
	height: 320px;
	border-radius: 8px;
}

.business-strengths__content-image::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 8px;
	z-index: 0;
}

.business-strengths__content-image[data-image="strength-1"]::before {
	background-image: url('../images/business/strengths/strength-1.webp');
}

.business-strengths__content-image[data-image="strength-2"]::before {
	background-image: url('../images/business/strengths/strength-2.webp');
}

.business-strengths__content-image[data-image="strength-3"]::before {
	background-image: url('../images/business/strengths/strength-3.webp');
}

/* Inbound Marketing Page - Strengths Images */
.business-strengths__content-image[data-image="inbound-strength-1"]::before {
	background-image: url('../images/business/inboundmarketing/strength_01_fuji.webp');
}

.business-strengths__content-image[data-image="inbound-strength-2"]::before {
	background-image: url('../images/business/inboundmarketing/strength_02_data.webp');
}

.business-strengths__content-image[data-image="inbound-strength-3"]::before {
	background-image: url('../images/business/inboundmarketing/strength_03_staff.webp');
}

.business-strengths__content-description {
	font-size: 15px;
	font-weight: 400;
	color: #333;
	line-height: 1.75;
	margin: 0;
}

/* ========================================
   Services (サービス一覧)
   ======================================== */

.business-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 40px;
}

.business-services__item {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.business-services__header {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.business-services__icon {
	width: 100%;
	max-width: 100px;
	aspect-ratio: 1;
	background-size: cover;
	background-position: 50% 0%;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.business-services__icon[data-icon="service-1"] {
	background-image: url('../images/business/services/service-1.svg');
}

.business-services__icon[data-icon="service-2"] {
	background-image: url('../images/business/services/service-2.svg');
}

.business-services__icon[data-icon="service-3"] {
	background-image: url('../images/business/services/service-3.svg');
}

.business-services__icon[data-icon="service-4"] {
	background-image: url('../images/business/services/service-4.svg');
}

.business-services__icon[data-icon="service-5"] {
	background-image: url('../images/business/services/service-5.svg');
}

/* Inbound Marketing Page - Service Icons */
.business-services__icon[data-icon="inbound-service-1"] {
	background-image: url('../images/business/inboundmarketing/service-1.svg');
}

.business-services__icon[data-icon="inbound-service-2"] {
	background-image: url('../images/business/inboundmarketing/service-2.svg');
}

.business-services__icon[data-icon="inbound-service-3"] {
	background-image: url('../images/business/inboundmarketing/service-3.svg');
}

.business-services__icon[data-icon="inbound-service-4"] {
	background-image: url('../images/business/inboundmarketing/service-4.svg');
}

.business-services__icon[data-icon="inbound-service-5"] {
	background-image: url('../images/business/inboundmarketing/service-5.svg');
}

.business-services__icon[data-icon="inbound-service-6"] {
	background-image: url('../images/business/inboundmarketing/service-6.svg');
}

.business-services__icon[data-icon="inbound-service-7"] {
	background-image: url('../images/business/inboundmarketing/service-7.svg');
}

.business-services__icon[data-icon="inbound-service-8"] {
	background-image: url('../images/business/inboundmarketing/service-8.svg');
}

.business-services__icon[data-icon="inbound-service-9"] {
	background-image: url('../images/business/inboundmarketing/service-9.svg');
}

.business-services__title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	line-height: 25.2px;
	margin: 0;
}

.business-services__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.business-services__subtitle {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	line-height: 30px;
	margin: 0;
}

.business-services__description {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #222;
	margin: 0;
}

/* ========================================
   Business Logos (取引実績ロゴ)
   ======================================== */

.business-logos {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 50px;
	justify-items: center;
	list-style: none;
	padding: 0 0 50px;
	margin: 0;
}

.business-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 206px;
	list-style: none;
}

.business-logos__item:nth-child(8) {
	grid-column: 3;
}

.business-logos__item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ========================================
   Responsive (Mobile)
   ======================================== */

@media screen and (max-width: 1140px) {
	.business-hero {
		width: 90%;
		max-width: 90%;
		margin: 20px 0 0 0;
	}
}

@media screen and (max-width: 840px) {
	.business-hero {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 72px 20px;
		border-radius: 0;
	}

	.business-hero__label {
		font-size: 18px;
	}

	.business-hero__title {
		font-size: 32px;
		line-height: 48px;
	}
}

.inbound-case-study__label,
.inbound-business-record__label,
.inbound-webinar__label,
.inbound-documents__label {
	color: rgb(217, 30, 24);
	font-size: 16px;
	font-weight: 700;
	margin-block-end: 16px;
}

.inbound-case-study__title,
.inbound-business-record__title,
.inbound-webinar__title,
.inbound-documents__title {
	color: rgb(34, 34, 34);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 767px) {
	.business-hero-wrapper {
		margin-bottom: 40px;
	}

	.business-list {
		padding: 40px 0 0;
	}

	.business-section {
		padding: 0 0 40px;
	}

	.section-header {
		margin-bottom: 32px;
	}

	.business-list__header {
		margin-bottom: 32px;
	}

	.business-list__subtitle {
		font-size: 16px;
	}

	.section-header__label {
		font-size: 14px;
	}

	.section-header__title {
		font-size: 28px;
	}

	.inbound-case-study__label,
	.inbound-business-record__label,
	.inbound-webinar__label,
	.inbound-documents__label {
		font-size: 14px;
		margin-block-end: 8px;
	}

	.inbound-case-study__title,
	.inbound-business-record__title,
	.inbound-webinar__title,
	.inbound-documents__title {
		font-size: 28px;
	}

	.inbound-strengths__header,
	.inbound-services__header,
	.inbound-case-study__header,
	.inbound-business-record__header,
	.inbound-webinar__header,
	.inbound-documents__header {
		margin-block-end: 32px;
	}

	.business-cards__list {
		gap: 40px;
	}

	.business-cards__list li {
		width: 100%;
		max-width: 100%;
	}

	.business-card__image {
		height: 240px;
	}

	.business-card__subtitle {
		font-size: 18px;
	}

	.business-card__title {
		font-size: 18px;
	}

	.business-section__description {
		font-size: 14px;
		margin-top: 20px;
		margin-bottom: 32px;
		text-align: left;
	}

	.business-logos {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 16px;
		padding: 0;
	}

	.business-logos__item {
		width: 100%;
		height: auto;
		aspect-ratio: 146 / 206;
	}

	.business-logos__item:nth-child(8) {
		grid-column: auto;
	}

	.business-strengths {
		flex-direction: column;
		gap: 0;
	}

	.business-strengths__nav {
		width: 100%;
		position: static;
	}

	.business-strengths__content-list {
		margin-top: 0;
	}

	.business-strengths__content-item {
		padding-top: 60px;
		scroll-margin-top: 60px;
	}

	.business-strengths__content-wrapper {
		padding: 32px 16px;
	}

	.business-strengths__content-title {
		font-size: 24px;
	}

	.business-strengths__content-image {
		height: 240px;
	}

	.business-services {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.business-services__item {
		gap: 24px;
	}

	.business-services__header {
		gap: 16px;
		justify-content: center;
	}

	.business-services__icon {
		max-width: 80px;
	}
}

/* ==========================================================================
   Inbound Marketing Page Styles
   ========================================================================== */

/* Inbound Hero Section */
/* ==========================================================================
   Inbound Hero Section
   ========================================================================== */

.inbound-hero {
	display: flex;
	place-content: center;
	align-items: center;
	width: 1280px;
	max-width: 100%;
	padding: 50px 0 0;
	margin: 0 auto;
	gap: 50px;
}

.inbound-hero__container {
	display: flex;
	place-content: center flex-start;
	align-items: center;
	flex-flow: row;
	gap: 40px;
	width: 1280px;
	max-width: calc(100% - 80px);
	margin: 0 40px;
	padding: 0;
	height: auto;
}

.inbound-hero__content {
	display: flex;
	flex-direction: column;
	place-content: flex-start;
	align-items: flex-start;
	flex: 0 0 auto;
	gap: 32px;
	width: calc(50% - 20px);
	max-width: calc(50% - 20px);
	height: auto;
	padding: 0;
}

.inbound-hero__title {
	color: rgb(34, 34, 34);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	font-feature-settings: "palt";
	text-align: left;
	margin: 0;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.inbound-hero__description {
	color: rgb(34, 34, 34);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	font-feature-settings: "palt";
	text-align: left;
	margin: 0;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.inbound-hero__image {
	flex: 0 0 auto;
	width: calc(50% - 20px);
	max-width: calc(50% - 20px);
	height: auto;
	border-radius: 8px;
}

/* ==========================================================================
   Inbound Partners Carousel Section
   ========================================================================== */

.inbound-partners-carousel {
	overflow: hidden;
	padding: 60px 0;
	background-color: #fff;
}

.inbound-partners-carousel__track {
	display: flex;
	gap: 60px;
	animation: scroll-infinite 40s linear infinite;
	width: fit-content;
}

.inbound-partners-carousel__slide {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
}

.inbound-partners-carousel__slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@keyframes scroll-infinite {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* Pause animation on hover */
.inbound-partners-carousel__track:hover {
	animation-play-state: paused;
}

/* ==========================================================================
   Inbound Strengths Section
   ========================================================================== */

.inbound-strengths {
	max-width: 1312px;
	margin: 80px auto;
	padding: 0 16px;
}

.inbound-strengths__header {
	text-align: center;
	margin-block-end: 60px;
}

.inbound-strengths__label {
	color: rgb(217, 30, 24);
	font-size: 14px;
	font-weight: 600;
	margin-block-end: 16px;
}

.inbound-strengths__title {
	color: rgb(34, 34, 34);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.inbound-strengths__content {
	display: flex;
	gap: 40px;
}

.inbound-strengths__nav {
	flex: 0 0 280px;
	position: sticky;
	top: 100px;
	align-self: flex-start;
}

.inbound-strengths__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.inbound-strengths__nav-item {
	margin: 0;
}

.inbound-strengths__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	color: rgb(34, 34, 34);
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.inbound-strengths__nav-link:hover {
	border-left-color: rgb(217, 30, 24);
	background-color: rgba(217, 30, 24, 0.05);
}

.inbound-strengths__nav-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.inbound-strengths__nav-number {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	color: rgb(85, 85, 85);
}

.inbound-strengths__nav-title {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.inbound-strengths__nav-icon {
	font-size: 20px;
	color: rgb(85, 85, 85);
	flex-shrink: 0;
}

.inbound-strengths__details {
	flex: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.inbound-strengths__detail {
	margin: 0;
}

.inbound-strengths__detail-layout {
	display: flex;
	gap: 40px;
}

.inbound-strengths__detail-left {
	flex: 1;
}

.inbound-strengths__detail-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-block-end: 24px;
}

.inbound-strengths__detail-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	color: rgb(34, 34, 34);
	order: 1;
}

.inbound-strengths__detail-number {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	color: rgb(34, 34, 34);
	opacity: 0.8;
	order: 2;
}

.inbound-strengths__detail-image {
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	margin-block-end: 24px;
}

.inbound-strengths__detail-description {
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
	color: rgb(34, 34, 34);
}

/* Inbound Services Section */
.inbound-services {
	max-width: 1312px;
	margin: 80px auto;
	padding: 0 16px;
}

.inbound-services__header {
	text-align: center;
	margin-block-end: 60px;
}

.inbound-services__label {
	color: rgb(217, 30, 24);
	font-size: 14px;
	font-weight: 600;
	margin-block-end: 16px;
}

.inbound-services__title {
	color: rgb(34, 34, 34);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.inbound-services__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.inbound-services__item {
	padding: 32px;
	background-color: #f9f9f9;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inbound-services__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.inbound-services__item-title {
	font-size: 18px;
	font-weight: 700;
	margin-block-end: 16px;
	color: rgb(34, 34, 34);
}

.inbound-services__item-description {
	font-size: 14px;
	line-height: 1.75;
	color: rgb(85, 85, 85);
	margin: 0;
}

/* Inbound Case Study, Business Record, Webinar, Documents - Common Styles */
.inbound-case-study,
.inbound-business-record,
.inbound-webinar,
.inbound-documents {
	margin: 80px 0;
	padding: 0;
}

.inbound-documents {
	margin: 80px 0 0;
}

.inbound-case-study__container,
.inbound-business-record__container,
.inbound-webinar__container,
.inbound-documents__container {
	max-width: 1312px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 1141px) {
	.inbound-case-study__header,
	.inbound-business-record__header,
	.inbound-webinar__header,
	.inbound-documents__header {
		margin-block-end: 60px;
	}
}

.inbound-case-study__header,
.inbound-business-record__header,
.inbound-webinar__header,
.inbound-documents__header {
	text-align: center;
	margin-block-end: 60px;
}

.inbound-case-study__label,
.inbound-business-record__label,
.inbound-webinar__label,
.inbound-documents__label {
	color: rgb(217, 30, 24);
	font-size: 16px;
	font-weight: 600;
	margin-block-end: 16px;
}

.inbound-case-study__title,
.inbound-business-record__title,
.inbound-webinar__title,
.inbound-documents__title {
	color: rgb(34, 34, 34);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

/* Inbound Case Study Section */
/* 導入事例セクションは共通の .case-card スタイルを使用 */

/* Inbound Business Record Section */
.inbound-business-record__list {
	list-style: none;
	margin: 0;
	padding: 0 0 50px;
	display: flex;
	gap: 60px 40px;
	justify-content: center;
	align-items: flex-start;
}

.inbound-business-record__list-inner {
	list-style: none;
	margin: 0;
	padding: 10px;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.inbound-business-record__item {
	margin: 0;
	display: flex;
	width: 99px;
	height: 99px;
	padding: 0;
	background-color: transparent;
	border: none;
}

.inbound-business-record__logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.inbound-business-record__logo {
	width: 99px;
	height: 99px;
	object-fit: fill;
	border-radius: 8px;
}

/* Inbound Webinar Section */
.inbound-webinar__list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.inbound-webinar__item {
	margin: 0;
}

.inbound-webinar__link {
	display: flex;
	flex-direction: column;
	background-color: rgb(255, 255, 255);
	border-radius: 8px;
	box-shadow: rgba(18, 18, 18, 0.04) 1px 3px 18px 0px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inbound-webinar__link:hover {
	transform: translateY(-4px);
	box-shadow: rgba(18, 18, 18, 0.08) 1px 6px 24px 0px;
}

.inbound-webinar__image {
	width: 100%;
	overflow: hidden;
}

.inbound-webinar__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.inbound-webinar__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.inbound-webinar__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.inbound-webinar__date {
	font-size: 14px;
	font-weight: 500;
	color: rgb(34, 34, 34);
}

.inbound-webinar__status {
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	border-radius: 4px;
	font-weight: 500;
}

.inbound-webinar__status--upcoming {
	background-color: rgb(217, 30, 24);
	color: #fff;
}

.inbound-webinar__status--ended {
	background-color: #e0e0e0;
	color: rgb(85, 85, 85);
}

.inbound-webinar__target {
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	background-color: #e0e0e0;
	border-radius: 4px;
	color: rgb(85, 85, 85);
	font-weight: 500;
}

.inbound-webinar__item-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: rgb(34, 34, 34);
	margin: 0;
}

/* Inbound Documents Section */
.inbound-documents__list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	display: flex;
	justify-content: center;
}

.inbound-documents__item {
	margin: 0;
	max-width: 640px;
	width: 100%;
}

.inbound-documents__link {
	display: flex;
	flex-direction: column;
	background-color: rgb(255, 255, 255);
	border-radius: 8px;
	box-shadow: rgba(18, 18, 18, 0.04) 1px 3px 18px 0px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inbound-documents__link:hover {
	transform: translateY(-4px);
	box-shadow: rgba(18, 18, 18, 0.08) 1px 6px 24px 0px;
}

.inbound-documents__image {
	width: 100%;
	overflow: hidden;
}

.inbound-documents__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.inbound-documents__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.inbound-documents__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.inbound-documents__date {
	font-size: 14px;
	font-weight: 500;
	color: rgb(34, 34, 34);
}

.inbound-documents__target {
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	background-color: #e0e0e0;
	border-radius: 4px;
	color: rgb(85, 85, 85);
	font-weight: 500;
}

.inbound-documents__item-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: rgb(34, 34, 34);
	margin: 0;
}

/* Common Button Wrapper */
.inbound-case-study__button-wrapper,
.inbound-webinar__button-wrapper,
.inbound-documents__button-wrapper {
	text-align: center;
	margin-top: 40px;
}

/* Common No Posts Message */
.inbound-case-study__no-posts,
.inbound-webinar__no-posts,
.inbound-documents__no-posts {
	text-align: center;
	color: rgb(153, 153, 153);
	font-size: 14px;
}

/* Responsive Styles for Inbound Marketing Page */
@media screen and (max-width: 840px) {
	.inbound-hero {
		padding: 20px 16px 0;
	}

	.inbound-hero__container {
		flex-direction: column;
		gap: 50px;
	}

	.inbound-hero__content {
		flex: 1;
		width: 100%;
		text-align: center;
		align-items: center;
	}

	.inbound-hero__image {
		flex: 1;
		width: 100%;
	}

	.inbound-strengths__nav {
		display: none;
	}

	.inbound-strengths__content {
		flex-direction: column;
	}

	.inbound-services__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.inbound-case-study__list {
		grid-template-columns: 1fr;
	}

	.inbound-webinar__list {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 767px) {
	.inbound-strengths,
	.inbound-services {
		margin: 40px auto;
	}

	.inbound-case-study,
	.inbound-business-record,
	.inbound-webinar,
	.inbound-documents {
		margin: 40px 0;
	}

	.inbound-documents {
		margin: 40px 0 0;
	}
}

@media screen and (max-width: 540px) {
	.inbound-hero__container {
		gap: 40px;
	}

	.inbound-hero__content {
		gap: 24px;
	}

	.inbound-hero__title {
		font-size: 24px;
	}

	.inbound-hero__description {
		font-size: 14px;
	}

	.inbound-hero__image {
		border-radius: 6px;
	}

	.inbound-partners-carousel__slide {
		width: 100px;
		height: 100px;
	}

	.inbound-strengths__detail {
		min-height: 300px;
		padding: 40px 24px;
	}

	.inbound-strengths__detail-number {
		font-size: 36px;
	}

	.inbound-strengths__detail-title {
		font-size: 20px;
	}

	.inbound-services__list {
		grid-template-columns: 1fr;
	}

	.inbound-business-record__item {
		width: 52px;
		height: 52px;
	}

	.inbound-business-record__logo {
		width: 52px;
		height: 52px;
		border-radius: 6px;
	}
}
