@charset "UTF-8";

/* =============================
	common
	============================= */

/*文字色*/
.red {
	color: var(--i_sub_color);
}
.blue {
	color: var(--i_main_color);
}
.green {
	color: var(--i_sub3_color);
}
.yellow {
	color: var(--i_sub4_color);
}

/*移動したボタンの調整*/
#number_btn+div,
#ranking_btn+div{
	padding-top: 60px;
}

/*top余白調整*/
.index main>div{
	margin-top: 0;
}

/* =============================
	アニメーション定義
	============================= */

/*下から跳ねてフェードイン*/
@keyframes popBounce_mv {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	60% {
		transform: translateY(-10%);
		opacity: 1;
	}
	70% {
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		transform: translateY(5%);
		opacity: 1;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/* =============================
	top調整
	============================= */
.contents_btn01.block_button_2 a {
	background: transparent;
	padding: 0 !important;
}
.contents_btn01.block_button_2 a:hover {
	filter: brightness(1.2);
}
/* =============================
	mv
	============================= */

#my_mv .content_wrapper {
	z-index: auto;
}

/*グリッド配置*/
#my_mv .grid {
	display: grid;
	grid-template-columns: 37% 9% 12% 1fr;
	grid-template-rows: 40% 20% 10% 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	height: 84vh;
	position: relative;
}
#my_mv .grid div {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}
#my_mv .grid div:nth-of-type(1) {
	grid-area: 1 / 1 / 4 / 2;
}
#my_mv .grid div:nth-of-type(2) {
	grid-area: 1 / 2 / 2 / 3;
}
#my_mv .grid div:nth-of-type(3) {
	grid-area: 1 / 3 / 2 / 4;
}
#my_mv .grid div:nth-of-type(4) {
	grid-area: 1 / 4 / 3 / 5;
}
#my_mv .grid div:nth-of-type(5) {
	grid-area: 4 / 1 / 5 / 2;
}
#my_mv .grid div:nth-of-type(6) {
	grid-area: 2 / 2 / 5 / 4;
}
#my_mv .grid div.my_mvtxt {
	grid-area: 3 / 4 / 5 / 5;
	align-items: flex-start;
	justify-content: center;
	opacity: 0;
	transform: translateY(100%);
	animation: popBounce_mv 0.4s ease-out 0.7s forwards;
}
@media screen and (min-width: 901px) and (max-height: 800px) {
	#my_mv .grid {
		height: 76vh;
	}
}
@media screen and (max-width: 900px) {
	#my_mv .grid {
		display: grid;
		grid-template-columns: 1fr 20% 24%;
		grid-template-rows: 20% 5% 18% 27% 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
		height: 70vh;
	}
	#my_mv .grid div:nth-of-type(1) {
		grid-area: 1 / 1 / 3 / 2;
	}
	#my_mv .grid div:nth-of-type(2) {
		grid-area: 1 / 2 / 2 / 3;
	}
	#my_mv .grid div:nth-of-type(3) {
		grid-area: 1 / 3 / 2 / 4;
	}
	#my_mv .grid div:nth-of-type(4) {
		grid-area: 4 / 1 / 5 / 4;
	}
	#my_mv .grid div:nth-of-type(5) {
		grid-area: 3 / 1 / 4 / 2;
	}
	#my_mv .grid div:nth-of-type(6) {
		grid-area: 2 / 2 / 4 / 4;
	}
	#my_mv .grid div:nth-of-type(7) {
		grid-area: 5 / 1 / 6 / 4;
	}
}

/*背景色*/
#my_mv .grid div::before {
	content: "";
	display: block;
	width: 100%;
	height: 90%;
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
}
#my_mv .grid div:nth-of-type(1)::before {
	background: var(--i_main_color);
}
#my_mv .grid div:nth-of-type(2)::before {
	background: var(--i_sub3_color);
	height: 45%;
}
#my_mv .grid div:nth-of-type(3)::before {
	background: var(--i_sub4_color);
	height: 70%;
}
#my_mv .grid div:nth-of-type(4)::before {
	background: var(--i_sub_color);
}
#my_mv .grid div:nth-of-type(5)::before {
	background: var(--i_sub5_color);
}
#my_mv .grid div:nth-of-type(6)::before {
	background: var(--i_sub6_color);
}
@media screen and (max-width: 900px){
	#my_mv .grid div::before {
		height: 100%;
	}
}

