@charset "utf-8";
/*--------------------------------------------------

	MAIN VISUAL │ メインビジュアル

--------------------------------------------------*/
#mv {margin-bottom: 10%;}
#mv .container {position: relative;}
#mv .container::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 50%;
	background: linear-gradient(transparent, #fff);
}
#mv .container .logo {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 13%;
	padding: .8vw 1.8vw .8vw 2.5vw;
	border-bottom-right-radius: 1.8em;
	background: #fff;
}
#mv .container .instagram {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5%;
	right: 3%;
	z-index: 3;
	width: 5.8vw;
	height: 5.8vw;
	border-radius: 50%;
	background: #fff;
}
#mv .container .instagram:hover {transform: scale(1.2);}
#mv .container .instagram img {width: 45%;}
#mv .container .wrap {
	position: absolute;
	bottom: -10%;
	left: 50%;
	z-index: 3;
	transform: translateX(-50%);
	width: 100%;
}
#mv .container .wrap h1 {width: 35%;margin: 0 auto;}
#mv .container .wrap p {color: #5F39FF;font-size: 2.3vw;line-height: 1.4;text-align: center;}
#mv .container ul.pc_list {display: flex;}
#mv .container ul.pc_list li {
	flex: 1;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-100%);
	animation: slideDown .7s ease-out forwards;
}
#mv .container ul.pc_list li:nth-child(1) {animation-delay: 0.3s;}
#mv .container ul.pc_list li:nth-child(2) {animation-delay: 0.05s;}
#mv .container ul.pc_list li:nth-child(3) {animation-delay: 0.1s;}
#mv .container ul.pc_list li:nth-child(4) {animation-delay: 0.2s;}
@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.dynamic-animation #mv .container ul.pc_list li {animation: smoothSlideDown 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;}
@keyframes smoothSlideDown {
	0% {
		opacity: 0;
		transform: translateY(-80px) scale(0.95);
	}
	50% {
		opacity: 0.7;
		transform: translateY(10px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.stagger-fast #mv .container ul.pc_list li:nth-child(1) {animation-delay: 0.1s;}
.stagger-fast #mv .container ul.pc_list li:nth-child(2) {animation-delay: 0.2s;}
.stagger-fast #mv .container ul.pc_list li:nth-child(3) {animation-delay: 0.3s;}
.stagger-fast #mv .container ul.pc_list li:nth-child(4) {animation-delay: 0.4s;}

.stagger-slow #mv .container ul.pc_list li:nth-child(1) {animation-delay: 0.5s;}
.stagger-slow #mv .container ul.pc_list li:nth-child(2) {animation-delay: 0.8s;}
.stagger-slow #mv .container ul.pc_list li:nth-child(3) {animation-delay: 1.1s;}
.stagger-slow #mv .container ul.pc_list li:nth-child(4) {animation-delay: 1.4s;}
#mv .container ul.sp_list {display: none;}
@media only screen and ( max-width : 767px ) {
	#mv {margin-bottom: 30%;}
	#mv .container::before {height: 30%;}
    #mv .container .logo {width: 34%;padding: 2.5vw 5.8vw 2.5vw 4.5vw;border-bottom-right-radius: 2.5em;}
	#mv .container .instagram {top: 1%;right: 3%;width: 10.8vw;height: 10.8vw;}
	#mv .container figure {display: block;}
	#mv .container .wrap h1 {width: 90%;}
	#mv .container .wrap p {font-size: 7vw;}
	#mv .container ul.pc_list {display: none;}
	#mv .container ul.sp_list {display: flex;flex-wrap: wrap;}
	#mv .container ul.sp_list li {width: 50%;}
}
/*--------------------------------------------------

	Business │ 通信事業本部 / クラウド事業本部

--------------------------------------------------*/
/* Fixed追従タブスイッチャー */
.fixed-tab-switcher {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(120px);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	visibility: hidden;
}
.fixed-tab-switcher.show {transform: translateY(-50%) translateX(0);opacity: 1;visibility: visible;}
.fixed-tab-switcher.show:hover {transform: translateY(-50%) translateX(0);}
.fixed-tab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 120px;
	height: 100px;
	border: none;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
	color: #fff;
	font-size: clamp(14px, calc(14px + 6 * ((100vw - 375px) / 1545)), 20px);
	transition: all 0.3s ease;
	cursor: pointer;
}
.fixed-tab-btn.mobile {background: #FA5FC7 url(../img/page/career/business/mobile/Icon_mobile_fix.svg) no-repeat center / 30%;}
.fixed-tab-btn.cloud {background: #8261FD url(../img/page/career/business/cloud/Icon_cloud_fix.svg) no-repeat center / 60%;}
.fixed-tab-switcher.show .fixed-tab-btn:hover {transform: scale(1.05);}
.fixed-tab-btn::before {
	content: '';
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.fixed-tab-btn:hover::before {opacity: 1;}
.fixed-tab-btn span {
	position: relative;
	z-index: 2;
	line-height: 1.2;
	text-align: center;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0.6;
	}
}
/* Button */
#business .inner {width: 95%;max-width: 100%;}
#business .ChangeElem_Btn_Content {margin-bottom: clamp(30px, calc(30px + 70 * ((100vw - 375px) / 1545)), 100px);}
#business .ChangeElem_Btn_Content li {position: relative;width: 48.5%;border-radius: 30px;background: #F8F5FA;}
#business .ChangeElem_Btn_Content li figure {position: relative;border-radius: 30px 30px 0 0;overflow: hidden;}
#business .ChangeElem_Btn_Content li figure figcaption {
	position: absolute;
	top: 0;
	padding: .15em 1.5em;
	color: #fff;
	font-weight: bold;
	font-size: clamp(20px, calc(20px + 16 * ((100vw - 375px) / 1545)), 36px);
	letter-spacing: .06em;
	text-align: center;
}
#business .ChangeElem_Btn_Content li:nth-child(1) figure figcaption {
	left: 0;
	border-radius: 30px 0;
	background: linear-gradient(90deg, #FE74D1, #815CFF);
}
#business .ChangeElem_Btn_Content li:nth-child(2) figure figcaption {
	right: 0;
	border-radius: 0 30px;
	background: linear-gradient(90deg, #A37AFF, #3D46FB);
}
#business .ChangeElem_Btn_Content li .wrap {
	padding: clamp(20px, calc(20px + 30 * ((100vw - 375px) / 1545)), 50px);
	padding-top: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	padding-bottom: clamp(70px, calc(70px + 20 * ((100vw - 375px) / 1545)), 90px);
}
#business .ChangeElem_Btn_Content li:nth-child(1) .wrap {background: url(../img/page/career/business/mobile/Icon_mobile.svg) no-repeat 92% 50% / 8em;}
#business .ChangeElem_Btn_Content li:nth-child(2) .wrap {background: url(../img/page/career/business/cloud/Icon_cloud.svg) no-repeat 92% 50% / 18em;}
#business .ChangeElem_Btn_Content li .wrap h3 {
	margin-bottom: 20px;
	color: #00225F;
	font-weight: bold;
	font-size: clamp(18px, calc(18px + 12 * ((100vw - 375px) / 1545)), 30px);
}
#business .ChangeElem_Btn_Content li .wrap .content p {margin-bottom: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);color: #00225F;}
#business .ChangeElem_Btn_Content li .wrap .content p:last-child {margin-bottom: 0;}
#business .ChangeElem_Btn_Content li button {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: clamp(60px, calc(60px + 40 * ((100vw - 375px) / 1545)), 100px);
	height: clamp(60px, calc(60px + 40 * ((100vw - 375px) / 1545)), 100px);
	border: none;
	border-radius: 50%;
	background: #FA5FC7 url(../img/page/career/business/Icon_arrowD.svg) no-repeat center / 30%;
	transition: .3s;
}
#business .ChangeElem_Btn_Content li:nth-child(2) button {background-color: #8261FD;}
#business .ChangeElem_Btn_Content li button:hover {background-color: #B17EFF;}
/* Change Panel */
#business .ChangeElem_Panel {width: 97.5%;padding: 0 4vw clamp(70px, calc(70px + 70 * ((100vw - 375px) / 1545)), 140px);}
#business .ChangeElem_Panel:nth-child(1) {border-radius: 0 50px 50px 0;background: linear-gradient(#FA5FC7, #FAF3FA 3%);}
#business .ChangeElem_Panel:nth-child(2) {margin-left: auto;border-radius: 50px 0 0 50px;background: linear-gradient(#A37AFF, #EDEBF1 10%);}
#business .ChangeElem_Panel .title_common p.en {
	position: absolute;
	top: -1.5vw;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: rgba(255, 255, 255, 27%);
	font-size: clamp(80px, calc(80px + 40 * ((100vw - 375px) / 1545)), 120px);
	line-height: 1;
}
#business .ChangeElem_Panel .title_common h2 {
	padding-top: clamp(40px, calc(40px + 20 * ((100vw - 375px) / 1545)), 60px);
	color: #fff;
	font-weight: bold;
	font-size: clamp(28px, calc(28px + 20 * ((100vw - 375px) / 1545)), 48px);
	letter-spacing: .06em;
	text-align: center;
}
/* Contents */
#business .syicky_flex {display: flex;position: relative;}
#business .syicky_flex aside {width: clamp(280px, calc(280px + 100 * ((100vw - 375px) / 1545)), 380px);}
#business .syicky_flex aside ul {position: sticky;top: 0;display: grid;gap: 15px;padding-top: 50px;}
#business .syicky_flex aside ul li a {
	color: #AF719B;
	font-weight: 600;
	font-size: clamp(14px, calc(14px + 6 * ((100vw - 375px) / 1545)), 20px);
	letter-spacing: .06em;
}
#business .syicky_flex.panel2 aside ul li a {color: #8F81AE;}
#business .syicky_flex aside ul li a.is-current {color: #171310;}
#business .syicky_flex .block {flex: 1;padding-top: 50px;}
#business .syicky_flex .block .container {margin-bottom: clamp(70px, calc(70px + 80 * ((100vw - 375px) / 1545)), 150px);}
#business .syicky_flex .block .container:last-child {margin-bottom: 0;}
#business .syicky_flex .block .title_wrap {margin-bottom: clamp(40px, calc(40px + 10 * ((100vw - 375px) / 1545)), 50px);}
#business .syicky_flex .block .title_wrap h3 {
	margin-bottom: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	font-weight: bold;
	font-size: clamp(24px, calc(24px + 16 * ((100vw - 375px) / 1545)), 40px);
	letter-spacing: .06em;
}
#business .syicky_flex .block .title_wrap p.pr {
	margin-bottom: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	color: #5141FF;
	font-size: clamp(16px, calc(16px + 8 * ((100vw - 375px) / 1545)), 24px);
}
/* 独自の店舗づくり */
/* MOBILE */
#business .syicky_flex.panel1 .block ol {display: grid;grid-template-columns: repeat(2, 1fr);gap: 20px;}
#business .syicky_flex.panel1 .block ol li.item {
	padding: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	border-radius: 30px;
	box-shadow: 0 3px 60px rgba(129, 118, 111, 16%);
	background: #fff;
}
#business .syicky_flex.panel1 .block ol li.item figure {position: relative;margin-bottom: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);}
#business .syicky_flex.panel1 .block ol li.item figure figcaption {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.4em;
	height: 100%;
	padding-top: .5vw;
	background: url(../img/page/career/business/mobile/introduction/Icon_bubble.svg) no-repeat top center / 100%;
	color: #fff;
	font-size: 2.5vw;
}
#business .syicky_flex.panel1 .block ol li.item h3 {
	margin-bottom: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);
	color: #5141FF;
	font-weight: bold;
	font-size: clamp(18px, calc(18px + 10 * ((100vw - 375px) / 1545)), 28px);
}
#business .syicky_flex.panel1 .block ol li.item .content p {margin-bottom: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);}
#business .syicky_flex.panel1 .block ol li.item .content p:last-child {margin-bottom: 0;}
#business .syicky_flex.panel1 .block ol li.item ul {
	margin-top: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);
	padding: 10px;
	background: #FAF3FA;
}
#business .syicky_flex.panel1 .block ol li.item ul li {position: relative;width: 50%;padding-left: 15px;}
#business .syicky_flex.panel1 .block ol li.item ul li::before {content: '・';position: absolute;left: 0;}
/* CLOUD */
#business .syicky_flex.panel2 .block ol {display: grid;grid-template-columns: repeat(2, 1fr);gap: 20px;}
#business .syicky_flex.panel2 .block ol li {background: #787894;}
#business .syicky_flex.panel2 .block ol li .wrap {
	padding: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	padding-bottom: clamp(30px, calc(30px + 20 * ((100vw - 375px) / 1545)), 50px);
	background: linear-gradient(#6167DB, #787894 40%);
}
#business .syicky_flex.panel2 .block ol li .wrap dl {display: flex;align-items: center;gap: 10px;margin-bottom: 20px;color: #fff;}
#business .syicky_flex.panel2 .block ol li .wrap dl dt {
	font-size: clamp(40px, calc(40px + 10 * ((100vw - 375px) / 1545)), 50px);
	line-height: 1;}
