/* ---------- HERO ---------- */
.hero {
	position: relative;
}

.hero__title {
	position: absolute;
	font-size: clamp(30px, 4vw, 48px);
	top: clamp(4%, 3vw, 15%);
	right: 0;
	margin-bottom: 24px;
	text-align: right;
	font-weight: 700;
	color: #000;
	text-shadow: 3px 3px 0 #c5b7cb;
}

.hero__title span {
	display: block;
	font-size: 28px;
	margin-top: 8px;
}

.hero__img {
	width: 63%;
	height: auto;
	padding-right: 60px;
}

.hero__text {
	position: absolute;
	top: 40%;
	right: 0;
	transform: translateY(-50%);
}

.hero__btn {
	display: block;
	width: 370px;
	padding: 3px 0;
	margin: 9px 0;
	border-radius: 999px;
	border: 1px solid #6769d5;
	text-align: center;
	color: #6769d5;
	text-decoration: none;
	background: #fff7ea;
	transition: .3s;
	font-size: 16px;
	position: relative;
}

.hero__btn::before {
	content: "";
	position: absolute;
	right: 15px;
	width: 15px;
	height: 2px;
	background: #6769d5;
	top: 54%;
	transform: translateY(-50%) rotate(90deg);
}

.hero__btn::after {
	content: "";
	position: absolute;
	right: 32px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #6769d5;
	top: 61%;
	transform: translate(12px, -50%) rotate(135deg);
}

.hero__btn:hover {
	background: #6769d5;
	color: #fff;
}

.hero__btn:hover::before {
	background: #fff;
}

.hero__btn:hover::after {
	border-top: 2px solid #fff;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 55px 15px 100px;
}

/* ---------- CONTENT ---------- */
.l-content {
	padding-top: 60px;
	margin: 0 0 60px;
}

.l-content:first-of-type {
	border-bottom: 1px solid #7657c8;
	padding-bottom: 60px;
    margin: 0;
}

.l-content__inner {
	max-width: 1260px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 54px;
}

.l-content__inner:nth-child(2) {
	margin: 80px 0;
}

.l-content__left {
	flex: 1;
}

.l-content__image {
	width: 28%;
}

.l-content__image img {
	height: 300px;
  	object-fit: contain;
}

.l-content__title {
	font-size: 48px;
	margin: 0 0 24px;
	font-weight: bold;
	line-height: 1.3;
}

.l-content__label {
	color: #806dd7;
	font-weight: 600;
	font-size: 20px;
	margin: 0;
}

.l-content__subtitle {
	color: #7657c8;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	text-align: left;
}

.l-content__lead {
	text-align: left;
	font-size: 16px;
	margin: 0;
}

.l-content__lead .purple {
	color: #6769d5;
	font-size: 20px;
}

.voice-content {
	position: relative;
	/* margin: 40px auto; */
	padding: 30px 80px;
	border: 2px solid #9b87f7;
	border-radius: 20px;
	background: rgba(255, 255, 255, .45);
}

.voice-content__title {
	margin: 0;
	text-align: center;
	color: #7457df;
	font-size: 22px;
	font-weight: 700;
}

.voice-content__text {
	text-align: left;
	font-size: 16px;
	margin: 0;
	line-height: 1.8;
}

.voice-content__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.voice-content__image {
	width: 128px;
	flex-shrink: 0;
}

.l-content__more {
	text-align: center;
	margin-top: 16px;
}

.l-content__more-btn {
	display: inline-block;
	padding: 3px 0;
	width: 160px;
	border-radius: 999px;
	border: 1px solid #6769d5;
	text-align: center;
	color: #6769d5;
	text-decoration: none;
	background: #fff7ea;
	transition: .3s;
	font-size: 14px;
	position: relative;
}

.l-content__more-btn::before {
	content: "";
	position: absolute;
	right: 16px;
	width: 12px;
	height: 2px;
	background: #6769d5;
	top: 50%;
	transform: translateY(-50%);
}

.l-content__more-btn::after {
	content: "";
	position: absolute;
	right: 28px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #6769d5;
	top: 50%;
	transform: translate(12px, -50%) rotate(45deg);
}

.l-content__more-btn:hover {
	background: linear-gradient(90deg,
			#5A6BEB 0%,
			#6863E8 40%,
			#7B5EEB 70%,
			#8A57E8 100%);
	color: #fff;
}

.l-content__more-btn:hover::before {
	background: #fff;
}

.l-content__more-btn:hover::after {
	border-top-color: #fff;
}

/* INITIATIVES */
.initiatives {
	padding: 90px 70px 100px;
	margin: auto;
	background: #ffe7c3;
}

.section-title {
	margin-bottom: 48px;
}

/* モーダル */
.modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	overflow: scroll;
	padding: 50px 0;
}

.modal__overlay {
	position: fixed;
	inset: 0;
	background: #fff4e3;
	opacity: 0.8;
}

.modal__content {
	position: relative;
	max-width: 880px;
	margin: auto 15px;
	background: #fff;
	border-radius: 8px;
	padding: 30px 40px 20px;
	box-shadow: 12px 12px 0 #dbc6e3;
}

.modal__close {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(90deg, #856ed7 0%, #4e64d3 100%);
	cursor: pointer;
}

.modal__close::before,
.modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 1.5px;
	background: #fff;
	transform-origin: center;
}

.modal__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.support-table {
	max-width: 1200px;
	margin: 0 auto;
	color: #222;
}

.support-table__head {
	display: grid;
	grid-template-columns: 32% 68%;
	border-bottom: 2px solid #8298ff;
}

.support-table__head>div {
	padding: 0 30px 8px;
	color: #7362e8;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.support-table__row {
	display: grid;
	grid-template-columns: 32% 68%;
	border-bottom: 2px solid #9aabff;
}

