/* ========================
   HOME
========================== */
/* ======== Hero Section ======== */
.hero-overlay {
	background-color: rgba(var(--black-rgb), .6);
	z-index: 10;
}

/* Hero Carousels */
.hero-carousel {
	z-index: 5;
}
.hero-image {
	object-fit: cover;
	object-position: center;
}
.hero-carousel, 
.hero-carousel .owl-stage-outer, 
.hero-carousel .owl-stage, 
.hero-carousel .owl-item {
	height: 100%;
}

/* Carousels Progress Bar */
.progress-bar {
	top: 20%;
	left: 10%;
	width: .1rem;
	height: 60%;
	background-color: rgba(var(--white-rgb), .3);
}
.progress-indicator {
	height: 0;
    will-change: height;
	transition: height 5000ms linear;
}

/* Hero Section Contents */
.hero-content {
	padding: 0 5%;
	pointer-events: none;
	z-index: 20;
}

/* Texts */
.hero-text-container {
	margin-left: 12%;
	max-width: 80%;
	pointer-events: none;
}
.hero-title-block {
	margin-bottom: 3rem;
}
.hero-subtitle {
	letter-spacing: .5rem;
	margin-bottom: 1rem;
}
.title-separator {
	width: 3rem;
	height: .1rem;
	margin: 1.5rem 0;
}
.hero-title {
	font-size: 4.8rem;
	letter-spacing: .2rem;
}
.hero-title span {
	display: block;
}

.hero-description {
	max-width: 60%;
	font-size: 1.6rem;
	line-height: 1.8;
	opacity: .8;
}
.hero-description p {
	color: var(--white);
}
	.hero-title span br {
		display: none;
	}
@media (min-width: 1107px) {
	.hero-title span br {
		display: block;
	}
}
/* Owl Carousel Animation */
.owl-carousel .owl-item {
	opacity: 0;
	transition: opacity 1.5s ease;
}

.owl-carousel .owl-item.active {
	opacity: 1;
}

@media (max-width: 992px) {
	.progress-bar {
		left: 5%;
		height: 70%;
	}
    .hero-text-container {
		margin-left: 8%;
	}
	.hero-description {
		max-width: 60%;
	}
}

