/*----------------------------
* reset
*----------------------------*/
*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}h1,h2,h3,h4{text-wrap:balance}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}textarea:not([rows]){min-height:10em}ul{list-style-type: none}


/*----------------------------
* 共通
*----------------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
	overflow-y: scroll;
}

/*----------------------------
* Sticky Footer
*----------------------------*/
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
footer {
    margin-top: auto;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Noto Sans JP", sans-serif;
	overflow-x: hidden;
	height: 100%;
}
img {
	width: 100%;
	height: auto;
}
a {
	text-decoration: none;
	cursor: pointer;
}
.pc-only{
	display: inline-flex !important;
}
.sp-only{
	display: none !important;
}
@media (max-width: 900px) {
	html {
		scroll-padding-top: 70px;
	}
	.pc-only{
		display: none !important;
	}
	.sp-only{
		display: inline-flex !important;
	}
}

/*----------------------------
* ヘッダー
*----------------------------*/
header{
	position: fixed;
	background-color:#FFFFFF;
	width: 100%;
	height: 90px;
	z-index: 10;
	padding:0 30px;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
	position: relative;
}
.header-logo-area{
	display: flex;
	align-items: center;
}
.header-rolo-text {
	margin-left:15px;
	background: linear-gradient(
		90deg,
		#5FD3D1 0%,
		#A7A3D9 50%,
		#FFAB9D 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size:28px;
	font-family: "Afacad", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
.header-logo{
	width: 210px;
}
.header-arrow{
	margin-left: 3px;
	width: 25px;
}
.line-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: min(15px,3vw) min(30px,6vw);
	background: #3BCD22;
	border-radius: 9999px;
	text-decoration: none;
}
.line-button:hover{
	opacity: 0.8;
}
.line-button-badge{
	background: #FFFFFF;
	color: #3BCD22;
	padding: 5px 6px;
	border-radius: 4px;
	font-size: min(20px,4vw);
	line-height: 1;
	font-weight: 700;
}
.line-button-text {
	color:#FFFFFF;
	font-size:min(20px,4vw);
	font-weight: 700;
}
.header-padding{
	padding-top:90px;
}
@media (max-width: 900px) {
	header{
		height: 70px;
		padding:0 10px;
	}
	.navbar {
		justify-content: center;
		height: 70px;
	}
	.header-rolo-text {
		margin-left:10px;
		font-size:22px;
	}
	.header-logo{
		width: 160px;
	}
	.header-arrow{
		margin-left: 0px;
		width: 22px;
		transform: translateY(3px);
	}
	.header-padding{
		padding-top:70px;
	}
}
/*----------------------------
* main
*----------------------------*/
.main-visaul__wrapper{
	background-image: url("../img/career/main-visual.jpg");
	background-position: top right;
	background-size: cover;
	padding:50px min(180px,12%);
}
.main-visual-title{
	font-size: 70px;
	font-weight: 700;
	line-height: 1.6;
	color: #FFFFFF;
}
.main-visual-title__emphasis {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	line-height: inherit;
}
.white-arrow {
	width: 110px;
	transform: translateX(-80px) translateY(40px);
}
.main-visual-text{
	margin-top:30px;
	font-size:28px;
	font-weight: 700;
	line-height: 1.5;
}
.main-visual-button{
	text-align: center;
}
.main-visual__message{
	text-align: center;
	font-size:36px;
	font-weight: 700;
	line-height: 1.4;
	color: #FFFFFF;
	padding:50px;
	background: linear-gradient(
		to right,
		#5FD3D1 0%,
		#A7A3D9 50%,
		#FFAB9D 100%
	);
}
.hero__area{
	background-image: url("../img/career/white-bg.jpg");
	background-size: 100% auto;
	background-repeat: repeat-y;
	padding:100px min(180px,12%);
	display: flex;
	gap:20px;
}
.hero-title{
	width: 50%;
	font-size:42px;
	font-weight: 700;
	line-height: 1.5;
	display: inline-block;
	background: linear-gradient(
		to right,
		#83BBD5 0%,
		#A7A3D9 33%,
		#D3A7BB 66%,
		#E9A9AC 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-content{
	width: 50%;
}
.hero-sub-title{
	font-size:24px;
	font-weight: 700;
	line-height: 1.5;
}
.hero-text{
	margin-top:50px;
	font-size:16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: -0.31px;
}
.value__area{
	background: linear-gradient(
		to right,
		rgba(95, 211, 209, 0.5) 0%,
		rgba(167, 163, 217, 0.5) 40%,
		rgba(167, 163, 217, 0.5) 60%,
		rgba(255, 171, 157, 0.5) 100%
	);
	padding:100px min(180px,12%);
}
.value-title{
	text-align: center;
	font-size:36px;
	font-weight: 700;
	line-height: 1.5;
}
.value-card{
	background-image: url("../img/career/white-bg.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}
.card-top{
	margin-top:60px;
	padding:60px;
	display: flex;
	gap:30px;
	align-items: center;
}
.card-top-title{
	font-size:32px;
	font-weight: 700;
	line-height: 1.5;
}
.card-top-text{
	margin-top:20px;
	font-size:16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: -0.31px;
}
.value-top-img{
	width: 250px;
}
.card-bottom__area{
	margin-top:20px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:20px;
}
.card-bottom{
	padding:40px 30px;
}
.card-bottom-title{
	font-size:28px;
	font-weight: 700;
	line-height: 1.5;
}
.value-bottom-img{
	width: 100%;
	height: 160px;
	object-fit: contain;
	margin: 30px auto;
}
.card-bottom-text{
	font-size:16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: -0.31px;
}
.flow__area{
	background-image: url("../img/career/white-bg.jpg");
	background-position: center;
	background-size: cover;
	padding: 100px min(180px,12%);
}
.flow-title{
	text-align: center;
	font-size:36px;
	font-weight: 700;
	line-height: 1.7;
}
.flow-card__area{
	margin-top:60px;
	display:grid;
	grid-template-columns: repeat(5,1fr);
	gap:30px;
}
.flow-card{
	border-radius: 10px;
	padding:30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.flow-card:nth-child(1){
	background-color: #AFE9E8;
}
.flow-card:nth-child(2){
	background-color: #C7D9EB;
}
.flow-card:nth-child(3){
	background-color: #E5D3E0;
}
.flow-card:nth-child(4){
	background-color: #FED5CE;
}
.flow-card:nth-child(5){
	background-color: #FFFFFF;
	border: 2px solid #000000;
	padding:25px 15px 20px;
}
.flow-card:not(:last-child)::after{
	content: "▶";
	position: absolute;
	right: calc(-1 * (30px / 2));
	top: 50%;
	transform: translate(50%, -50%);
	font-weight: 700;
	color: #000000;
}
.flow-card:nth-child(4)::after{
	content:"+";
	font-size:28px;
}
.flow-card-title{
	text-align: center;
	font-size:18px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom:15px;
}
.flow1-img{
	width: 140px;
}
.flow2-img{
	width: 110px;
}
.flow3-img{
	width: 110px;
}
.flow4-img{
	width: 130px;
}
.flow5-img{
	width: 140px;
}
.flow-extraLabel{
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	white-space: nowrap;
	z-index: 5;
}
.flow-extraLabel::before,
.flow-extraLabel::after{
	content:"";
	position: absolute;
	top: 50%;
	width: 20px;
	height: 2px;
	background: #000000;
}
.flow-extraLabel::before{
	left: 10px;
	transform: translate(-100%, -50%) rotate(-120deg);
}
.flow-extraLabel::after{
	right: 10px;
	transform: translate(100%, -50%) rotate(120deg);
}
.cta__area{
	background: linear-gradient(
		to right,
		rgba(95, 211, 209, 0.5) 0%,
		rgba(167, 163, 217, 0.5) 40%,
		rgba(167, 163, 217, 0.5) 60%,
		rgba(255, 171, 157, 0.5) 100%
	);
	padding:60px min(180px,12%);
}
.cta-title{
	text-align: center;
	font-size:42px;
	font-weight: 700;
	line-height: 1.5;;
}
.cta-button{
	margin-top:30px;
	text-align: center;
}
@media (max-width: 900px) {
	.main-visaul__wrapper{
		background-image: url("../img/career/main-visual_SP.jpg");
		background-position: bottom center;
		padding:50px 10px 300px 30px;
	}
	.main-visual-title{
		font-size: min(40px,8vw);
	}
	.white-arrow {
		width: 1.7em;
		transform: translateX(-1em) translateY(0.5em);
	}
	.main-visual-text{
		margin-top:40px;
		font-size:18px;
	}
	.line-button {
		margin:10px 0;
	}
	.main-visual__message{
		font-size:min(24px,4vw);
		padding:40px 30px;
	}
	.hero__area{
		padding:60px 20px;
		flex-direction: column;
		gap:40px;
	}
	.hero-title{
		width: 100%;
		font-size:28px;
	}
	.hero-content{
		width: 100%;
	}
	.hero-sub-title{
		font-size:18px;
	}
	.hero-text{
		margin-top:30px;
	}
	.value__area{
		padding:60px 20px;
	}
	.value-title{
		font-size:24px;
	}
	.value-card{
		background-size: 100% auto;
		background-repeat: repeat-y;
	}
	.card-top{
		margin-top:40px;
		padding:40px 30px;
	}
	.card-top-title{
		font-size:22px;
		text-wrap: auto;
	}
	.card-top-img{
		margin-top:20px;
		text-align: center;
	}
	.card-bottom__area{
		grid-template-columns: repeat(1,1fr);
	}
	.card-bottom-title{
		font-size:22px;
	}
	.value-bottom-img{
		width: 250px;
		height: auto;
		margin: 20px auto;
	}
	.flow__area{
		background-size: 100% auto;
		background-repeat: repeat-y;
		padding: 60px 20px;
	}
	.flow-title{
		font-size:24px;
	}
	.flow-card__area{
		margin-top:30px;
		grid-template-columns: repeat(1,1fr);
	}
	.flow-card{
		padding:20px 40px;
		flex-direction: row;
	}
	.flow-card:nth-child(5){
		margin-top:20px;
		padding:20px 20px 20px 40px;
	}
	.flow-card:not(:last-child)::after{
		content: "▼";
		right:auto;
		top:auto;
		left: 50%;
		bottom: calc(-1 * (30px / 2));
		transform: translate(-50%, 50%);
	}
	.flow-card:nth-child(4)::after{
		content:"+";
	}
	.flow-card-title{
		text-align: left;
		margin-bottom:0;
	}
	.flow1-img{
		width: 110px;
	}
	.flow2-img{
		width: 80px;
	}
	.flow3-img{
		width: 80px;
	}
	.flow4-img{
		width: 100px;
	}
	.flow5-img{
		width: 110px;
	}
	.cta__area{
		padding:60px 20px;
	}
	.cta-title{
		font-size:min(28px,5vw);
	}
	.cta-button{
		margin-top:min(40px,8vw);
	}
}
/*----------------------------
* フッター
*----------------------------*/
footer{
	background-color: #000000;
	color:#FFFFFF;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding:60px min(180px,12%);
	gap:20px;
}
.footer-nav {
	grid-column: 2;
	display: flex;
	gap: 50px;
}
.footer-nav a {
	font-size:18px;
	font-weight: 700;
	text-decoration: none;
}
.copyright {
	grid-column: 3;
	justify-self: end;
	font-size:12px;
	font-weight: 500;
}
@media (max-width: 900px) {
	footer{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
		padding:40px 20px 20px;
	}
	.footer-nav {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 25px;
	}
	.footer-nav a {
		font-size:16px;
	}
}