.support-table__row:last-child {
	border-bottom: none;
}

.support-table__support,
.support-table__detail {
	padding: 20px;
}

.support-table__support-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
}

.support-table__detail-title {
	margin: 0 0 12px;
	color: #8065e9;
	font-size: 15px;
	font-weight: 700;
}

.support-table__detail p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.6;
	font-weight: bold;
}

.support-table__detail p:last-child {
	margin-bottom: 0;
}

.support-table__detail ul {
	font-weight: bold;
}

.support-table__detail ul li span {
	margin-left: 80px;
}

.support-table__icons {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	margin-top: 20px;
}

.support-person {
	text-align: center;
}

.support-person__label {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
}

.support-person__label.purple {
	color: #bf95df;
}

.support-person__label.blue {
	color: #94a9ff;
}

.support-person__label.green {
	color: #62c089;
}

/* background */
main::before {
	content: "";
	display: block;
	z-index: -10;
	position: absolute;
	top: 14%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: 1440px;
	height: 159rem;
	background: url(../img/disability-support/bg-pc_01.png) no-repeat;
	background-size: cover;
	background-position: center;
}

main::after {
	content: "";
	display: block;
	z-index: -20;
	position: absolute;
	top: 14%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 67%;
	background: url(../img/disability-support/bg-pc_02.png) no-repeat;
	background-size: cover;
	background-position: center;
}

@media (min-width: 768px) {
	.hero__buttons {
		position: absolute;
		right: 0;
		bottom: clamp(15%, 18vw, 270px);
	}

	.initiatives-slider .swiper-slide {
		width: calc((100% - 125px) / 4) !important;
		text-align: center;
		height: auto;
	}

	.swiper-wrapper {
		justify-content: center;
		max-width: 1000px;
		margin: auto;
	}
}

@media (max-width: 767px) {
	.hero {
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: anchor-center;
		flex-direction: column;
		margin-bottom: 0;
	}

	.hero__title {
		position: static;
		text-align: center;
		font-size: 30px;
		margin-bottom: 24px;
	}

	.hero__title span {
		font-size: 25px;
		text-align: center;
	}

	.hero__img {
		width: 100%;
		padding-right: 0;
	}

	.hero__buttons {
		margin: 0 auto;
	}

	.hero__btn {
		font-size: 14px;
		padding: 2px 0;
		margin-bottom: 17px;
		width: 330px;
	}

	.container {
		padding: 0 15px;
	}

	.initiatives {
		padding: 60px 10px;
		position: relative;
		overflow: visible;
		margin-top: 60px;
	}

	.initiative-card {
		width: 75%;
		margin: auto;
	}

	.initiative .initiative-lead {
		padding: 0 43px;
	}

	.initiatives-slider .swiper-slide {
		height: auto;
	}

	.l-content {
		padding: 60px 0;
	}

	#disability-support {
		margin: 0;
	}

	.l-content__inner {
		flex-direction: column;
		gap: 0;
		margin-bottom: 40px;
	}

	.l-content__inner:nth-child(2) {
		margin: 80px 0 40px;
	}

	.l-content__left {
		display: contents;
	}

	.l-content__label {
		order: 1;
		text-align: center;
	}

	.l-content__title {
		font-size: 29px;
		margin: 0 0 20px;
		order: 2;
		text-align: center;
	}

	.l-content__subtitle {
		text-align: center;
		margin: 16px 0 8px;
	}

	.l-content__image {
		order: 3;
		width: 46%;
		max-width: 260px;
		margin: 0 auto;
	}

	.l-content__image img {
		width: 100%;
		height: 150px;
		margin: 0 auto;
	}

	.l-content__body {
		order: 4;
	}

	.l-content__lead {
		font-size: 14px;
		line-height: 1.6;
	}

	.l-content__lead span {
		font-size: 14px;
	}

	.activities-img {
		width: 50%;
		max-width: 260px;
	}

	.l-content__more {
		order: 5;
	}

	.voice-content {
		padding: 24px 16px;
		margin: 24px auto;
		border-radius: 12px;
	}

	.voice-content__title {
		position: absolute;
		top: 50px;
		left: 165px;
		width: calc(100% - 165px);
		margin: 0;
		font-size: 22px;
		line-height: 1.25;
		text-align: left;
	}

	.voice-content__inner {
		display: block;
	}

	.voice-content__image {
		width: 105px;
		margin: 0 0 28px 20px;
	}

	.voice-content__text {
		margin: 0;
		font-size: 15px;
		line-height: 1.9;
		font-weight: 700;
	}

	.modal__close {
		top: -15px;
		right: -15px;
		width: 30px;
		height: 30px;
	}

	.modal__content {
		padding: 40px 15px 20px;
		box-shadow: 6px 6px 0 #dbc6e3;
	}

	.support-table__head>div {
		border: 1px solid #9aabff;
		border-radius: 50px;
		padding: 0;
		width: 250px;
		margin: auto;
	}

	.support-table__head {
		display: block;
	}

	.support-table__row {
		display: block;
		padding: 20px 0;
	}

	.support-table__support,
	.support-table__detail {
		padding: 10px;
	}

	.support-table__head {
		border-bottom: none;
	}

	.support-table__detail p {
		text-align: center;
		font-size: 13px;
	}

	main::before {
		top: 4.5%;
		left: 50%;
		width: 100vw;
		height: 193rem;
		background: url(../img/disability-support/bg-sp_01.png) no-repeat;
	}

	main::after {
		top: 4%;
		left: 50%;
		width: 100vw;
		height: 200vh;
		background: url(../img/disability-support/bg-sp_02.png) no-repeat;
	}
}

#three-assurances {
	margin: 0;
}