/*画像位置調整*/
#my_mv .grid div img {
	position: absolute;
	bottom: 0;
	opacity: 0;
	transform: translateY(100%);
	filter: drop-shadow(6px 6px 8px rgb(0 0 0 / 40%));
	animation: popBounce_mv 0.4s ease-out forwards;
	z-index: 1;
}
#my_mv .grid div:nth-of-type(1) img {
	left: 8%;
	width: 98%;
	animation: popBounce_mv 0.4s ease-out 0.5s forwards;
	z-index: 2;
}
#my_mv .grid div:nth-of-type(2) img {
	left: 5%;
	width: 95%;
	animation: popBounce_mv 0.4s ease-out 0.6s forwards;
}
#my_mv .grid div:nth-of-type(3) img {
	width: 75%;
	animation: popBounce_mv 0.4s ease-out 0.7s forwards;
}
#my_mv .grid div:nth-of-type(4) img {
	width: 84%;
	animation: popBounce_mv 0.4s ease-out 0.8s forwards;
}
#my_mv .grid div:nth-of-type(5) img {
	z-index: 2;
	width: 82%;
	animation: popBounce_mv 0.4s ease-out 0.9s forwards;
}
#my_mv .grid div:nth-of-type(6) img {
	width: 75%;
	animation: popBounce_mv 0.4s ease-out 1.0s forwards;
}
@media screen and (max-width: 900px){
	#my_mv .grid div:nth-of-type(1) img {
		max-width: 25vh;
	}
	#my_mv .grid div:nth-of-type(4) img {
		max-width: 31vh;
		z-index: 3;
	}
	#my_mv .grid div:nth-of-type(6) img {
		width: 15vh;
	}
}
@media screen and (max-width: 600px){
	#my_mv .grid div:nth-of-type(5) img {
		max-width: 22vh;
	}
}

/*キャッチコピー*/
#my_mv .my_mvtxt {
	white-space: nowrap;
}
#my_mv .my_mvtxt h2 {
	font-family: "Squada One", sans-serif;
	font-weight: 400;
	font-size: 4.8vw;
	letter-spacing: 0rem;
}
#my_mv .my_mvtxt p {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	font-size: 2.2vw;
	line-height: 1.6;
	letter-spacing: 0.5rem;
}
@media screen and (max-width: 1300px){
	#my_mv .my_mvtxt h2 {
		font-size: 4.5vw;
	}
	#my_mv .my_mvtxt p {
		font-size: 2vw;
		letter-spacing: 0.45rem;
	}
}
@media screen and (max-width: 900px){
	#my_mv .grid div.my_mvtxt{
		align-items: center;
	 	justify-content: flex-start;
	}
	#my_mv .my_mvtxt h2 {
		font-size: 10.5vw;
	}
	#my_mv .my_mvtxt p {
		font-size: 4.5vw;
	}
}

/*イラストあしらい*/
#mv_outer::before,
#mv_outer::after,
#my_mv .grid::before,
#my_mv .grid::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: -8%;
	left: -3vw;
	pointer-events: none;
	background: url(/common/upload_data/justlink-recruitjp/image/mv_bg1.png) no-repeat top left/779px;
	opacity: 0;
	transform: translateY(100%);
	animation: popBounce_mv 0.4s ease-out 0.8s forwards;
}
#mv_outer::after {
	left: auto;
	right: -3vw;
	background: url(/common/upload_data/justlink-recruitjp/image/mv_bg2.png) no-repeat top right/701px;
	animation: popBounce_mv 0.4s ease-out 0.9s forwards;
}
#my_mv .grid::before,
#my_mv .grid::after{
	top: auto;
	bottom: 28%;
}
#my_mv .grid::before{
	background: url(/common/upload_data/justlink-recruitjp/image/mv_bg3.png) no-repeat bottom left/40vw;
	animation: popBounce_mv 0.4s ease-out 1.0s forwards;
}
#my_mv .grid::after{
	left: auto;
	 right: -10vw;
	background: url(/common/upload_data/justlink-recruitjp/image/mv_bg4.png) no-repeat bottom right/40vw;
	animation: popBounce_mv 0.4s ease-out 1.1s forwards;
}
@media screen and (min-width: 901px){
	#my_mv .grid::before,
	#my_mv .grid::after{
		display: none;
	}
}
@media screen and (max-width: 1600px){
	#mv_outer::before,
	#mv_outer::after{
		top: -2%;
		background-size: 40vw;
	}
}

/*ボタン*/
#my_mv .mv_btn {
	position: relative;
	margin-top: -70px;
	z-index: 3;
}
#my_mv .mv_btn a {
	transition: .5s ease-in-out;
}
#my_mv .mv_btn a:hover {
	filter: brightness(1.2);
}
#my_mv .mv_btn a img {
	max-width: 460px;
	filter: drop-shadow(6px 6px 8px rgb(0 0 0 / 40%));
}
@media screen and (max-width: 900px) {
	#my_mv .mv_btn {
		margin-top: 15px;
		z-index: auto;
		text-align: center;
	}
	#my_mv .mv_btn a img {
		max-width: 400px;
		width: 80%;
	}
}

/* =============================
	recruit
	============================= */
#recruit+div.contents_btn01 a {
	 max-width: none;
}

/* =============================
	entry
	============================= */
/*あしらい*/
#entry+div::before {
	content: "";
	display: block;
	width: 100%;
	max-width: 1700px;
	height: 40%;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	background-image: url(/common/upload_data/justlink-recruitjp/image/round_1.png),url(/common/upload_data/justlink-recruitjp/image/round_1.png);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
	background-size: 241px, 241px;
	z-index: -1;
}
@media screen and (max-width: 900px){
	#entry+div::before {
		height: 55vw;
		background-size: 35vw, 35vw;
	}
}

