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

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

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

.hero__img {
	width: 69%;
	height: auto;
}

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

.hero__btn {
	display: block;
	width: clamp(210px, 27vw, 240px);
	padding: 3px 0;
	margin: 9px 0;
	border-radius: 999px;
	border: 1px solid #0087ff;
	text-align: center;
	color: #0087ff;
	text-decoration: none;
	background: #fff7ea;
	transition: .3s;
	font-size: 16px;
	position: relative;
}

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

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

.hero__btn:hover {
	background: #0087ff;
	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 20px;
}

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

.l-content:not(:first-of-type) {
	border-top: 1px solid #0087ff;
}

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

.l-content__left {
	flex: 1;
}

.l-content__image {
	width: 43%;
	max-width: 546px;
}

.l-content__section:nth-of-type(2) {
	margin: 48px 0;
}

.l-content__title {
	font-size: 48px;
	margin-bottom: 32px;
	font-weight: bold;
}

.l-content__label {
	color: #0087ff;
	font-weight: 600;
	margin-bottom: 8px;
}

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

.l-content__lead span {
	font-size: 20px;
	color: #0087ff;
}

/* ---------- PATERNITY LEAVE ---------- */
.l-content__paternity-leave {
	margin-bottom: 80px;
	max-width: 1030px;
	margin-inline: auto;
}

.l-content__paternity-leave:nth-of-type(1) {
	margin-top: 32px;
}

.l-content__subtitle {
	font-size: 20px;
	font-weight: bold;
	color: #ff7129;
	margin-bottom: 16px;
}

/* ---------- VOICES ---------- */
.staff {
	padding: 80px 40px;
}

.staff-list {
	display: flex;
	justify-content: center;
	gap: 80px;
	margin-top: 64px;
}

.staff-item {
	text-align: center;
}

.staff-img {
	max-width: 318px;
	margin: 0 auto 24px;
}

.staff-name {
	color: #0075ff;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 12px;
}

.staff-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.qa {
	padding: 70px 40px 70px 0;
	margin: -30px 0 0;
}

.qa-inner {
	margin: 80px auto;
}

.qa-inner:nth-of-type(1) {
	margin-top: 0;
}

.qa-title_left {
	text-align: left;
	color: #0075ff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	margin-left: 190px;
}

.qa-title_right {
	text-align: right;
	color: #0075ff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	margin-right: 190px;
}

.qa-item {
	display: flex;
	align-items: center;
	gap: 32px;
	max-width: 1260px;
	margin: 0 auto 40px;
}

.qa-img {
	width: 160px;
	flex-shrink: 0;
}

.qa-box {
	background: #fff;
	border-radius: 12px;
	padding: 0 26px;
	line-height: 2;
	width: 100%;
	min-height: 160px;
	display: flex;
	align-items: center;
}

.qa-box p {
	font-size: 16px;
	letter-spacing: -.5px;
}

.interview-inner {
	margin: 0 auto;
	padding: clamp(80px, 19vw, 240px) 40px;
	position: relative;
}

.interview-image_left {
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	max-width: 1080px;
}

.interview-image_right {
	position: absolute;
	top: 0;
	right: calc(50% - 51vw);
	max-width: 1080px;
}

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

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

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

main::after {
	content: "";
	display: block;
	z-index: -20;
	position: absolute;
	top: -.3%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: 1440px;
	height: 155.1rem;
	background: url(../img/paternity-leave/bg-pc_02.png) no-repeat;
	background-size: cover;
}

@media (min-width: 768px) {
	.hero__buttons {
		position: absolute;
		right: 0;
		bottom: clamp(70px, 21.875vw - 105px, 210px);
	}

	.l-content__paternity-leave .l-content__lead {
		text-align: center;
	}

	.staff-item {
		flex: 0 1 318px;
	}

	.initiatives-slider .swiper-slide {
		width: calc((100% - 72px) / 3) !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%;
	}

	.hero__buttons {
		margin: 20px auto 0;
	}

	.hero__btn {
		font-size: 14px;
		padding: 2px 0;
	}

	.hero__btn {
		margin-bottom: 17px;
	}

	.container {
		padding-top: 0;
	}

	.staff-list {
		flex-wrap: wrap;
		gap: 40px 20px;
	}

	.staff-item {
		width: calc(50% - 10px);
	}

	.staff-item:nth-child(3) {
		width: 100%;
	}

	.staff-img {
		max-width: 238px;
	}

	.staff-item:nth-child(3) .staff-img {
		width: 50%;
	}

	.staff-name {
		font-size: 14px;
		text-align: center;
	}

	.staff-text {
		font-size: 12px;
		text-align: center;
	}

	.qa {
		padding: 40px 0;
	}

	.qa-inner {
		margin: 50px auto 40px;
	}

	.qa-title_left,
	.qa-title_right {
		font-size: 21px;
		line-height: 1.5;
		margin: 0 0 30px;
		text-align: center;
	}

	.qa-item {
		flex-direction: column;
		align-items: center;
		position: relative;
		margin-bottom: 24px;
	}

	.column-reverse .qa-item {
		flex-direction: column-reverse;
	}

	.qa-img {
		width: 160px;
		margin-bottom: -110px;
		z-index: 2;
	}

	.qa-box {
		width: 100%;
		padding: 80px 20px 24px;
		text-align: left;
	}

	.qa-box p {
		font-size: 14px;
	}

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

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

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

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

	.l-content {
		margin-bottom: 90px;
		padding-top: 50px;
	}

	.l-content:nth-last-of-type(1) {
		margin-bottom: 0;
	}

	.l-content__inner {
		flex-direction: column;
		gap: 0;
	}

	.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__image {
		width: 100%;
		margin: 0 auto;
	}

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

	.l-content__body {
		order: 4;
	}

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

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

	.l-content__body .l-content__lead span {
		display: block;
  		text-align: center;
		font-size: 14px;
		margin-bottom: 4px;
	}

	.l-content__paternity-leave {
		margin-bottom: 50px;
	}

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

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

	.mr-15 {
		margin-right: -15px;
	}

	.ml-15 {
		margin-left: -15px;
	}
}