@import '../components/login-drawer.css';
@import '../components/partner-drawer.css';

/* === front-page-hiro === */
#hero {
	width: 100%;
	top: clamp(90px, 6.9vw, 120px);
	left: 0;
	position: fixed;
	padding: 0;
	margin: 0;
	z-index: 0;
	overflow: hidden;
}
.hero {
	width: 100%;
	background: #000000 no-repeat padding-box;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 0 20px 80px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-spacer {
	height: clamp(600px, 45.83vw, 880px);
	width: 100%;
	z-index: -1;
}
.hero .hero-content {
	width: 100%;
	height: clamp(600px, 45.83vw, 880px);
	position: relative;
	overflow: hidden;
	border: 1px solid #ffffff;
	border-radius: 20px;
	opacity: 1;
	background-color: #000;
}
.hero-content video {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0; /* Push behind other content if needed */
	pointer-events: none;
	user-select: none;
}
.hero-content .hero-text {
	position: absolute;
	top: 25px;
	right: 45px;
	color: #ffffff;
	text-align: center;
	display: flex;
	width: 132px;
	justify-content: space-between;
	align-items: center;
	z-index: 1; /* Ensure text is above the video */
	font-size: 18px;
	cursor: pointer;
}
.hero-content .hero-text .arrow-icon {
	width: 30px; /* or any size you want */
	height: 30px;
}
.hero-content .hero-icons {
	position: absolute;
	left: 45px;
	bottom: 30px;
	color: #ffffff;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	gap: 35px;
	z-index: 1; /* Ensure text is above the video */
	font-size: 18px;
}
.hero-icons svg {
	display: inline-block;
	transition: transform 0.3s ease;
	cursor: pointer;
}

#about .about {
	background: #000000 no-repeat padding-box;
	color: #ffffff;
	text-align: center;
	height: 800px;
	margin-top: 80px;
	padding: 148px 20px 2rem 20px;
}

#about .about h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	margin-bottom: 100px;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	opacity: 1;
}
#about .about p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 100;
	font-size: clamp(16px, 1.2vw, 18px);
	margin-bottom: 30px;
	letter-spacing: 1px;
	opacity: 1;
	line-height: 3rem;
}

#about .about .btn-wrapper {
	margin-top: 80px;
}

/* === video-area === */
.video-area {
	background: #ffffff no-repeat padding-box;
	color: #000000;
	text-align: center;
	padding-top: clamp(60px, 7.8vw, 150px);
	padding-bottom: clamp(60px, 7.8vw, 150px);
}
.video-area .video-wrapper {
	width: clamp(320px, 70vw, 1340px);
	height: auto;
	/* border: #707070 1px solid; */
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 auto;
}

.video-area .video-wrapper iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}

.video-area .video-wrapper img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}
.video-area h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
	font-weight: bold;
	/* font-weight: 300;
	font-size: clamp(0.8em, 1.5vw, 1.2rem); */
	opacity: 1;
	color: #000000;
}

/* === products-area === */
.products-area {
	background: #ffffff no-repeat padding-box;
	padding: 5px 40px;
}

.products-area .products-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 20px;
}

.products-area .products-header h2 {
	color: #000000;
	opacity: 1;
	margin-bottom: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
}

.products-area .grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%; /* Match parent width */
	margin: 0 auto;
	box-sizing: border-box;
}

.products-area .item {
	text-align: center;
	border-radius: 20px;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}

.products-area .item .pc-block {
	position: relative;
	overflow: hidden;
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #9f9f9f 0%, #ffffff 50%, #444444 100%);
	pointer-events: none;
	z-index: 1;
	mix-blend-mode: multiply;
}

.products-area .item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
	mix-blend-mode: multiply;
	position: relative;
	z-index: 0;
}

.products-area .item:hover img {
	transform: scale(1.05);
}

.products-area .item:hover .product-logo img {
	transform: none;
}

.products-area .item .product-title {
	position: absolute;
	top: 12px;
	left: 17px;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.8);
	width: 160px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
}
.products-area .item .product-title h3 {
	font-family: 'Noto Serif JP', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 22px;
	color: #000000;
	margin-bottom: 2px;
}
.products-area .item .product-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 23px 40px;
	z-index: 2;
}
.products-area .item .product-info .product-logo {
	width: clamp(140px, 9.7vw, 186px);
	height: auto;
}
.products-area .item .product-info .product-btn-wrapper .btn-style {
	width: clamp(190px, 13vw, 250px);
}