/*大見出し*/
#entry+div .heading.block_header_1{
	margin-bottom: 0;
}
#entry+div .heading.block_header_1 p {
	 position: relative;
	 padding: 70px 280px 0;
	margin-bottom: 0;
	 background: transparent;
	 font-family: "Squada One", sans-serif;
	 font-weight: 400;
	 letter-spacing: 0rem;
	 font-size: 25rem;
	 line-height: 1;
	 color: transparent;
	-webkit-text-stroke: 2px var(--i_sub_color);
	text-stroke: 2px var(--i_sub_color);
	 background-image: url('/common/upload_data/justlink-recruitjp/image/20250501170057.png'), url('/common/upload_data/justlink-recruitjp/image/20250501170101.png');
	 background-position: left bottom, right bottom;
	 background-repeat: no-repeat, no-repeat;
	 background-size: 220px, 260px;
}
#entry+div .heading.block_header_1 p::before {
	 content: "";
	 display: block;
	 width: 695px;
	 height: 94px;
	 position: absolute;
	 top: 0;
	 left: 50%;
	 transform: translateX(-50%);
	 pointer-events: none;
	 background: url(/common/upload_data/justlink-recruitjp/image/20250501174303.png) no-repeat top center/contain;
}
@media screen and (max-width: 1200px){
	#entry+div .heading.block_header_1 p {
		font-size: 22vw;
		padding: 7vw 22vw 0;
		background-size: 23%, 28%;
	}
	#entry+div .heading.block_header_1 p::before {
		width: 58%;
	}
}
@media screen and (max-width: 600px){
	#entry+div .heading.block_header_1 p {
		font-size: 19vw;
		padding: 11vw 24vw 20px;
		background-size: 25%, 30%;
		background-position: left calc(100% + 25px), right calc(100% + 26px);
	}
	#entry+div .heading.block_header_1 p::before {
		width: 85%;
	}
}

/*アイテム*/
#entry+div .inner_item{
	position: relative;
	overflow: hidden;
	min-height: 270px;
}
#entry+div .inner_item::before,
#entry+div .inner_item::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 20px;
	left: 20px;
	pointer-events: none;
	border-top: 4px solid #fff;
	border-left: 4px solid #fff;
}
#entry+div .inner_item::after{
	top: auto;
	bottom: 20px;
	left: auto;
	right: 20px;
	transform: rotate(180deg);
}
#entry+div .inner_item:nth-child(1){
	background: var(--i_main_color);
}
#entry+div .inner_item:nth-child(2){
	background: var(--i_sub3_color);
}
#entry+div .inner_item:nth-child(3){
	background: var(--i_sub4_color);
}
#entry+div .inner_item:nth-child(4){
	background: var(--i_sub6_color);
}
#entry+div .inner_item:nth-child(5){
	background: var(--i_sub_color);
}
#entry+div .inner_item:nth-child(6){
	background: var(--i_sub5_color);
}
#entry+div .heading.block_header_4 .h{
	color: #fff;
	font-size: 3.5rem !important;
	line-height: 1.3;
	margin-bottom: 20px;
}
#entry+div .heading.block_header_4 p {
	display: inline-block;
	color: #fff;
	font-family: "Squada One", sans-serif;
	font-weight: 400;
	font-size: 3rem;
	padding: 2px 20px;
	border: 1px solid #fff;
}
#entry+div .inner_item_img {
	width: 42%;
	padding-top: 0;
	height: 100%;
	pointer-events: none;
	position: absolute;
}
#entry+div .inner_item_img img{
	border-radius: 0;
	object-fit: contain;
	object-position: 100% 100%;
}
#entry+div .inner_item_txt {
	width: 60%;
	padding: 20px 40px 20px 20px;
	margin-right: 0;
	margin-left: auto;
}
@media screen and (max-width: 1600px){
	#entry+div .heading.block_header_4 .h {
		font-size: 2vw !important;
	}
}
@media screen and (max-width: 1400px){
	#entry+div .inner_item {
		min-height: 21vw;
	}
	#entry+div .inner_item>a {
		min-height: 20vw;
	}
	#entry+div .heading.block_header_4 p {
		font-size: 2.2vw;
		letter-spacing: 0.1rem;
	}
	#entry+div .inner_item_txt {
		width: 70%;
	}
	#entry+div .inner_item_img {
		width: 45%;
		margin: 30px 0 30px 5px;
	}
}
@media screen and (max-width: 900px){
	#entry+div .inner_item{
		width: 50%;
		min-height: 28vw;
	}
	#entry+div .inner_item::before{
		top: 10px;
		left: 10px;
	}
	#entry+div .inner_item::after {
		right: 10px;
		bottom: 10px;
	}
	#entry+div .inner_item_txt {
		padding: 15px 40px 15px 20px;
	}
	#entry+div .wrapper_item .inner_item_img::before {
		top: -24%;
		font-size: 20rem;
	}
	#entry+div .heading.block_header_4 .h {
		font-size: 1.9rem !important;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 600px){
	#entry+div .inner_item {
		width: 50%;
	}
	#entry+div .heading.block_header_4 .h {
		font-size: 4.2vw !important;
	}
	#entry+div .heading.block_header_4 p {
		font-size: 5vw;
		padding: 2px 10px 0;
		line-height: 1.3;
	}
}

