/* ---------- HERO ---------- */
.hero {
	position: relative;
	margin-bottom: 170px;
}

.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 #f5ab9f;
}

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

.hero__img {
	width: 71%;
	height: auto;
	padding-right: 20px;
}

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

.hero__btn {
	display: block;
	width: clamp(315px, 35vw, 390px);
	padding: 3px 0;
	margin: 16px 0;
	border-radius: 999px;
	border: 1px solid #ec685d;
	text-align: center;
	color: #ec685d;
	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: #ec685d;
	top: 54%;
	transform: translateY(-50%) rotate(90deg);
}

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

.hero__btn:hover {
	background: #ec685d;
	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: 100px;
	margin: -65px 0 145px;
}

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

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

.l-content__inner.block {
	display: block;
    margin: auto;
    text-align: center;
}

.l-content__left {
	flex: 1;
}

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

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

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

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

.l-content__note {
	display: inline-block;
	text-align: left;
	font-size: 16px;
	margin-top: 32px;
}

.l-content__subtitle {
	font-size: 20px;
	color: #ec685d;
	margin-bottom: -10px;
}

.l-content__subtitle span {
	font-size: 24px;
}

.l-content__facts {
	display: flex;
	justify-content: center;
}

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

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

.career-card__inner {
  position: relative;
  max-width: 800px;
  margin: 35px auto 0;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    #e58b8b 0%,
    #f4a6a0 50%,
    #f7b5a8 100%
  );
  	display: block;
    padding: 50px 15px 35px;
}

.career-card__inner:hover {
	opacity: 0.8;
}

.career-card__band {
  	position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: auto;
	width: 351px;
}

@media (max-width: 767px) {
	.career-card__band {
		width: 210px;
		top: -15px;
	}
}

.career-card__title {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin: 0 0 25px;
}

.career-card__image {
	max-width: 523px;
	margin: 0 auto;
	padding: 0 45px;
}

.career-card__arrow {
  position: absolute;
  right: 64px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.career-card__arrow span {
  width: 17px;
  height: 17px;
  border-top: 7px solid #ec685d;
  border-right: 7px solid #ec685d;
  transform: rotate(45deg);
}

/* ===== background ===== */
.hero::before {
	content: "";
	display: block;
	z-index: -10;
	position: absolute;
	top: 22%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: 1440px;
	height: clamp(15rem, 27vw, 24rem);
	background: url(../img/career/mv-bg.png) no-repeat;
	background-size: cover;
}

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

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

@media (min-width: 768px) {
	.hero__buttons {
		position: absolute;
		right: 0;
		bottom: clamp(-155px, calc(-155px + (80 * (100vw - 768px) / 672)), -70px);
	}

	.container {
		margin-bottom: -85px;
	}

	.l-content__facts img {
		width: 30%;
		max-width: 281px;
	}

	.l-content__facts img:nth-of-type(2) {
		margin: 0 40px;
	}

	.l-content__inner.row-reverse {
		flex-direction: row-reverse;
		margin: 32px 0 -48px;
	}

	.l-content__inner.block div img:nth-of-type(2) {
		margin: 0 40px;
	}

	.l-content__note-wrap {
		text-align: right;
	}

	.row-reverse .l-content__image {
		margin-left: -85px;
	}

	.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: 15px auto 0;
	}

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

	.hero__btn {
		margin-bottom: 17px;
	}

	.container {
		padding-top: 0;
	}

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

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

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

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

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

	.l-content__inner {
		flex-direction: column;
		gap: 0;
		margin-top: 30px;
	}

	.l-content__left {
		display: contents;
	}

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

	.l-content__title {
		font-size: 28px;
		margin: 0 0 20px;
		order: 2;
		text-align: center;
		line-height: 1.3;
	}

	.l-content__facts {
		flex-direction: column;
		align-items: center;
	}

	.l-content__facts img {
		max-width: 190px;
	}

	.l-content__facts img:nth-of-type(2) {
		margin: 20px 0;
	}

	.l-content__inner.block div img:nth-of-type(2) {
		margin: 20px 0;
	}

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

	.row-reverse .l-content__image {
		max-width: 300px;
		width: 100%;
		margin: 0 0 0 -130px;
	}

	.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__subtitle {
		font-size: 14px;
		text-align: center;
	}

	.l-content__subtitle span {
		font-size: 18px;
	}

	.career-card__title {
		font-size: 16px;
	}

	.career-card__arrow {
		right: 16px;
        bottom: 80px;
		width: 30px;
		height: 30px;
	}

	.career-card__arrow span {
		width: 10px;
		height: 10px;
		border-top: 4px solid #ec685d;
		border-right: 4px solid #ec685d;
	}

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

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

	.hero::before {
		top: 45%;
		left: 50%;
		height: clamp(6rem, 26vw, 14rem);
	}
}