@charset "UTF-8";

/* -------------------------------------
// MV
------------------------------------- */
.page-tag {
	right: -0.25em;
}

@media (min-width: 1730px) {
	.page-tag {
		right: calc((100vw - 1730px) / 2);
	}
}

@media only screen and (max-width: 768px) {
	.page-tag {
		right: 85px;
	}
}

/* -------------------------------------
// 共通
------------------------------------- */
.service__mission {
	margin-block: var(--space-section-pc);
}

.service__model, .service__growth, .service__detail {
	margin-bottom: var(--space-section-pc);
}

.service-section .section__image {
	margin: var(--section-img-margin);
}

@media only screen and (max-width: 768px) {
	.service__mission {
		margin-block: var(--space-section-sp);
	}

	.service__model, .service__growth, .service__detail {
		margin-bottom: var(--space-section-sp);
	}
}

/* -------------------------------------
// Social Mission
------------------------------------- */

.service__mission .section__image img{
	width: 100%;
	height: auto;
	aspect-ratio: 2164 / 1000;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.service__mission .section__image img {
		aspect-ratio: 1103 / 1011;
	}
}

/* -------------------------------------
// Business Model
------------------------------------- */
.service__flow {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 0 24px;
	margin-bottom: 3.75rem;
}

.service__flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;

	img {
		max-width: 556px;
		width: 100%;
		height: auto;
	}
}

.service__flow-text {
	font-size: 1.5rem;
	text-align: center;
	color: var(--p_blue);
	margin: 0;
}

.service__flow-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 48px;

	svg {
		color: var(--orange);
	}
}

@media only screen and (max-width: 768px) {
	.service__flow {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 30px;
	}

	.service__flow-step img {
		width: 50%;
	}

	.service__flow-text {
		font-size: clamp(0.9rem, 4vw, 2rem);
		margin-top: 2rem;
	}

	.service__flow-arrow {
		margin-bottom: 0;

		svg {
			transform: rotate(90deg);
		}
	}
}

/* -------------------------------------
// Your Growth
------------------------------------- */
.service__growth .section__image img{
	width: 100%;
	height: auto;
	aspect-ratio: 2160 / 1000;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.service__growth .section__image img {
		aspect-ratio: 1172 / 720;
	}
}

/* -------------------------------------
// Detail
------------------------------------- */
.service__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 40px;
}

.service-card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	align-items: start;

	&:not(:nth-last-child(-n+3)) {
		margin-bottom: 50px;
	}
}

.service-card__title {
	font-size: 1.5rem;
	color: var(--p_blue);
	width: 100%;
	text-align: left;
}

.service-card__img {
	max-width: 660px;
	width: 100%;
}

.service-card__text {
	font-size: 1.25rem;
	line-height: 1.8;
	width: 100%;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	.service__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px clamp(10px, 5.2vw, 40px);
	}

	.service-card:nth-child(-n+4) {
		margin-bottom: 130px;
	}

	.service-card__title {
		font-size: clamp(1.25rem, 2.86vw, 2rem);
	}

	.service-card__text {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
		line-height: 1.7;
	}
}

/* -------------------------------------
// For the future
------------------------------------- */
.service__future .c-frame {
	padding: 4.5rem 2rem 6rem;
	margin-bottom: 4.5rem;
}

.future__item + .future__item {
	margin-top: 2rem;
}

.future__label {
	font-size: 1.5rem;
	color: var(--p_blue);
}

.future__desc {
	font-size: 1.25rem;
	line-height: 1.8;
}

.service__future .section__image img{
	width: 100%;
	height: auto;
	aspect-ratio: 1960 / 1000;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.service__future .c-frame {
		padding: 4.5rem 1rem;
	}

	.future__label {
		font-size: clamp(1rem, 1.95vw, 1.5rem);
	}

	.future__desc {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
		line-height: 1.7;
	}
	.service__future .section__image img {
		aspect-ratio: 1172 / 720;
	}
}