/*ナンバリング*/
#entry+div .wrapper_item{
	counter-reset: num 0;
}
#entry+div .wrapper_item .inner_item_img::before {
	counter-increment: num;
	content: counter(num);
	display: block;
	width: 100%;
	height: 22rem;
	position: absolute;
	top: -4rem;
	left: -40%;
	pointer-events: none;
	font-size: 27rem;
	line-height: 1;
	font-family: "Cal Sans", sans-serif;
	font-weight: 400;
	color: #fff;
	opacity: 0.3;
}
@media screen and (max-width: 1400px){
	#entry+div .wrapper_item .inner_item_img::before{
		left: -25%;
	}
}
@media screen and (max-width: 480px){
	#entry+div .wrapper_item .inner_item_img::before{
		font-size: 18rem;
		top: -3rem;
	}
}

/* =============================
	color_h
	============================= */
#color_h+section .heading.block_header_2 .h {
	color: transparent;
	-webkit-text-stroke: 2px var(--i_sub5_color);
	text-stroke: 2px var(--i_sub5_color);
}
#color_h+section .heading.block_header_2+p span {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	line-height: 1.8;
	font-size: 3.4rem!important;
	letter-spacing: 0.6rem;
}
#color_h+section .inner_item_txt{
	position: relative;
}
#color_h+section .inner_item_txt::before {
	content: "";
	display: block;
	width: 370px;
	height: 280px;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-55%);
	pointer-events: none;
	background: url(/common/upload_data/justlink-recruitjp/image/20250501184529.png) no-repeat bottom left/contain;
}
@media screen and (min-width: 901px){
	#color_h+section .inner_item_txt{
		padding-bottom: 220px;
	}
	#color_h+section .inner_item_img{
		margin-top: 40px;
	}
}
@media screen and (min-width: 901px) and (max-width: 1600px){
	#color_h+section .inner_item_txt::before{
		display: none;
	}
	#color_h+section .inner_item_txt {
		padding-bottom: 0;
	}
}
@media screen and (max-width: 1200px){
	#color_h+section .heading.block_header_2+p span {
		font-size: 3vw!important;
	}
}
@media screen and (max-width: 900px){
	#color_h+section .inner_item_img img {
		max-width: 530px !important;
	}
	#color_h+section .inner_item_txt .heading{
		margin-bottom: 0;
	}
	#color_h+section .heading.block_header_2+p span {
		font-size: 5.2vw !important;
		line-height: 1.4;
	}
	#color_h+section .inner_item_txt::before {
		width: 40vw;
		top: -15%;
		bottom: auto;
		right: -10%;
		left: auto;
		transform: none;
		background-position: top right;
	}
}
@media screen and (max-width: 600px){
	#color_h+section .inner_item_txt p {
		margin-bottom: 0;
	}
}

/* =============================
	btn_3
	============================= */
#btn_3+div .wrapper_item {
	box-shadow: 7px 7px 13px rgb(153 153 153 / 60%);
}
#btn_3+div.composite_box01 .inner_item{
	width: calc(100% / 3);
	margin-left: 0!important;
	margin-bottom: 0;
}
#btn_3+div .inner_item_img{
	margin-bottom: 0;
}
#btn_3+div a+.inner_item_txt {
	margin-top: 0;
}
@media screen and (min-width: 481px){
	#btn_3+div .inner_item_img img {
		object-fit: contain;
		height: auto!important;
	}
}

/* =============================
	ranking
	============================= */
