@charset "utf-8";
:root {
	--black: #343434;
	--gray-700: #949494;
	--gray-900: #7A7A7A;
	--white: #FFF;
	--blue-50: #F0F8FF;
	--blue-300: #A8D1F7;
	--blue-600: #60A9EE;
	--blue-700: #408CD4;
	--blue-900: #00529F;
	--text-grad: linear-gradient(95deg, #00529F -0.02%, #60A9EE 49.98%, #4296E5 99.98%);
	--hover-grad: linear-gradient(95deg, var(--blue-700) -0.02%, var(--blue-300) 49.98%, var(--blue-600) 99.98%);
	--light-green:#D5FAFF;
}

.credo {
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(20px, 5.3vw, 40px);
}

.credo__abst {
	padding-bottom: clamp(40px, 10.6vw, 80px);
}

.credo__title {
	font-size: clamp(20px, 5.3vw, 40px);
	color: var(--blue-900);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.2em;
}

.credo__card {
	padding: 2em 0;
	border-top: 1px solid var(--blue-600);
}

.credo__title {
	display: flex;
	align-items: flex-start;
	gap: clamp(12px, 3.2vw, 24px);
}

.credo__title::after {
	content: "";
	background: url(/img/credo/accordion-btn.svg) no-repeat center center;
	background-size: contain;
	display: inline-block;
	width: 2em;
	height: 2em;
	min-width: 2em;
	vertical-align: middle;
	transition: 0.5s;
}

.accordion-toggle:checked + .credo__title::after {
	transform: rotate(180deg);
}

.credo__number {
	display: block;
	min-width: 2em;
}

.credo__content {
  display: none;
}

.accordion-toggle {
  display: none;
}

.accordion-toggle:checked + .credo__title + .credo__content {
  display: flex;
	flex-direction: column;
	gap: 2em;
	padding-top: 2em;
}

.credo__voice {
	display: flex;
	padding: clamp(20px, 5.3vw, 40px);
	gap: clamp(20px, 5.3vw, 40px);
	background: var(--blue-50);
	border: 1px solid var(--blue-300);
}

.credo__name {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.25em;
	font-size: clamp(16px, 4.2vw, 32px);
	color: var(--blue-900);
	text-align: center;
	line-height: 1.3;
	font-weight: 700;
}

.credo__name--sub {
	font-size: clamp(12px, 3.2vw, 24px);
}

.credo__img {
	position: relative;
	padding-bottom: clamp(12px, 3.2vw, 24px);
}

.credo__img::after {
	content: "";
	background: url(/img/credo/external-link-icon.svg) no-repeat center center;
	background-size: contain;
	display: inline-block;
	width: clamp(24px, 6.4vw, 48px);
	height: clamp(24px, 6.4vw, 48px);
	vertical-align: middle;
	position: absolute;
	top: 0.2em;
	right: 0.2em;
}

.credo__img img {
	border-radius: 50%;
}

.credo__voice-description {
	color: var(--blue-700);
}

@media only screen and (min-width: 768px) {
	@media (hover: hover) {
		.credo__voice:hover {
			scale: 0.95;
		}
	}

	.credo {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		gap: 16px;
		padding: 0 0 clamp(48px, 6.4vw, 120px);
	}

	.credo__inner {
		grid-area: 1 / 2 / 2 / 12;
	}

	.credo__abst {
		padding: clamp(36px, 4.7vw, 90px) 0;
		font-size: clamp(11px, 1.4vw, 27px);
	}

	.credo__card {
		padding: clamp(36px, 4.7vw, 90px) 0;
	}

	.credo__title {
		font-size: 2.5em;
		gap: 0.5em;
	}

	.credo__content {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		gap: 1em;
		padding: 2.5em 0 0 calc(clamp(38.4px, 5vw, 96px) + 1.5em);
	}

	.accordion-toggle:checked + .credo__title + .credo__content {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		gap: 1em;
		padding: 2.5em 0 0 calc(clamp(38.4px, 5vw, 96px) + 1.5em);
	}

	.credo__number {
		width: clamp(38.4px, 5vw, 96px);
		min-width: clamp(38.4px, 5vw, 96px);
	}

	.credo__title::after {
		display: none;
		width: clamp(38.4px, 5vw, 96px);
		height: clamp(38.4px, 5vw, 96px);
		min-width: clamp(38.4px, 5vw, 96px);
	}

	.credo__description {
		width: calc(50% - 1em);
	}

	.credo__voice {
		padding: 1.25em;
		gap: 1.25em;
		width: calc(50% - 1em);
		transition: 0.5s;
	}

	.credo__img {
		padding-bottom: 0.75em;
	}

	.credo__name {
		font-size: 1em;
	}

	.credo__name--sub {
		font-size: 0.75em;
	}

	.credo__img::after {
		width: 1.5em;
		height: 1.5em;
	}

	.credo__profile {
		flex: 1;
	}

	.credo__voice-description {
		flex: 2;
		font-size: 0.875em;
	}

}