@media (max-width: 768px) {
	.hero-section {
		display: flex;
		flex-direction: column;
	}
	.hero-content {
		align-items: center;
		/* padding-top: 25%; */
    }
	.progress-bar {
		top: 15%;
		left: 8%;
		height: 60%;
    }
    .hero-subtitle {
		font-size: 2rem;
    }
    
	.hero-title {
		font-size: 3.6rem;
    }
    .hero-description {
		max-width: 80%;
		font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
	.hero-content {
		/* padding-top: 20%; */
    }
	.progress-bar {
		top: 12%;
		left: 10%;
		height: 70%;
    }
	.hero-text-container {
		max-width: 75%;
		margin-left: 15%;
    }
    
	.hero-subtitle {
		font-size: 1.8rem;
    }
	.hero-title {
		font-size: 3rem;
	}
	.hero-description {
		max-width: 100%;
	}
}

/* ======== Clients' Logo Wall ======== */
.logo-wall-container {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	padding: 2rem 0;
	background: rgba(var(--white-rgb), .75);
	z-index: 10;
}
.logo-wall-title {
	width: 20%;
	flex-shrink: 0;
	margin-bottom: 0;
	padding-left: 2rem;
	text-align: left;
	color: var(--dark);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.logo-wall-title i {
	margin-right: .5rem;
	font-size: 1.6rem;
}
.logo-wall {
	position: relative;
	width: 80%;
	overflow: hidden;
}

/* Logo Slider */
.logo-slider {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: max-content;
	animation: none;
}
.logo-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 160px;
	height: 45px;
}

.logo-item img {
	max-width: 148px;
	max-height: 40px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1200px) {
	.logo-item {
		height: 36px;
	}
	.logo-item img {
		max-height: 32px;
	}
	.logo-slider {
		gap: 1.5rem;
	}
}

@media (max-width: 992px) {
	.logo-wall-container {
		flex-direction: column;
		padding: 1.5rem 0;
	}
	.logo-wall-title {
		width: 100%;
		text-align: center;
		padding-left: 0;
		 margin-bottom: 1.5rem;
		font-size: 1.4rem;
	}
	.logo-wall {
		width: 100%;
	}
	.logo-slider {
		gap: 1.5rem;
	}
}

@media (max-width: 576px) {
	.logo-wall-title {
		font-size: 1.4rem;
		margin-bottom: 1rem;
	}
	.logo-wall-container {
		padding: 1.2rem 0;
	}
}

/* 次のセクションのスタイル */
.next-section {
    position: relative;
    z-index: 30;
    background-color: #f5f5f5;
}

/* ======== Products Section ======== */
.product-item .grid-item-content {
	padding: 1.5rem;
}
.product-catches {
	margin-bottom: .5rem;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: .2em;
	color: rgba(var(--white-rgb), .7);
}
.product-name {
	margin-bottom: 0;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.3;
}
.product-logo {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.product-logo img {
	width: auto;
	height: 6rem;
	object-fit: contain;
}
.product-description {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
	color: rgba(var(--white-rgb), 0.9);
}

.product-item.featured {
	position: relative;
}

.product-item.featured::before,
.product-item.featured::after {
	content: '';
	position: absolute;
	top: 0;
	width: .5rem;
	height: 100%;
	background-color: var(--tertiary);
	z-index: 4;
}
.product-item.featured::before {
	left: 0;
}
.product-item.featured::after {
	right: 0;
}

@media (max-width: 992px) {
	.product-logo img {
		height: 5rem;
	}
}

@media (max-width: 768px) {
	.product-description {
		font-size: 1.3rem;
	}
}

@media (max-width: 576px) {
	.product-logo img {
		height: 4rem;
	}
	.product-description {
		font-size: 1.2rem;
	}
}

/* ======== Cases Section ======== */
/* .cases-section {
	background-color: var(--light-gray);
} */
.cases-container {
	margin-bottom: 5rem;
}

.product-badge {
	position: absolute;
	top: 0;
	left: 0;
	/* top: 2rem; */
	/* right: 2rem; */
	padding: 0.6rem 1.2rem;
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 500;
	border-radius: 0;
	/* border-radius: 3rem; */
	z-index: 3;
	/* box-shadow: 0 0.5rem 1.5rem rgba(var(--dark-rgb), .2); */
}
.product-badge.abookbiz,
.product-badge.abook360 {
	background-color: #0078aa;
}
.product-badge.abookcheck {
	background-color: #00968c;
}
.product-badge.smartlink {
	background-color: #1d4b9e;
}
.product-badge.smart360 {
	background-color: #506ec8;
}
.product-badge.livetaskyell {
	background-color: #ffd34a;
	color: var(--dark);
}
.product-badge.exframe {
	background-color: #fb744b;
}
.product-badge.aishorts {
	background-color: #04c704;
}
.case-name {
	margin-bottom: 0.8rem;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
}
.case-summary {
	font-size: 1.6rem;
	line-height: 1.5;
	color: rgba(var(--white-rgb), .9);
}
.case-logo {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}
.case-logo img {
	width: auto;
	height: 12rem;
	object-fit: contain;
}
.case-item .grid-item-overlay {
	background-color: rgba(var(--white-rgb), .85);
}
.view-more {
	display: inline-block;
	padding: 1rem 2rem;
	border: 1px solid var(--dark);
	font-size: 1.4rem;
	font-weight: 500;
	transition: all .3s ease;
}
.case-item:hover .view-more {
	background-color: var(--dark);
	color: var(--white);
}


@media (max-width: 992px) {
	.case-logo img {
		height: 8rem;
	}
}

@media (max-width: 768px) {
	.case-summary {
		font-size: 1.3rem;
	}
}

@media (max-width: 576px) {
	.case-logo img {
		height: 6rem;
	}
	.case-summary {
		font-size: 1.2rem;
	}
}

/* ======== News Section ======== */
/* .news-release-section {
	background-color: var(--white);
} */
.news-tag {
	display: inline-block;
	padding: 0.4rem 1.2rem;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
}
.news-tag.press {
	background-color: var(--primary);
	color: var(--white);
}
.news-tag.event {
	background-color: var(--secondary);
	color: var(--white);
}
.news-tag.update {
	background-color: var(--tertiary);
	color: var(--white);
}
.news-tag.notice {
	background-color: var(--quaternary);
	color: var(--dark);
}
.news-tag.information {
	background-color: var(--gray);
	color: var(--white);
}

/* ======== Events Section ======== */
/* .events-section {
	background-color: var(--light-gray);
} */
.event-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.event-meta-item {
	display: flex;
	align-items: center;
	color: var(--gray);
	font-size: 1.4rem;
}
.event-meta-item i {
	margin-right: 0.8rem;
	font-size: 1.6rem;
}
.event-location {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	color: var(--gray);
	font-size: 1.4rem;
}
.event-location i {
	margin-right: 0.8rem;
	font-size: 1.6rem;
}

/* ======== Corporate Info Section ======== */
/* .corporate-info-section {
	background-color: var(--white);
} */
.corporate-info-container {
	display: grid;
	gap: 3rem;
	margin-bottom: 5rem;
}
.corporate-info-card {
	background-color: var(--light-gray);
}
.corporate-info-card:hover {
	background-color: var(--white);
}
.corporate-info-card .card-link {
	position: relative;
	padding-bottom: .3rem;
}
/* .corporate-info-card .card-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--dark);
	transition: width .3s ease;
}
.corporate-info-card:hover .card-link::after {
	width: 100%;
} */

.corporate-info-card .card-icon {
	border-radius: 50%;
	transition: all 0.3s ease;
}
.corporate-info-card:hover {
	box-shadow: none;
}
.corporate-info-card:hover .card-icon {
	background-color: var(--dark);
}
.corporate-info-card:hover .card-icon i {
	color: var(--white);
}
.corporate-info-more {
	text-align: center;
	margin-top: 4rem;
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
	.corporate-info-container {
		grid-template-columns: 1fr;
	}
}

/* ======== Contact Section ======== */
/* .contact-section {
	background-color: var(--light-gray);
} */
.contact-section .card {
	background-color: var(--light-gray);
}
.contact-section .card:hover {
	box-shadow: none;
	transform: none;
}