a[id^="ranking"]+section{
	overflow: visible;
}
a[id^="ranking"]+section::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle 2px at center, #269ac2 100%, transparent 0%);
	background-size: 10px 10px;
	background-position: left bottom;
	z-index: -1;
}
#ranking_fukuri+section::before{
	background-position: left top;
}
a[id^="ranking"]+section::after {
	content: "RANKING";
	position: absolute;
	top: 2%;
	left: -3%;
	transform: rotate(-90deg) translateX(-100%);
	transform-origin: top left;
	pointer-events: none;
	font-family: "Squada One", sans-serif;
	font-size: 13vw;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--i_bg_color);
	white-space: nowrap;
}
a[id^="ranking"]+section>.content_wrapper::before,
a[id^="ranking"]+section>.content_wrapper::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--i_bg_color);
	border: 3px solid var(--i_main_color);
	pointer-events: none;
}
a[id^="ranking"]+section>.content_wrapper::after{
	top: 12px;
	left: 12px;
	background: transparent;

	z-index: -1;
}
a[id^="ranking"]+section .wrapper_item {
	position: relative;
	z-index: 1;
}
a[id^="ranking"]+section .inner_item_txt>p:first-of-type {
	display: inline-block;
	margin-left: -60px;
	background: var(--i_main_color);
	color: #fff;
	font-size: clamp(1.9rem, 4vw, 3.8rem);
	padding: 10px 80px;
	margin-bottom: 25px;
	border-radius: 0 99px 99px 0;
	white-space: nowrap;
}
a[id^="ranking"]+section .inner_item_txt>p:first-of-type span[style*="color:#e8382f;"]{
	margin: 0 10px;
}
a[id^="ranking"]+section .inner_item_txt>p:first-of-type span[style*="background-color:#ffffff;"] {
	padding: 0 10px 2px;
	font-family: "Zen Maru Gothic", serif;
}
a[id^="ranking"]+section .inner_item_txt ul{
	margin-bottom: 35px;
}
a[id^="ranking"]+section .inner_item_txt ul li {
	font-size: clamp(1.8rem, 5vw, 3rem);
	list-style: none;
	margin-bottom: 20px;
}
a[id^="ranking"]+section .inner_item_txt ul li:first-of-type {
	padding-top: 15px;
	background: url(/common/upload_data/justlink-recruitjp/image/20250520164049.png) no-repeat top left/48px;
}
a[id^="ranking"]+section .inner_item_txt ul li strong span{
	font-size: clamp(2.6rem, 7vw, 5rem)!important;
}
@media screen and (max-width: 1300px){
	a[id^="ranking"]+section::after{
		display: none;
	}
}
@media screen and (max-width: 900px){
	a[id^="ranking"]+section .inner_item_txt>p:first-of-type {
		padding: 8px 20px;
		margin-left: -45px;
		letter-spacing: -0.05rem;
	}
}
@media screen and (max-width: 480px){
	a[id^="ranking"]+section .inner_item_txt>p:first-of-type {
		padding: 8px;
		margin-left: -55px;
	}
	a[id^="ranking"]+section .inner_item_txt>p:first-of-type span[style*="color:#e8382f;"] {
		margin: 0px 4px;
	}
	a[id^="ranking"]+section .inner_item_txt ul li:first-of-type{
		background-size: 12%;
	}
}

/* =============================
	ranking_fukuri
	============================= */
#ranking_fukuri+section::after {
	top: auto;
	bottom: 2%;
	left: auto;
	right: -3%;
	transform-origin: bottom right;
	transform: rotate(-90deg) translateX(100%);
}

/* =============================
	ranking_btn
	============================= */
#ranking_btn+div.contents_btn01 a{
	padding-bottom: 15px!important;
}

/* =============================
	job_desc_bgh_o
	============================= */
#job_desc_bgh_o+section::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle 2px at center, #fcec74 100%, transparent 0%);
	background-size: 10px 10px;
	background-position: 0 0;
	z-index: -1;
}
#job_desc_bgh_o+section::after{
	content: "";
	display: block;
	width: 100%;
	height: 150px;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background: var(--i_bg_color);
}
@media screen and (max-width: 800px){
	#job_desc_bgh_o+section::after {
		height: 165px;
	}
}

/* =============================
	new_mid
	============================= */

a[id*="new_mid"]+div .wrapper_item {
	justify-content: center;
}
a[id*="new_mid"]+.composite_box01:not(.col2):not(.block_images_7):not(.block_images_8):not(.block_images_10):not(.block_images_11):not(.block_images_12):not(.block_images_13):not(.block_images_15):not(.block_images_17):not(.block_images_21) .inner_item{
	margin-left: 0!important;
	width: 50%!important;
	margin-bottom: 0 !important;
}
a[id*="new_mid"]+div .heading.block_header_1{
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	pointer-events: none;
}
a[id*="new_mid"]+div .heading.block_header_1 p {
	position: relative;
	font-size: clamp(1.8rem, 4vw, 4rem);
	background: var(--i_txt_color);
	border-radius: 99px;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	letter-spacing: 0.4rem;
	margin-bottom: 5px;
}
a[id*="new_mid"]+div .heading.block_header_1 p::before {
	content: "";
	display: block;
	position: absolute;
	width: 45px;
	height: 30px;
	bottom: -30%;
	left: 55%;
	pointer-events: none;
	background: var(--i_txt_color);
	clip-path: polygon(20% 0, 0% 100%, 100% 0);
}
a[id*="new_mid"]+div .heading.block_header_1 .h{
	font-size: clamp(2.1rem, 5vw, 7.8rem);
	color: #fff;
	font-weight: 600;
	letter-spacing: -0.5rem;
}
@media screen and (max-width: 800px){
	a[id*="new_mid"]+div .heading.block_header_1 {
		top: 3%;
	}
	a[id*="new_mid"]+div .heading.block_header_1 .h {
		letter-spacing: -0.1rem;
	}
}
@media screen and (max-width: 480px){
	#new_mid+div{
		display: none;
	}
}

/* =============================
	new_mid_sp
	============================= */
@media screen and (min-width: 481px){
	#new_mid_sp+div{
		display: none;
	}
}
@media screen and (max-width: 480px){
	#new_mid_sp+div .heading.block_header_1 {
		top: 37%;
	}
}