.products-area
	.item
	.product-info
	.product-btn-wrapper
	.btn-style
	.btn-style-text {
	margin-left: clamp(20px, 1.8vw, 34px);
}

/* === rd-area === */
.rd-area {
	background: #ffffff no-repeat padding-box;
	padding: 150px 0;
	position: relative;
}
.rd-area .rd-wrapper {
	position: absolute;
	right: 290px;
	top: 220px;
}

.rd-area .rd-header {
	display: flex;
	align-items: center;
	justify-content: end;
	margin-bottom: 20px;
	gap: 20px;
}

.rd-area .rd-header h2 {
	color: #000000;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}

.rd-area .rd-wrapper .rd-content {
	width: 800px;
	height: 386px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000000;
	padding: 30px 40px;
	border-radius: 16px;
}

.rd-area .rd-wrapper .rd-content h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 40px;
	line-height: 60px;
	margin-bottom: 40px;
	text-align: center;
	color: #ffffff;
}

/* === sdg-area === */
.sdg-area {
	background: #ffffff no-repeat padding-box;
	padding: 30px 0;
	position: relative;
	text-align: right;
	padding-bottom: 100px;
}
.sdg-area .sdg-wrapper {
	position: absolute;
	left: 290px;
	top: 90px;
}

.sdg-area .sdg-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 20px;
	gap: 20px;
}

.sdg-area .sdg-header h2 {
	color: #000000;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}

.sdg-area .sdg-wrapper .sdg-content {
	width: 800px;
	height: 386px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000000;
	padding: 30px 40px;
	border-radius: 16px;
}

.sdg-area .sdg-wrapper .sdg-content h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 40px;
	line-height: 60px;
	margin-bottom: 40px;
	text-align: center;
	color: #ffffff;
}
/* === topics-area ===*/
.topics-area {
	background: #f5f5f5 no-repeat padding-box;
	padding: 80px 0 80px clamp(120px, 15.1vw, 290px);
	position: relative;
}

.topics-area .topics-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 40px;
	gap: 20px;
}
.topics-area .topics-header h2 {
	color: #000000;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}
.topics-area .topics-wrapper {
	position: relative;
	width: 100%;
	--sb-h: 15px;
	--sb-end-gap: clamp(120px, 15.1vw, 290px);
	--arrow-space: 26px;
	--arrow-pad: 6px;
	--sb-track: rgba(0, 0, 0, 0.2);
	--sb-thumb: rgba(0, 0, 0, 0.55);
}
.topics-area .topics-wrapper::before,
.topics-area .topics-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	pointer-events: none;
	z-index: 5;
	transform: translateY(calc((var(--sb-h) - 14px) / -2));
}

.topics-area .topics-wrapper::before {
	left: var(--arrow-pad);
	border-width: 7px 9px 7px 0;
	border-color: transparent var(--sb-thumb) transparent transparent;
}

.topics-area .topics-wrapper::after {
	right: calc(var(--sb-end-gap) + var(--arrow-pad));
	border-width: 7px 0 7px 9px;
	border-color: transparent transparent transparent var(--sb-thumb);
}
.topics-scroll {
	list-style: none;
	margin: 0;
	overflow-x: scroll;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	padding-bottom: 18px;
	padding-right: clamp(98px, calc(-106px + 15.9375vw), 200px);
}
.topics-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 18px;
}

.topics-scroll::-webkit-scrollbar {
	height: var(--sb-h);
}

.topics-scroll::-webkit-scrollbar-track {
	background: var(--sb-track);
	border-radius: 999px;
	margin-left: var(--arrow-space);
	margin-right: calc(var(--sb-end-gap) + var(--arrow-space));
}

.topics-scroll::-webkit-scrollbar-thumb {
	background: var(--sb-thumb);
	border-radius: 999px;
}

.topics-scroll::-webkit-scrollbar-track-piece:end {
	margin-right: 0;
}
.topic-card {
	width: clamp(300px, calc(214px + 10.83vw), 422px);
	overflow: hidden;
	flex-shrink: 0;
}

.topic-card img {
	width: 100%;
	height: clamp(190px, calc(147px + 6.09vw), 264px);
	object-fit: cover;
	object-position: center;
	border-radius: 15px;
}
.topic-desc {
	display: flex;
	gap: 30px;
	padding: 16px 0 0 0;
}

