@charset "UTF-8";

#page-title-block + .wrapper {
	padding-bottom: var(--space8);
}

:not(#Top) .wrapper {
	padding-bottom: var(--space8);
}

:not(#Top) .wrapper.pb00 {
	padding-bottom: 0;
}

.paragraph-text-group {
    text-align: justify;
}

.video-item__iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.paragraph-img-content img {
    border-radius: revert;
}

.company-list {
	width: min(930px, 62vw);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: var(--space5) var(--space4);
}

.company-list__item {
	width: 100%;
	max-width: 280px;
	display: grid;
	grid-template-rows: auto 1fr;
	justify-items: center;
	align-items: flex-start;
	gap: var(--space1);
}

.company-list__item figure {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
	object-position: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--color_grey01);
}

.company-list__item figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.company-list__text {
	text-align: center;
	line-height: 1.6;
}

#outline-block .wrapper {
    padding-bottom: 0;
}

.outline-group {
    width: min(930px, 62vw);
    background-color: var(--color_white);
    border-radius: var(--radius2);
    padding: var(--space1) var(--space4);
}

.outline-label {
    font-weight: 500;
}

.outline-list > li {
    display: grid;
    grid-template-columns: 7em 1fr;
    align-items: center;
    gap: var(--space6);
    border-bottom: 1px solid var(--color_grey02);
    padding-block: var(--space3);
    list-style-type: none;
    font-weight: 400;
}

.outline-list > li:last-of-type {
    border-bottom: none;
}

.history-block-inner {
    width: min(930px, 62vw);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--space2) var(--space6);
	align-items: flex-start;
}


@keyframes zoomIn {
	from {
	  opacity: 0;
	  transform: scale(0.9);
	}
	50% {
		opacity: 0;
		transform: scale(0.9);
	}
	90% {
		transform: scale(1.05);
	}
	100% {
	  opacity: 1;
	  transform: scale(1);
	}
}

.company-block.js-inview.is-show .company-list__item:nth-of-type(1) figure img {
	animation: zoomIn 1s 0.2s ease forwards;
}
.company-block.js-inview.is-show .company-list__item:nth-of-type(2) figure img {
	animation: zoomIn 1s 0.3s ease forwards;
}
.company-block.js-inview.is-show .company-list__item:nth-of-type(3) figure img {
	animation: zoomIn 1s 0.4s ease forwards;
}
.company-block.js-inview.is-show .company-list__item:nth-of-type(4) figure img {
	animation: zoomIn 1s 0.5s ease forwards;
}
.company-block.js-inview.is-show .company-list__item:nth-of-type(5) figure img {
	animation: zoomIn 1s 0.6s ease forwards;
}
.company-block.js-inview.is-show .company-list__item:nth-of-type(6) figure img {
	animation: zoomIn 1s 0.7s ease forwards;
}

.map-block {
	height: clamp(450px, 40vw, 600px);
    margin-inline: calc(50% - 50vw);
}

.map-block iframe {
	width: 100%;
    height: 100%;
	border:0;
}

.mt-07 {
	margin-top: -0.7em;
}



@media (max-width: 768px) {
    .outline-group {
        width: revert;
    }

	.history-block-inner {
		width: revert;
	}

	.history-block-inner .paragraph-img-content img {
		max-width: 360px;
		margin-inline: auto;
	}

	.mt-07 {
		margin-top: 0;
	}
}

@media (max-width: 480px) {

    .outline-list > li {
        grid-template-columns:4em 1fr;
        gap: 2em;
        font-size: 14px;
    }

    .map-block iframe {
        height: 300px;
    }


	.map-block {
		height: 100%;
		margin-inline: calc(50% - 50vw);
	}
}