/* =============================
	interview_bgh_r
	============================= */
#interview_bgh_r+div .wrapper_item {
	overflow: visible;
}
#interview_bgh_r+div .inner_item_txt p {
	font-weight: 600;
}
#interview_bgh_r+div .inner_item>a:hover * {
    opacity: 1;
}
#interview_bgh_r+div a:hover {
	box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.3);
	transition: box-shadow 0.2s ease;
}
#interview_bgh_r+div .inner_item>a .inner_item_txt{
	transition: opacity 0.2s ease;
}
#interview_bgh_r+div .inner_item>a:hover .inner_item_txt {
	opacity: 0.6;
}

/*背景あしらい*/
#interview_bgh_r+div .inner_item .inner_item_img{
	position: relative;
	margin-bottom: 0;
}
#interview_bgh_r+div .inner_item .inner_item_img::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
	background: var(--i_main_color);
	clip-path: polygon(0 55%, 100% 30%, 100% 100%, 0% 100%);
	z-index: -1;
}
#interview_bgh_r+div .inner_item:nth-of-type(2) .inner_item_img::before{
	background: var(--i_sub3_color);
	clip-path: polygon(0 20%, 100% 35%, 100% 100%, 0% 100%);
}
#interview_bgh_r+div .inner_item:nth-of-type(3) .inner_item_img::before{
	background: var(--i_sub6_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(4) .inner_item_img::before{
	background: var(--i_sub5_color);
	clip-path: polygon(0 50%, 100% 65%, 100% 100%, 0% 100%);
}
#interview_bgh_r+div .inner_item:nth-of-type(4) .inner_item_img img {
	padding-left: 20px;
}

/*テキスト枠*/
#interview_bgh_r+div .inner_item_txt {
	margin-top: 0;
	padding: 15px;
	border: 3px solid var(--i_main_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(2) .inner_item_txt{
	border-color: var(--i_sub3_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(3) .inner_item_txt{
	border-color: var(--i_sub6_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(4) .inner_item_txt{
	border-color: var(--i_sub5_color);
}

/*役職*/
#interview_bgh_r+div .inner_item .heading {
	text-align: left;
}
#interview_bgh_r+div .heading.block_header_4 .h {
	display: inline-block;
	padding: 5px 10px;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 0.2rem!important;
	background: var(--i_main_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(2) .heading.block_header_4 .h{
	background: var(--i_sub3_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(3) .heading.block_header_4 .h{
	background: var(--i_sub6_color);
}
#interview_bgh_r+div .inner_item:nth-of-type(4) .heading.block_header_4 .h{
	background: var(--i_sub5_color);
}

/* =============================
	about_h
	============================= */
#about_h+section{
	overflow: visible;
}
#about_h+section .inner_item_img {
	margin-top: -100px;
}
#about_h+section .heading.block_header_2 .h{
	opacity: .5;
}
#about_h+section .heading.block_header_2 p.is-active {
	display: inline-block;
	font-size: 3.5rem;
	line-height: 1.3;
	letter-spacing: 0.3rem;
	color: var(--i_bg_color);
	background: var(--i_sub_color);
	padding: 6px 40px 0px;
	font-weight: 600;
}
@media screen and (max-width: 900px){
	#about_h+section .inner_item_img img {
		max-width: 400px !important;
	}
}
@media screen and (max-width: 800px){
	#about_h+section .inner_item_txt .heading{
		text-align: center;
	}
	#about_h+section .heading.block_header_2 p.is-active{
		font-size: 2.5rem;
	}
}

/* =============================
	about_item
	============================= */
a[id^="about_item"]+div .wrapper_item {
	gap: 30px 20px;
	overflow: visible;
}
a[id^="about_item"]+div .inner_item {
	position: relative;
	background: var(--i_bg_color)!important;
	box-shadow: 5px 5px 8px rgb(0 0 0 / 25%);
	padding: 10px;
	overflow: hidden;
}
a[id^="about_item"]+div .inner_item::before{
	content: "";
	display: block;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	position: absolute;
	top: 10px;
	left: 10px;
	border: 3px solid var(--i_main_color);
	border-radius: 10px;
	box-sizing: border-box;
	pointer-events: none;
}
a[id^="about_item"]+div .inner_item a {
	width: 25%!important;
	padding-top: 24%!important;
	margin: 20px 0 20px 20px!important;
}
a[id^="about_item"]+div .inner_item a,
a[id^="about_item"]+div .inner_item_txt{
	z-index: 1;
}
a[id^="about_item"]+div .heading.block_header_4 .h{
	font-size: 2.2rem !important;
	color: var(--i_txt_color);
	line-height: 1.3;
}
a[id^="about_item"]+div .heading.block_header_4 p {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--i_txt_color);
}
a[id^="about_item"]+div.composite_box01.block_images_17 .inner_item_img img{
	border-radius: 0!important;
	height: auto!important;
}
@media screen and (max-width: 900px){
	a[id^="about_item"]+div .heading.block_header_4 .h {
		font-size: 2rem !important;
	}
}
@media screen and (max-width: 600px){
	a[id^="about_item"]+div.composite_box01.block_images_17 .inner_item {
		width: 100% !important;
	}
	a[id^="about_item"]+div.composite_box01.block_images_17 .inner_item_img img {
		width: 85% !important;
	}
}
@media screen and (max-width: 480px){
	a[id^="about_item"]+div .heading.block_header_4 .h {
		font-size: 5vw !important;
	}
}