.topic-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
}

.topic-date,
.topic-cat {
	font-size: clamp(12px, calc(8px + 0.42vw), 16px);
	color: #333333;
	line-height: 1;
}

.topic-cat {
	background: #000;
	color: #fff;
	padding: 6px 6px;
	width: 120px;
	text-align: center;
}

.topic-text {
	padding: 10px 50px 15px 0;
	font-size: clamp(14px, calc(10px + 0.52vw), 20px);
	line-height: 1.6;
	color: #222;
	min-height: 100px;
}
/* === news-area ===*/
.news-area {
	background: #f5f5f5 no-repeat padding-box;
	padding: 80px clamp(120px, 15.1vw, 290px);
	position: relative;
}

.news-area .news-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 40px;
	gap: 20px;
}
.news-area .news-header h2 {
	color: #000000;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}
.news-area .news-wrapper {
	width: 100%;
	min-height: 400px;
	max-width: 980px;
	margin: auto;
	padding-bottom: 40px;
}

.news-item {
	padding: 15px 0;
	border-bottom: 1px solid #161616;
	display: flex;
	gap: 20px;
	align-items: center;
}

.news-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 6px;
}

.news-date {
	font-size: clamp(12px, calc(8px + 0.42vw), 16px);
	color: #333;
}

.news-cat {
	font-size: clamp(13px, calc(9px + 0.47vw), 18px);
	color: #ffffff;
	background: #000000;
	padding: 4px 0;
	border-radius: 15px;
	line-height: 1;
	width: 120px;
	text-align: center;
}

.news-text {
	font-size: clamp(14px, calc(10px + 0.52vw), 20px);
	line-height: 1.6;
	color: #222;
	display: -webkit-box;
	display: -webkit-box;
	/* -webkit-line-clamp: 2; */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-word;
}

/* === partnership-area ===*/
.partnership-area {
	background: #000000 no-repeat padding-box;
	padding: clamp(80px, 7.8vw, 150px) clamp(120px, 15.1vw, 290px);
	position: relative;
	min-height: 710px;
}

.partnership-area .partnership-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 40px;
	gap: 20px;
}
.partnership-area .partnership-header h2 {
	color: #ffffff;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}
.partnership-area .partnership-wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.partnership-area .partnership-image img {
	border-radius: 10px;
}
.partnership-area .partnership-box-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
.partnership-area .partnership-box-wrapper h3 {
	color: #ffffff;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 38px;
	text-align: left;
	margin-bottom: 0;
}

.partnership-area .partnership-box-wrapper h3 span {
	font-size: 12px;
	font-weight: 300;
}

.partnership-area .partnership-right {
	min-height: 300px;
}

.blog-list {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 1.563vw, 30px);
	padding-left: clamp(32px, 4.166vw, 80px);
}

.blog-item {
	display: flex;
	gap: clamp(20px, 1.563vw, 30px);
	align-items: flex-start;
	position: relative;
}

.blog-thumb {
	width: clamp(180px, calc(140px + 8vw), 300px);
	height: clamp(120px, calc(93px + 4.2vw), 175px);
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 10px;
}

.blog-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	height: clamp(120px, calc(93px + 4.2vw), 175px);
}

.blog-title {
	font-size: clamp(16px, calc(13.5px + 0.1875vw), 20px);
	color: #ffffff;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 2px;
	line-height: 1.1;
}

.blog-category {
	font-size: clamp(12px, calc(10.5px + 0.1875vw), 14px);

	color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.1;
}

.blog-item .btn-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
}

.blog-item .btn-wrapper .btn-style {
	width: clamp(180px, calc(140px + 5.729vw), 250px);
	height: clamp(28px, calc(22px + 1.041vw), 42px);
}
.blog-item .btn-style-text {
	font-size: clamp(16px, calc(13.5px + 0.1302vw), 20px);
}

/* === media-area === */
.media-area {
	background: #ffffff no-repeat padding-box;
	padding: clamp(80px, 7.8vw, 150px) clamp(120px, 15.1vw, 290px);
	position: relative;
}
.media-area .media-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 40px;
	gap: 20px;
}
.media-area .media-header h2 {
	color: #000000;
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}
.media-area .media-wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.media-area .media-left {
	border: 1px solid #707070;
	border-radius: 20px;
	background: #f5f5f5;
	overflow: hidden;
	max-width: 100%;
	aspect-ratio: 16 / 9;
}
.media-area .media-left iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: none;
}