#business .syicky_flex.panel2 .block ol li .wrap dl dd {flex: 1;}
#business .syicky_flex.panel2 .block ol li .wrap dl dd h3 {
	font-weight: bold;
	font-size: clamp(20px, calc(20px + 8 * ((100vw - 375px) / 1545)), 28px);
}
#business .syicky_flex.panel2 .block ol li .wrap dl dd p {
	font-weight: bold;
	font-size: clamp(14px, calc(14px + 4 * ((100vw - 375px) / 1545)), 18px);
	line-height: 1.4;
}
#business .syicky_flex.panel2 .block ol li .wrap .content p {
	margin-bottom: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	color: #fff;
}
#business .syicky_flex.panel2 .block ol li .wrap .content p:last-child {margin-bottom: 0;}
#business .syicky_flex.panel2 .block ol li .wrap .content p span {display: block;font-weight: bold;line-height: 1.7;}
/* 店舗リスト */
#business .syicky_flex .block .store_list {
	position: relative;
	padding: clamp(20px, calc(20px + 30 * ((100vw - 375px) / 1545)), 50px);
	padding-top: clamp(50px, calc(50px + 20 * ((100vw - 375px) / 1545)), 70px);
	border-radius: 30px;
	background: #fff;
}
#business .syicky_flex .block .store_list h4 {
	position: absolute;
	top: 0;
	left: clamp(20px, calc(20px + 30 * ((100vw - 375px) / 1545)), 50px);
	transform: translateY(-50%);
	font-weight: 600;
	font-size: clamp(16px, calc(16px + 12 * ((100vw - 375px) / 1545)), 28px);
}
#business .syicky_flex .block .store_list h4 span {display: inline-flex;position: relative;padding: 0 30px;}
#business .syicky_flex .block .store_list h4 span::before,
#business .syicky_flex .block .store_list h4 span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background: #171310;
}
#business .syicky_flex .block .store_list h4 span::before {left: 0;}
#business .syicky_flex .block .store_list h4 span::after {right: 0;}
#business .syicky_flex .block .store_list {margin-bottom: clamp(50px, calc(50px + 20 * ((100vw - 375px) / 1545)), 70px);}
#business .syicky_flex .block .store_list:last-child {margin-bottom: 0;}
#business .syicky_flex .block .store_list ul li {position: relative;width: 42%;margin-bottom: 30px;padding-right: 30px;}
#business .syicky_flex .block .store_list ul li:last-child {margin-bottom: 0;}
#business .syicky_flex .block .store_list ul li .map {position: absolute;top: 50%;right: 0;transform: translateY(-50%);}
#business .syicky_flex .block .store_list ul li .map a {text-align: center;}
#business .syicky_flex .block .store_list ul li .map a img {width: 18px;}
#business .syicky_flex .block .store_list ul li .map a span {
	display: block;
	border-bottom: 1px solid #5141FF;
	color: #5141FF;
	font-size: clamp(10px, calc(10px + 2 * ((100vw - 375px) / 1545)), 12px);
	transition: .3s;
}
#business .syicky_flex .block .store_list ul li .map a:hover span {transform: scale(1.2);}
#business .syicky_flex .block .store_list ul li h5 {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: clamp(16px, calc(16px + 4 * ((100vw - 375px) / 1545)), 20px);
}
#business .syicky_flex .block .store_list ul li p {font-size: clamp(12px, calc(12px + 4 * ((100vw - 375px) / 1545)), 14px);}
/* 数字で見るアイルネット */
#business .syicky_flex .block ul.numbers_list {gap: 20px 1%;}
#business .syicky_flex .block ul.numbers_list li {position: relative;width: 24%;border-radius: 30px;background: #fff;}
#business .syicky_flex .block ul.numbers_list li:nth-child(6),
#business .syicky_flex .block ul.numbers_list li:nth-child(7) {width: 36.3%;}
#business .syicky_flex .block ul.numbers_list li::before {content: '';display: block;padding-bottom: 100%;}
#business .syicky_flex .block ul.numbers_list li:nth-child(6)::before,
#business .syicky_flex .block ul.numbers_list li:nth-child(7)::before {padding-bottom: 50%;}
#business .syicky_flex .block ul.numbers_list li figure {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 80%;}
#business .syicky_flex .block ul.numbers_list li:nth-child(6) figure,
#business .syicky_flex .block ul.numbers_list li:nth-child(7) figure {width: 90%;}
/* 社員の声 */
#business .syicky_flex .block ul.voice_list {display: flex;flex-wrap: wrap;gap: 30px 5%;width: 55vw;}
#business .syicky_flex .block ul.voice_list li {width: 30%;}
#business .syicky_flex .block ul.voice_list li h4 {
	margin-bottom: 10px;
	color: #936FF8;
	font-weight: 600;
	font-size: 1vw;
	letter-spacing: .1em;
	text-align: center;
}
#business .syicky_flex .block ul.voice_list li h4 span {font-size: 1.2em;}
#business .syicky_flex .block ul.voice_list li .wrap {position: relative;padding-bottom: 15%;}
#business .syicky_flex.panel2 .block ul.voice_list li {position: relative;z-index: 1;}
#business .syicky_flex.panel2 .block ul.voice_list li .wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 12%;
    z-index: -1;
    transform: translateX(-50%);
    width: 16vw;
    height: 16vw;
    border-radius: 2em;
    background: #E0D8FF;
}
#business .syicky_flex .block ul.voice_list li .wrap .content {
	position: absolute;
	bottom: 25%;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 100%;
	text-align: center;
}
#business .syicky_flex .block ul.voice_list li .wrap .content p {
	display: inline-block;
	position: relative;
	margin-bottom: 7px;
	padding: clamp(5px, calc(5px + 5 * ((100vw - 375px) / 1545)), 10px) 1em;
	border-radius: 10px;
	background: #F974D3;
	color: #fff;
	font-weight: 600;
	font-size: 1vw;
	line-height: 1.4;
	text-align: center;
}
#business .syicky_flex.panel2 .block ul.voice_list li .wrap .content p {background: #4048FB;}
#business .syicky_flex .block ul.voice_list li .wrap .content p::before {
	content: '';
	position: absolute;
	top: 98%;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	aspect-ratio: 1/cos(30deg);
	clip-path: polygon(50% 100%,100% 0,0 0);
	background: #F974D3;
}
#business .syicky_flex.panel2 .block ul.voice_list li .wrap .content p::before {background: #4048FB;}
#business .syicky_flex .block ul.voice_list li .wrap .content .mic {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4vw;
	height: 4vw;
	margin: 0 auto;
	border-radius: 50%;
	background: #B17EFF;
	transition: .3s;
}
#business .syicky_flex.panel1 .block ul.voice_list li:hover .wrap .content .mic {background: #F974D3;}
#business .syicky_flex.panel2 .block ul.voice_list li:hover .wrap .content .mic {background: #4048FB;}
#business .syicky_flex .block ul.voice_list li .wrap .content .mic img {width: 30%;}
@media only screen and ( max-width : 1024px ) {
	#business .ChangeElem_Btn_Content li {width: 100%;margin-bottom: 50px;}
	#business .syicky_flex {display: block;}
	#business .syicky_flex aside {display: none;}
	#business .syicky_flex.panel1 .block ol li.item ul {display: block;}
	#business .syicky_flex.panel1 .block ol li.item ul li {width: 100%;}
	#business .syicky_flex .block .store_list ul li {width: 100%;}
	#business .syicky_flex .block ul.voice_list {width: 100%;}
	#business .syicky_flex .block ul.voice_list li h4 {font-size: 1.6vw;}
	#business .syicky_flex .block ul.voice_list li .wrap .content p {font-size: 1.8vw;}
	#business .syicky_flex .block ul.voice_list li .wrap .content .mic {width: 7vw;height: 7vw;}
	#business .syicky_flex.panel2 .block ul.voice_list li .wrap::before {width: 25vw;height: 25vw;}
}
@media only screen and ( max-width : 767px ) {
	.fixed-tab-btn {width: 30px;height: auto;padding: 10px;border-radius: 10px 0 0 10px;}
	.fixed-tab-btn.mobile,
	.fixed-tab-btn.cloud {background-image: none;}
	#business .syicky_flex.panel1 .block ol {grid-template-columns: repeat(1, 1fr);}
	#business .syicky_flex.panel1 .block ol li.item figure figcaption {font-size: 7.5vw;}
	#business .syicky_flex.panel2 .block ol {grid-template-columns: repeat(1, 1fr);}
	#business .syicky_flex .block ul.numbers_list {gap: 20px 4%;justify-content: center;}
	#business .syicky_flex .block ul.numbers_list li {width: 48%;}
	#business .syicky_flex .block ul.numbers_list li:nth-child(6),
	#business .syicky_flex .block ul.numbers_list li:nth-child(7) {width: 100%;}
	#business .syicky_flex .block ul.numbers_list li:nth-child(6)::before,
	#business .syicky_flex .block ul.numbers_list li:nth-child(7)::before {padding-bottom: 70%;}
	#business .syicky_flex .block ul.voice_list {justify-content: center;}
	#business .syicky_flex .block ul.voice_list li {width: 47%;}
	#business .syicky_flex .block ul.voice_list li h4 {font-size: 2.6vw;}
	#business .syicky_flex .block ul.voice_list li .wrap .content p {font-size: 2.5vw;}
	#business .syicky_flex .block ul.voice_list li .wrap .content .mic {width: 10vw;height: 10vw;}
	#business .syicky_flex.panel2 .block ul.voice_list li .wrap::before {width: 38vw;height: 38vw;}
}
/*--------------------------------------------------

	Greeting │ ごあいさつ

--------------------------------------------------*/
#greeting .container {
	position: relative;
	padding-top: 25%;
	border-radius: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	overflow: hidden;
	background: url(../img/page/career/greeting/bg.webp) no-repeat center / cover;
}
#greeting .container::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 6%;
	height: 100%;
	background: linear-gradient(#FE74D1, #3D46FB, #A37AFF);
}
#greeting .container::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2%;
	transform: translateY(-50%);
	width: 2%;
	height: 100%;
	background: url(../img/page/career/greeting/Icon_arrowR.svg) no-repeat center / contain;
}
#greeting .container a.link {border-radius: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);}
#greeting .container p.en {
	position: absolute;
	top: -1.5vw;
	left: -1.2vw;
	color: rgba(255, 255, 255, 27%);
	font-size: 8vw;
	line-height: 1;
}
#greeting .container .title_content {
	position: absolute;
	top: 43%;
	left: 5vw;
	transform: translateY(-50%);
	width: 100%;
}
#greeting .container .title_content p {margin-bottom: 1%;font-weight: bold;}
#greeting .container .title_content h2 span {
	padding: 0 10px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 30%), rgba(255, 255, 255, 30%)) no-repeat bottom / 100% .5em;
	color: #fff;
	font-weight: bold;
	font-size: 3vw;
	line-height: 1.5;
}
@media only screen and ( max-width : 767px ) {
	#greeting .container {padding-top: 70%;background-position: 70% 50%;}
	#greeting .container::before {width: 9%;}
	#greeting .container::after {width: 4%;right: 2.5%;}
	#greeting .container p.en {top: -2.5vw;font-size: 12vw;}
	#greeting .container .title_content {top: 50%;}
	#greeting .container .title_content p {font-size: 3vw;}
	#greeting .container .title_content h2 span {font-size: 5vw;}
}
/*--------------------------------------------------

	Requirement │ 募集要項

--------------------------------------------------*/
#requirement {box-shadow: 0 3px 90px rgba(78, 72, 83, 8%);}
#requirement .inner {max-width: 1160px;}
#requirement .title_common2 {margin-bottom: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 1545)), 100px);}
#requirement .title_wrap {margin-bottom: 20px;}
#requirement .title_wrap h2 {
	font-weight: bold;
	font-size: clamp(18px, calc(18px + 12 * ((100vw - 375px) / 1545)), 30px);
	letter-spacing: .06em;
	text-align: center;
}
#requirement .title_wrap p {margin-top: 10px;text-align: center;}
#requirement ul.list {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
}
#requirement ul.list li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(130px, calc(130px + 80 * ((100vw - 375px) / 1545)), 210px);
	height: clamp(130px, calc(130px + 80 * ((100vw - 375px) / 1545)), 210px);
	border-radius: 50%;
	box-shadow: 0 3px 60px rgba(78, 72, 83, 8%);
	background: #fff;
	color: #936FF8;
	font-weight: bold;
	font-size: clamp(14px, calc(14px + 6 * ((100vw - 375px) / 1545)), 20px);
}
#requirement ul.list li span {display: block;line-height: 1.6;text-align: center;}
#requirement .ChangeElem_Btn_Content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
	margin-bottom: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
}
#requirement .ChangeElem_Btn_Content button {
	position: relative;
	padding: 15px;
	border: none;
	border-radius: 30px;
	background: #D6D4DD;
	color: #fff;
	font-weight: bold;
	font-size: clamp(14px, calc(14px + 4 * ((100vw - 375px) / 1545)), 18px);
}
#requirement .ChangeElem_Btn_Content button.is-active {background: #936FF8;}
#requirement .tab_content {
	padding: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 1545)), 100px);
	padding-right: clamp(20px, calc(20px + 30 * ((100vw - 375px) / 1545)), 50px);
	padding-left: clamp(20px, calc(20px + 30 * ((100vw - 375px) / 1545)), 50px);
	border-radius: 0 0 30px 30px;
	background: #F7F7F7;
}
#requirement .tab_content .ChangeElem_Panel {max-width: 880px;margin: 0 auto;}
#requirement table {max-width: 880px;margin: 0 auto clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);}
#requirement table tr {display: block;padding: 10px 0;border-bottom: 1px solid #707070;}
#requirement table tr th {width: 200px;padding-left: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);font-weight: bold;}
#requirement table tr td .wrap {margin-bottom: clamp(20px, calc(20px + 20 * ((100vw - 375px) / 1545)), 40px);}
#requirement table tr td .wrap:last-child {margin-bottom: 0;}
#requirement table tr td .wrap a {text-decoration: underline;}
#requirement table tr td p.round {position: relative;padding-left: 18px;}
#requirement table tr td p.round::before {
	content: '';
	position: absolute;
	top: .35em;
	left: 0;
	width: 14px;
	height: 14px;
	border: 1px solid #171310;
	border-radius: 50%;
}
#requirement table tr td p.star {position: relative;padding-left: 18px;}
#requirement table tr td p.star::before {content: '★';position: absolute;left: 0;}
#requirement table tr td p.square,
#requirement table tr td ul.square li {position: relative;padding-left: 18px;}
#requirement table tr td p.square::before,
#requirement table tr td ul.square li::before {
	content: '';
	position: absolute;
	top: .28em;
	left: 0;
	width: 14px;
	height: 14px;
	background: #171310;
}
#requirement .container {max-width: 880px;margin: 0 auto;}
#requirement .container ul {display: grid;gap: 28px;}
#requirement .container ul li {border-radius: 10px;background: #fff;}
#requirement .container ul li dl {display: flex;align-items: center;position: relative;padding: 15px 10px;}
#requirement .container ul li dl::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 100px;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid #B188FF;
}
#requirement .container ul li:last-child dl:before {display: none;}
#requirement .container ul li dl dt {
	width: 180px;
	color: #7242FA;
	font-weight: bold;
	font-size: clamp(16px, calc(16px + 4 * ((100vw - 375px) / 1545)), 20px);
	text-align: center;
}
#requirement .container ul li dl dd {flex: 1;font-size: clamp(12px, calc(12px + 3 * ((100vw - 375px) / 1545)), 15px);}
@media only screen and ( max-width : 767px ) {
	#requirement .ChangeElem_Btn_Content {gap: 10px;margin-bottom: 20px;}
	#requirement .ChangeElem_Btn_Content button {padding: 15px 0;border-radius: 4em;}
	#requirement ul.list {flex-wrap: wrap;}
	#requirement ul.list li {width: 32vw;height: 32vw;font-size: 2.8vw;}
	#requirement table tr th {display: block;margin-bottom: 10px;padding-left: 0;}
	#requirement table tr td {display: block;}
	#requirement .container ul li dl {display: block;}
	#requirement .container ul li dl::before {left: 50%;transform: translateX(-50%);}
	#requirement .container ul li dl dt {width: 100%;margin-bottom: 10px;}
	#requirement .container ul li dl dd {text-align: center;}
}
/*--------------------------------------------------

	Entry │ エントリー

--------------------------------------------------*/
#entry {
	position: relative;
	padding-bottom: clamp(70px, calc(70px + 30 * ((100vw - 375px) / 1545)), 100px);
	overflow: hidden;
	background: #936FF8;
}
#entry .inner {max-width: 1160px;}
#entry p.en {
	position: absolute;
	top: -.2em;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: rgba(255, 255, 255, .5);
	font-size: clamp(70px, calc(70px + 80 * ((100vw - 375px) / 1545)), 150px);
	line-height: 1;
	text-align: center;
}
#entry .title_common {margin-top: clamp(70px, calc(70px + 80 * ((100vw - 375px) / 1545)), 150px);}
#entry .title_common h2 {color: #fff;font-size: clamp(24px, calc(24px + 16 * ((100vw - 375px) / 1545)), 40px);}
#entry .title_common p {color: #fff;}
#entry .container {
	padding: 20px;
	padding-top: clamp(30px, calc(30px + 70 * ((100vw - 375px) / 1545)), 100px);
	padding-bottom: clamp(30px, calc(30px + 70 * ((100vw - 375px) / 1545)), 100px);
	border-radius: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	background: #fff;
}
#entry table {max-width: 952px;margin: 0 auto clamp(30px, calc(30px + 10 * ((100vw - 375px) / 1545)), 40px);}
#entry table tr th {width: 170px;color: #333;letter-spacing: .1em;}
#entry table tr.v_top th {padding-top: 20px;vertical-align: top;}
#entry table tr th .req {
	margin-left: 15px;
	padding: 4px 5px;
	border-radius: 2px;
	background: #BE0202;
	color: #fff;
	font-size: clamp(12px, calc(12px + 2 * ((100vw - 375px) / 1545)), 14px);
}
#entry table tr td {display: block;margin-bottom: 15px;}
#entry table tr:last-child td {margin-bottom: 0;}
#entry input[type="text"],
#entry input[type="tel"],
#entry input[type="email"],
.stbox select,
#entry textarea {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	border: none;
	border-radius: 5px;
	background: #F9F7FC;
	color: #333;
	font-size: clamp(14px, calc(14px + 2 * ((100vw - 375px) / 1545)), 16px);
	letter-spacing: .1em;
	cursor: pointer;
	resize: vertical;
}
#entry textarea {height: auto;margin-bottom: 20px;padding: 20px;}
::placeholder {color: #C8C4D5;}
.stbox {position: relative;max-width: 330px;}
#entry table tr.age td .stbox {position: relative;max-width: 120px;}
.stbox::after {
	content: '';
	position: absolute;
	top: 23px;
	right: 20px;
	width: 14px;
	height: 10px;
	background: url(../img/common/entry/Icon_triangle.svg) no-repeat center / 100%;
	pointer-events: none;
}
.checkbox-container input[type=checkbox] {display: none;}
.checkbox-container label {display: inline-block;position: relative;width: auto;padding: 5px 30px;line-height: 1.4;cursor: pointer;user-select: none;}
.checkbox-container label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 20px;
	height: 20px;
	margin-top: -10px;
	border: 1px solid #707070;
	background: #fff;
}
.checkbox-container label::after {
	content: '';
	display: block;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 12px;
	transform: rotate(45deg);
	width: 5px;
	height: 9px;
	margin-top: -7px;
	border-right: 3px solid #936FF8;
	border-bottom: 3px solid #936FF8;
}
.checkbox-container input[type=checkbox]:checked + label::after {opacity: 1;}
.checkbox-container a {margin-left: 10px;text-decoration: underline;}
.error-message-container {margin-top: 10px;}
.error-message {display: block;color: #ff0000;font-size: 14px;}
#entry .submit {
	display: block;
	position: relative;
	z-index: 1;
	width: 80%;
	max-width: 400px;
	margin: 0 auto;
	padding: clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px);
	overflow: hidden;
	border: none;
	border-radius: 2em;
	background: linear-gradient(90deg, #A37AFF, #3D46FB, #FE74D1);
	color: #fff;
	font-size: clamp(18px, calc(18px + 6 * ((100vw - 375px) / 1545)), 24px);
	text-align: center;
	letter-spacing: .1em;
	transition: all .5s ease-out;
}
#entry .submit:hover {background-position: 99% 50%;}
#entry .submit::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: -5;
	transform-origin: left top;
	transform: scale(0, 1);
	background: #936FF8;
	transition: transform .3s;
}
#entry .submit:hover::before {transform-origin: left top;transform: scale(1, 1);}
#entry .submit span {position: relative;}
#entry .submit span::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -15%;
	transform: translateY(-50%);
	width: clamp(10px, calc(10px + 3 * ((100vw - 375px) / 1545)), 13px);
	height: 100%;
	background: url(../img/common/entry/Icon_arrowR.svg) no-repeat center / contain;
}
@media only screen and ( max-width : 767px ) {
	#entry table tr th {display: block;margin-bottom: 5px;}
	#entry table tr.v_top th {padding-top: 0;}
	#entry table tr td {display: block;margin-bottom: 20px;}
	#entry table tr:last-child td {margin-bottom: 0;}
}
/*--------------------------------------------------

　   ERROR

--------------------------------------------------*/
#entry.form {display: block;}
#entry.form h4 {text-align: center;line-height: 1.7;margin-bottom: 40px;}
#entry.form td {padding: 20px;border-radius: 5px;background: #F9F7FC;}
#entry.form .button_box {display: flex;justify-content: center;gap: 10px;}
#entry.form .button_box .submit {margin: 0;}
#entry.error .errorbox {margin-bottom: 80px;}
#entry.error .error_messe {color: #C41000;text-align: center;}
#entry.complete .container {text-align: center;}
#entry.complete .container p {margin-bottom: 40px;text-align: center;}