/*あしらい*/
@media screen and (min-width: 1301px){
	a[id^="about_item"]+div{
		overflow: visible;
	}
	a[id^="about_item"]+div::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		max-width: 1850px;
		position: absolute;
		bottom: 7%;
		left: 50%;
		transform: translateX(-50%);
		pointer-events: none;
		filter: brightness(0) invert(1);
	}
	#about_item+div::before,
	#about_item_sp+div::before{
		background: url(/common/upload_data/justlink-recruitjp/image/round_1.png) no-repeat bottom right/300px;
	}
	#about_item_2+div::before,
	#about_item_2_sp+div::before {
		background: url(/common/upload_data/justlink-recruitjp/image/round_2.png) no-repeat left bottom/366px;
	}
}

/*ナンバリング*/
#about_item+div .wrapper_item,
#about_item_sp+div .wrapper_item{
	counter-reset: num 0;
}
#about_item_2+div .wrapper_item,
#about_item_2_sp+div .wrapper_item{
	counter-reset: num 6;
}
a[id^="about_item"]+div .wrapper_item .inner_item::after {
	counter-increment: num;
	content: counter(num);
	display: block;
	height: 12rem;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 2px 0 15px;
	pointer-events: none;
	font-size: 14rem;
	line-height: 1;
	text-align: right;
	font-family: "Cal Sans", sans-serif;
	font-weight: 400;
	color: var(--i_sub4_color);
	background: #fff;
}
@media screen and (max-width: 900px){
	a[id^="about_item"]+div .wrapper_item .inner_item::after {
		font-size: 8vw;
		height: 6.5vw;
	}
}
@media screen and (max-width: 600px){
	a[id^="about_item"]+div .wrapper_item .inner_item::after {
		font-size: 20vw;
		height: 16vw;
	}
}

/*sp時２カラム*/
@media screen and (max-width: 600px){
	#about_item_sp+div.composite_box01.block_images_17 .inner_item,
	#about_item_2_sp+div.composite_box01.block_images_17 .inner_item {
		width: 31% !important;
	}
	#about_item_sp+div .wrapper_item .inner_item::after,
	#about_item_2_sp+div .wrapper_item .inner_item::after {
		font-size: 13vw;
		height: 11vw;
	}
	#about_item_sp+div .inner_item_txt,
	#about_item_2_sp+div .inner_item_txt {
		width: calc(80% - 20px);
		padding: 15px 5px;
	}
	#about_item_sp+div .heading.block_header_4 .h,
	#about_item_2_sp+div .heading.block_header_4 .h {
		font-size: 3.8vw !important;
	}
	#about_item_sp+div .heading.block_header_4 p,
	#about_item_2_sp+div .heading.block_header_4 p {
		font-size: 1.3rem;
	}
	#about_item_sp+div .inner_item_img,
	#about_item_2_sp+div .inner_item_img{
		width: 38px;
		padding-top: 35px;
		margin: 8px 0 8px 8px;
	}
}

/* =============================
	message_h
	============================= */
#message_h+section{
	overflow: visible;
}
#message_h+section .heading.block_header_2 .h {
	color: #bbe9d9;
	white-space: nowrap;
	z-index: -1;
}
#message_h+section .heading.block_header_2 p{
	color: var(--i_sub3_color);
	font-size: 3.4rem;
	font-weight: 600;
}
#message_h+section .inner_item_img{
	position: relative;
}
#message_h+section .inner_item_img::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 40px;
	left: 30px;
	pointer-events: none;
	background: var(--i_sub3_color);
	z-index: -1;
}
#message_h+section .inner_item_img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -35%;
	left: 18%;
	pointer-events: none;
	background: url(/common/upload_data/justlink-recruitjp/image/20250502112622.png) no-repeat bottom right/220px;
}
@media screen and (min-width: 1101px){
	#message_h+section .inner_item_txt{
		padding-right: 100px;
	}
	#message_h+section .inner_item_txt .heading {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 1400px){
	#message_h+section .inner_item_img::after {
		bottom: -28%;
		left: 2%;
		pointer-events: none;
		background-size: 17vw;
	}
}
@media screen and (max-width: 900px){
	#message_h+section{
		padding-bottom: 0;
	}
	#message_h+section .inner_item_img {
		display: inline-block;
		margin: 0 auto 50px;
		left: 50%;
		transform: translateX(-50%);
	}
	#message_h+section .inner_item_img::before {
		top: 20px;
		left: 20px;
	}
	#message_h+section .inner_item_img::after {
		bottom: -8vw;
		background-size: 25vw;
	}
	#message_h+section .inner_item_img img{
		width: auto !important;
		max-width: 100%!important;
	}
	#message_h+section .heading.block_header_2 p{
		font-size: 2.6rem;
	}
}