.media-area .media-right {
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: start;
	gap: 20px;
	position: relative;
	padding-left: 88px;
}
.media-area .media-right h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 0;
	text-align: left;
	color: #000000;
}
.media-area .media-right p {
	opacity: 1;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Sans JP', serif;
	font-weight: 400;
	font-size: clamp(16px, 1.04vw, 18px);
	line-height: 30px;
	text-align: left;
	margin-bottom: 50px;
	color: #000000;
}

.media-area .media-right .media-btn-wrapper {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

/* === recruit-area === */
.recruit-area {
	padding: 78px clamp(120px, 15.1vw, 290px) 0 clamp(120px, 15.1vw, 290px);
	position: relative;
	height: 700px;
	background: url(../../images/pc/recruit-back-img.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}
.recruit-area .recruit-header {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 20px;
	gap: 20px;
}
.recruit-area .recruit-header h2 {
	opacity: 1;
	color: #000000;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0;
}
.recruit-area .recruit-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}
.recruit-area .recruit-content h2 {
	font-family: 'Noto Serif JP', serif;
	color: #000000;
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	margin-top: 50px;
	margin-bottom: 30px;
}
.recruit-area .recruit-content p {
	opacity: 1;
	color: #000000;
	margin-top: 0;
	letter-spacing: 2.6px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 40px;
	text-align: left;
	font-feature-settings: 'palt';
}

.recruit-area .recruit-btn-wrapper {
	margin-top: 70px;
	margin-left: 240px;
}

.btn-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

/* === Responsive Design === */
@media screen and (max-width: 1600px) {
	/* === partnership-area ===*/
	.partnership-area .partnership-box-wrapper .btn-style {
		width: 200px;
		height: 30px;
	}
	.partnership-area .partnership-box-wrapper .btn-style-text {
		font-size: 14px;
	}
}
@media screen and (max-width: 1440px) {
	.pc-block {
		display: block;
	}
	/* === product-area === */
	.products-area .grid-container {
		gap: 15px;
	}
	.products-area .item .product-info {
		justify-content: center;
		flex-direction: column;
	}
	/* === rd-area === */
	.rd-area img {
		margin-left: -200px;
	}
	.rd-area .rd-wrapper {
		right: 100px;
	}
	.rd-area .rd-wrapper .rd-content {
		width: 700px;
		height: 326px;
	}
	.rd-area .rd-wrapper .rd-content h2 {
		font-size: 32px;
		line-height: 48px;
	} /* === sdg-area === */
	.sdg-area img {
		margin-right: -200px;
	}
	.sdg-area .sdg-wrapper {
		left: 100px;
	}
	.sdg-area .sdg-wrapper .sdg-content {
		width: 700px;
		height: 326px;
	}
	.sdg-area .sdg-wrapper .sdg-content h2 {
		font-size: 32px;
		line-height: 48px;
	}
	/* === partner-area === */
	.partnership-area .partnership-box-wrapper {
		margin-top: 15px;
	}
	.partnership-area .partnership-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.partnership-area .partnership-box-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.partnership-area .partnership-box-wrapper h3 {
		font-size: 16px;
		line-height: 23px;
		margin-bottom: 22px;
	}
	.partnership-area .partnership-box-wrapper .btn-style {
		width: 250px;
		height: 36px;
	}
	.partnership-area .partnership-box-wrapper .btn-style-text {
		font-size: 14px;
	}

	.partnership-area .partnership-right {
		min-height: 300px;
		padding-top: 40px;
	}
	.blog-list {
		padding-left: 0;
	}
	.blog-thumb {
		width: clamp(150px, calc(72.8px + 30vw), 260px);
		height: clamp(85px, calc(48.1px + 16vw), 150px);
	}
	.blog-content {
		height: clamp(85px, calc(48.1px + 16vw), 150px);
	}
	.blog-item .btn-wrapper {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.blog-item .btn-wrapper .btn-style {
		width: clamp(180px, calc(140px + 5.729vw), 250px);
		height: 36px;
	}
	.blog-item .btn-style-text {
		font-size: 14px;
	}

	/* === media-area === */
	.media-area .media-wrapper {
		width: 100%;
		display: flex;
		flex-direction: column;
		grid-template-columns: repeat(2, 1fr);
		gap: 0px;
		max-width: 670px;
		margin: 0 auto;
	}
	.media-area .media-right {
		padding-left: 0px;
	}
	.media-area .media-right h2 {
		margin-top: 30px;
		font-size: 25px;
	}
	.media-area .media-right p {
		margin-bottom: 80px;
	}
	.media-area .media-right .btn-style {
		height: 36px;
	}
	.media-area .media-right .btn-style-text {
		font-size: 14px;
	}
	/* === recruit-area === */
	.recruit-area .recruit-content p {
		font-size: 17px;
	}
}
@media screen and (max-width: 1024px) {
	.pc-block {
		display: block;
	}
	/* === products-area === */
	.products-area .grid-container {
		gap: 10px;
	}
	.products-area .item .product-title {
		top: 10px;
		left: 10px;
		width: 100px;
		height: 26px;
	}
	.products-area .item .product-title h3 {
		font-family: 'Noto Serif JP', sans-serif;
		font-size: 14px;
		line-height: 14px;
	}

	.products-area .item .product-info {
		padding: 10px 20px;
	}
	.products-area .item .product-info .product-logo {
		width: 100px;
		height: auto;
	}
	/* === rd-area === */
	.rd-area .rd-wrapper {
		right: 100px;
	}
	.rd-area .rd-wrapper .rd-content {
		width: 600px;
		height: 326px;
	}
	.rd-area .rd-wrapper .rd-content h2 {
		font-size: 32px;
		line-height: 48px;
	}
	/* === sdg-area === */
	.sdg-area .sdg-wrapper {
		right: 100px;
	}
	.sdg-area .sdg-wrapper .sdg-content {
		width: 600px;
		height: 326px;
	}
	.sdg-area .sdg-wrapper .sdg-content h2 {
		font-size: 32px;
		line-height: 48px;
	}
	/*==topics area ==*/
	.topics-area {
		padding-bottom: 0;
	}
	.topics-area .topics-wrapper {
		position: relative;
		width: 100%;
		--sb-h: 15px;
		--sb-end-gap: clamp(120px, 15.1vw, 290px);
		--arrow-space: 26px;
		--arrow-pad: 6px;
		--sb-track: rgba(0, 0, 0, 0.2);
		--sb-thumb: rgba(0, 0, 0, 0.55);
	}
	.topics-scroll {
		padding-right: clamp(120px, 15.1vw, 290px);
	}

	/* === recruit-area === */
	.recruit-area {
		padding: 78px 80px 0 80px;
	}
	.recruit-area .recruit-btn-wrapper {
		margin-left: 180px;
		margin-top: 80px;
	}
	.recruit-area .recruit-content h2 {
		font-size: 26px;
		line-height: 40px;
	}
	.recruit-area .recruit-content p {
		font-size: 16px;
		letter-spacing: 1px;
	}
}
@media screen and (max-width: 768px) {
	.header-spacer {
		height: 0; /* Match header height */
		width: 100%;
		z-index: -1;
	}
	.pc-block {
		display: none;
	}
	/* === front-page-hiro === */
	#hero {
		top: clamp(70px, 8vw, 80px);
	}
	.hero {
		padding: 0;
	}
	.hero .hero-content {
		border: none;
		border-radius: 0;
		height: clamp(200px, 65.104vw, 500px);
		overflow: hidden;
	}
	.hero-spacer {
		height: clamp(200px, 65.104vw, 500px);
		width: 100%;
		z-index: -1;
	}
	.hero-content video {
		object-fit: contain;
		border-radius: 0;
		width: 200%;
		height: 100%;
	}
	.hero-content .hero-text {
		display: none;
	}
	.hero-content .hero-icons {
		position: absolute;
		left: 25px;
		bottom: 25px;
		gap: 25px;
		z-index: 1; /* Ensure text is above the video */
	}
	#about .about {
		height: 740px;
		margin-top: 70px;
		padding: 100px 10px 2rem 10px;
	}

	#about .about h2 {
		font-size: clamp(1.6rem, 2.5vw, 2rem);
		opacity: 1;
		margin-bottom: 40px;
	}
	#about .about p {
		font-size: clamp(16px, 2vw, 18px);
		margin-bottom: 30px;
		letter-spacing: 0px;
		opacity: 1;
		line-height: 2.35rem;
	}

	#about .about .btn-wrapper {
		margin-top: 85px;
	}
	#about .btn-style-text {
		font-size: 18px;
	}
	/* === video-area === */
	.video-area {
		padding: 100px 20px;
	}
	.video-area .video-wrapper {
		border: none;
		width: 100%;
		height: clamp(220px, 45vw, 754px);
	}

	.video-area h2 {
		font-size: 18px;
		opacity: 1;
	}

	/* === products-area === */
	.products-area {
		padding: 5px 20px;
	}
	.products-area .products-header {
		gap: 10px;
	}
	.products-area .products-header h2 {
		font-size: 14px;
		line-height: 20px;
	}
	.products-area .grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-area .item .product-info {
		padding: 0px 20px 20px 20px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.products-area .item .product-info .product-logo {
		width: 150px;
		height: auto;
	}
	.products-area .item .product-info .product-btn-wrapper {
		display: flex;
		justify-content: center;
	}
	.products-area .item .product-info .product-btn-wrapper .btn-style {
		width: 150px;
		height: 30px;
		gap: 10px;
	}
	.products-area
		.item
		.product-info
		.product-btn-wrapper
		.btn-style
		.btn-style-text {
		font-size: 14px;
	}

	/* === rd-area === */
	.rd-area {
		padding-top: 100px;
		padding-bottom: 0;
	}
	.rd-area img {
		margin-left: 0;
	}
	.rd-area .rd-wrapper {
		position: absolute;
		left: 0;
		bottom: 0;
		top: unset;
		right: unset;
		padding: 50px 20px;
	}

	.rd-area .rd-header {
		display: flex;
		align-items: center;
		justify-content: start;
		margin-bottom: 9px;
		gap: 10px;
	}

	.rd-area .rd-header h2 {
		opacity: 1;
		margin-top: 0;
		letter-spacing: 2.6px;
		font-family: 'Noto Serif JP', serif;
		font-weight: 300;
		font-size: 14px;
		line-height: 20px;
		text-align: left;
		color: #ffffff;
		margin-bottom: 0;
	}

	.rd-area .rd-wrapper .rd-content {
		display: flex;
		width: 100%;
		height: auto;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		background: transparent;
		padding: 0;
	}

	.rd-area .rd-wrapper .rd-content h2 {
		font-family: 'Noto Serif JP', serif;
		font-weight: 400;
		font-size: 24px;
		line-height: 37px;
		margin-bottom: 20px;
		text-align: left;
		color: #ffffff;
	}

	.rd-area .btn-style {
		width: 320px;
		height: 36px;
	}
	.rd-area .btn-style-text {
		font-size: 14px;
	}

	/* === sdg-area === */
	.sdg-area {
		padding-top: 0;
		margin-top: -5px;
		padding-bottom: 0;
	}
	.sdg-area img {
		margin-right: 0;
	}
	.sdg-area .sdg-wrapper {
		position: absolute;
		left: 0;
		bottom: 0;
		top: unset;
		right: unset;
		padding: 50px 20px;
	}

	.sdg-area .sdg-header {
		display: flex;
		align-items: center;
		justify-content: start;
		margin-bottom: 9px;
		gap: 10px;
	}

	.sdg-area .sdg-header h2 {
		opacity: 1;
		margin-top: 0;
		letter-spacing: 2.6px;
		font-family: 'Noto Serif JP', serif;
		font-weight: 300;
		font-size: 14px;
		line-height: 20px;
		text-align: left;
		color: #ffffff;
		margin-bottom: 0;
	}

	.sdg-area .sdg-wrapper .sdg-content {
		display: flex;
		width: 100%;
		height: auto;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		background: transparent;
		padding: 0;
	}

	.sdg-area .sdg-wrapper .sdg-content h2 {
		font-family: 'Noto Serif JP', serif;
		font-weight: 400;
		font-size: 24px;
		line-height: 37px;
		margin-bottom: 20px;
		text-align: left;
		color: #ffffff;
	}
	.sdg-area .btn-style {
		width: 320px;
		height: 36px;
	}
	.sdg-area .btn-style-text {
		font-size: 14px;
	}
	/* === topics-area ===*/
	.topics-area {
		padding: 100px 20px 0px 20px;
	}

	.topics-area .topics-header {
		margin-bottom: 20px;
		gap: 10px;
	}
	.topics-area .topics-header h2 {
		font-size: 14px;
		line-height: 20px;
	}
	.topics-area .topics-wrapper {
		width: 100%;
	}
	.topic-desc {
		gap: 20px;
	}
	.topic-cat {
		width: 85px;
	}

	.topic-text {
		padding: 10px 10px 15px 0;
		min-height: 0;
	}

	/* === news-area ===*/
	.news-area {
		padding: 80px 20px;
	}

	.news-area .news-header {
		margin-bottom: 20px;
		gap: 10px;
	}
	.news-area .news-header h2 {
		font-size: 14px;
		line-height: 20px;
	}
	.news-area .news-wrapper {
		width: 100%;
		height: 434px;
	}
	.news-cat {
		font-size: clamp(13px, calc(9px + 0.47vw), 18px);
		color: #ffffff;
		background: #000000;
		padding: 4px 0;
		border-radius: 15px;
		line-height: 1;
		width: 90px;
		text-align: center;
	}

	/* === media-area === */

	.media-area {
		padding: 30px 20px 100px 20px;
	}
	.media-area .media-header {
		margin-bottom: 10px;
		gap: 10px;
	}
	.media-area .media-header h2 {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 5px;
	}
	.media-area .media-wrapper {
		width: 100%;
		display: flex;
		flex-direction: column;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.media-area .media-right h2 {
		margin-top: 20px;
		font-size: 20px;
		line-height: 29px;
	}

	.media-area .media-right p {
		margin-bottom: 80px;
		letter-spacing: 1px;
	}
	/* === partnership-area === */
	.partnership-area {
		width: 100%;
		height: 100%;
		padding: 100px 20px;
	}
	.partnership-area .partnership-header {
		margin-bottom: 10px;
		gap: 10px;
	}
	.partnership-area .partnership-header h2 {
		font-size: 14px;
		line-height: 20px;
	}

	.blog-item {
		gap: clamp(15px, 1.563vw, 30px);
	}

	/* === recruit-area === */
	.recruit-area {
		background: #ffffff no-repeat padding-box;
		padding: 126px 20px 0 20px;
		position: relative;
		height: 640px;
		background: url(../../images/mobile/recruit-back-img.png);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: cover;
	}

	.recruit-area .recruit-header {
		margin-bottom: 20px;
		gap: 10px;
	}

	.recruit-area .recruit-header h2 {
		font-size: 14px;
		line-height: 20px;
		color: #ffffff;
		letter-spacing: 5px;
	}

	.recruit-area .recruit-content h2 {
		font-size: 24px;
		line-height: 35px;
		margin-bottom: 21px;
		font-weight: 300;
		text-align: left;
		color: #ffffff;
		margin-top: 0;
	}
	.recruit-area .recruit-content p {
		font-size: 16px;
		line-height: 34px;
		margin-bottom: 0px;
		font-weight: 100;
		text-align: left;
		color: #ffffff;
		margin-top: 0;
	}

	.recruit-area .recruit-btn-wrapper {
		margin-left: 0;
		margin-top: 20px;
	}

	.recruit-area .btn-style {
		width: 320px;
		height: 36px;
	}
	.recruit-area .btn-style-text {
		font-size: 14px;
	}
	.border-run .text-passive {
		opacity: 1 !important;
	}
	.text-passive {
		opacity: 1 !important;
	}
}
@media screen and (max-width: 500px) {
	.topics-area .topics-wrapper {
		position: relative;
		width: 100%;
		--sb-h: 15px;
		--sb-end-gap: 20px;
		--arrow-space: 26px;
		--arrow-pad: 6px;
		--sb-track: rgba(0, 0, 0, 0.2);
		--sb-thumb: rgba(0, 0, 0, 0.55);
	}
	.topics-scroll {
		padding-right: 20px;
	}
}
@media screen and (max-width: 450px) {
	.blog-title {
		font-size: 14px;
	}
	.blog-category {
		font-size: 10px;
	}
	.blog-thumb {
		width: 170px;
		height: 100px;
	}
	.blog-content {
		height: 100px;
	}
	.blog-item .btn-wrapper .btn-style {
		height: 30px;
		width: 150px;
		gap: 5px;
	}
	.blog-item .btn-style-text {
		margin-left: 12px;
	}
}
@media screen and (max-width: 400px) {
	.pc-block {
		display: none;
	}
	.recruit-area .recruit-content p {
		font-size: 13px;
		line-height: 25px;
	}
}
@media screen and (max-width: 370px) {
	.recruit-area .recruit-content p {
		font-size: 12px;
		line-height: 25px;
	}
}
