
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

.section {
	width: 100%;
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Hero Section */
.hero {
	background: #f5f5f5;
	padding: 60px 40px;
}

.hero-content {
	display: flex;
	align-items: center;
	max-width: 1200px;
	width: 100%;
}

.hero-image img {
	flex: 1;
	max-width: 100%;
	width: 100%;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-text {
	flex: 1;
	text-align: center;
}

.hero-quote {
	font-size: 50px;
	color: #000000;
	font-family: 'DIN NEXT', 'DIN Next', 'Arial', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

.hero-company {
	font-size: 35px;
    margin-bottom: 30px;
	font-weight: 300;
	font-family: 'DIN NEXT', 'DIN Next', 'Arial', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

.hero-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
}

/* About Section */
.about {
	background: #1a1a1a;
	color: white;
	text-align: center;
	padding: 80px 40px;
	justify-content: center;
}

.about-title {
	font-size: 32px;
	color: #ccc;
	margin-bottom: 10px;
	font-weight: normal;
}

.about-subtitle {
	font-size: 35px;
	margin-bottom: 40px;
	/* font-weight: bold; */
}

.about-text {
	font-size: 28px;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
}

/* Business Section */
.business {
	background: white;
	padding: 40px 20px;
}

.business-content {
	display: flex;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	gap: 60px;
}

.business-text {
	flex: 1;
}

.business-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 30px;
}

.business-subtitle {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.business-description {
	font-size: 22px;
	line-height: 1.6;
	color: #666;
	text-align: center;
}

.business-image {
	max-width: 100%;
	height: auto;
	flex: 1;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.business-image img {
	flex: 1;
	max-width: 100%;
	width: 100%;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.d2c-text {
	position: absolute;
	font-size: 18px;
	color: white;
}

/* Brands Section */
.brands {
	background: #1a1a1a;
	color: white;
}

.brands-title {
	font-size: 48px;
	font-weight: bold;
	margin-left: 20px;
}

.brands-subtitle {
	font-size: 24px;
	color: #ccc;
	margin-left: 20px;
    margin-bottom: 50px;
}

.brands-grid {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.brand-item {
	text-align: center;
	width: 400px;
}

.brand-image {
		margin-bottom: 15px;
}


.brand-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.brand-name {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.brand-category {
	font-size: 18px;
	color: #ccc;
	margin-bottom: 5px;
}

.brand-status {
	font-size: 18px;
	color: #888;
    margin-bottom: 5px;
}

/* Recruit Section */
.recruit {
	/* background: url('images/logo.png') center center/cover no-repeat; */
	background: #f5f5f5;
	text-align: center;
	padding: 80px 40px;
}

.recruit-title {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 40px;
}

.ceo-position {
	font-size: 28px;
	color: #666;
	margin-bottom: 10px;
}

.ceo-name {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
}

.ceo-quote {
	font-size: 32px;
	color: #666;
}

/* Company Section */
.company {
	background: white;
	padding: 40px 40px;
}

.company-content {
	display: flex;
	align-items: flex-start;
	max-width: 1200px;
	width: 100%;
	gap: 60px;
}

.company-info {
	flex: 1;
}

.company-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
}

.info-table {
	width: 100%;
	font-size: 20px;
	line-height: 1.6;
}

.info-table tr {
	margin-bottom: 8px;
	display: block;
}

.info-label {
	font-weight: bold;
	display: inline-block;
	width: 80px;
	color: #333;
}

.info-value {
	color: #666;
}

.company-image {
	max-width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.company-image img {
	max-width: 100%;
	height: auto;
	flex: 1;
	max-width: 100%;
	width: 100%;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Responsive */
@media (max-width: 768px) {
	.hero-content,
	.business-content,
	.company-content {
		flex-direction: column;
		gap: 60px;
	}
	.brand-item {
		text-align: none;
		width: auto;
	}

	.brands-grid {
		flex-direction: column;
		align-items: center;
	}

	.section {
		padding: 40px 20px;
		min-height: 500px;
		display: block;
	}
	.brands-subtitle {
	font-size: 20px;
	color: #ccc;
    margin-bottom: 10px;
}

	.hero-quote {
		font-size: 30px;
	}
	.hero-image {
		height: auto;
		max-width: 100%;
		width: 100%;
	}
	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}
	.section.brands.pc {
		display: none;
	}
}


@media screen and (min-width: 501px) {
	.section.brands.sp {
		display: none;
	}
	.section.brands.sp {
		display: none;
	}

	 .swiper-button-prev, .swiper-button-next {
    display: none;
  	}
}

.swiper-slide img {
  height: 300px;
  width: 400px;
}