/* =============================
	process_bgh_r_outline
	============================= */
#process_bgh_r_outline+div .heading.block_header_4 .h{
	color: #fff;
}
#process_bgh_r_outline+div .inner_item_txt{
	margin-top: 0;
}
#process_bgh_r_outline+div .composite_box01 .wrapper_item {
	column-gap: 20px;
}
#process_bgh_r_outline+div .inner_item {
	width: calc(100% / 6);
	margin-left: 0!important;
	aspect-ratio: 2 / 1.7;
	justify-content: center;
	box-sizing: border-box;
	margin-bottom: 0;
}
#process_bgh_r_outline+div .inner_item::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background: var(--i_sub_color);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	z-index: -1;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(2)::before{
	background: var(--i_main_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(3)::before{
	background: var(--i_sub3_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(4)::before{
	background: var(--i_sub4_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(5)::before{
	background: var(--i_sub6_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(6)::before{
	background: var(--i_sub5_color);
}
@media screen and (max-width: 900px){
	#process_bgh_r_outline+div{
		padding-bottom: 80px;
		padding-top: 0;
	}
	#process_bgh_r_outline+div .wrapper_item {
		row-gap: 60px;
	}
	#process_bgh_r_outline+div .inner_item{
		width: calc(100% / 3);
	}
}
@media screen and (max-width: 480px){
	#process_bgh_r_outline+div .wrapper_item {
		row-gap: 30px;
	}
	#process_bgh_r_outline+div .inner_item {
		width: calc(100% / 2);
	}
}

/*ナンバリング*/
#process_bgh_r_outline+div .wrapper_item{
	counter-reset: num 0;
	overflow: visible;
	align-items: flex-start;
	padding-top: 80px;
	padding-bottom: 20px;
}
#process_bgh_r_outline+div .inner_item{
	position: relative;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(2n){
	margin-top: 7%;
}
#process_bgh_r_outline+div .inner_item::after {
	counter-increment: num;
	content: counter(num);
	display: block;
	position: absolute;
	top: 0;
	left: 22%;
	transform: translateY(-100%);
	pointer-events: none;
	font-size: 6.5rem;
	line-height: 0.7;
	font-family: "Cal Sans", sans-serif;
	font-weight: 600;
	color: var(--i_sub_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(2)::after{
	color: var(--i_main_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(3)::after{
	color: var(--i_sub3_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(4)::after{
	color: var(--i_sub4_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(5)::after{
	color: var(--i_sub6_color);
}
#process_bgh_r_outline+div .inner_item:nth-of-type(6)::after{
	color: var(--i_sub5_color);
}
@media screen and (max-width: 480px){
	#process_bgh_r_outline+div .wrapper_item {
		padding-top: 35px;
		padding-bottom: 0;
	}
	#process_bgh_r_outline+div .inner_item:nth-of-type(2n) {
		margin-top: 20%;
	}
}

/*イラスト*/
#process_bgh_r_outline+div .inner_item .inner_item_txt::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(1) .inner_item_txt::before {
	top: 40%;
	background: url(/common/upload_data/justlink-recruitjp/image/process_1.png) no-repeat bottom center/55%;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(3) .inner_item_txt::before {
	top: -30%;
	left: 18%;
	background: url(/common/upload_data/justlink-recruitjp/image/process_3.png) no-repeat top right/63%;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(4) .inner_item_txt::before {
	top: 20%;
	left: -60%;
	background: url(/common/upload_data/justlink-recruitjp/image/process_4.png) no-repeat bottom center/65%;
}
#process_bgh_r_outline+div .inner_item:nth-of-type(6) .inner_item_txt::before {
	top: 30%;
	left: -48%;
	background: url(/common/upload_data/justlink-recruitjp/image/process_6.png) no-repeat bottom center/55%;
}
@media screen and (max-width: 900px){
	#process_bgh_r_outline+div .inner_item:nth-of-type(3) .inner_item_txt::before {
		top: 20%;
		left: 4%;
		background-position: bottom right;
		background-size: 60%;
	}
	#process_bgh_r_outline+div .inner_item:nth-of-type(4) .inner_item_txt::before {
		top: 18%;
		left: 25%;
		background-position: bottom right;
		background-size: 62%;
	}
}
@media screen and (max-width: 480px){
	#process_bgh_r_outline+div .inner_item:nth-of-type(1) .inner_item_txt::before {
		top: 32%;
		background-size: 50%;
	}
	#process_bgh_r_outline+div .inner_item:nth-of-type(4) .inner_item_txt::before {
		top: 45%;
		left: 12%;
		background-size: 60%;
	}
}

/*SP時コンテンツ幅調整*/
@media screen and (max-width: 900px){
	#btn_3+div .wrapper_item,
	a[id^="ranking"]+section>.content_wrapper,
	#job_desc_bgh_o+section>.content_wrapper,
	#interview_bgh_r+div>.content_wrapper{
		width: 90%;
		margin: 0 auto;
	}
}