@charset "UTF-8";

/* ------------------------------------------------
                    TOP
--------------------------------------------------- */

/*---------- 共通 ----------*/
body {
	background: url('../../img/common/bg_line.png') top left repeat-y;
	background-size: 100%;
}
.sec-ttl-l {
	font-size: 5.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
}
.cont-ttl-wrap {
	margin-bottom: 45px;
}
.cont-ttl-en {
	width: auto;
	height: 45px;
	padding-left: 23px;
	display: flex;
	align-items: center;
	border-left: 2px solid var(--color-light-green);
	color: var(--color-primary);
	font-size: 1.8rem;
}
.cont-ttl {
	width: auto;
	height: 45px;
	padding-left: 23px;
	display: flex;
	align-items: center;
	border-left: 2px solid var(--color-primary);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.cont-txt {
	font-size: 1.6rem;
	line-height: 2;
}
.cont-caption {
	font-size: 1.4rem;
	font-weight: 400;
}

@media (max-width: 768px) {
	body {
		background: url('../../img/common/bg_line.png') top center repeat-y;
		background-size: 200%;
	}
	.sec-ttl-l {
		font-size: 10.2vw;
	}
	.cont-ttl-wrap {
		margin-bottom: 8vw;
	}
	.cont-ttl-en {
		width: auto;
		height: 8vw;
		padding-left: 4vw;
		font-size: var(--fs-sp-14);
	}
	.cont-ttl {
		width: auto;
		height: 8vw;
		padding-left: 4vw;
		font-size: var(--fs-sp-26);
	}

	.cont-txt {
		font-size: var(--fs-sp-14);
		line-height: 2;
	}
	.cont-caption {
		font-size: var(--fs-sp-12);
	}
}

/*---------- MV ----------*/
.sec-mv {
	width: 100%;
	background: #fff;
	position: relative;
	z-index: 2;
}
.mv-slide-wrap {
	display: flex;
	overflow: hidden;
	width: 100%;
}
.mv-slide-list {
	display: flex;
	will-change: transform;
}
.mv-slide {
	width: auto;
	padding: 0 10px;
	height: 42.36vw;
}
.mv-slide img {
	display: block;
	width: auto;
	height: 100%;
	object-fit: contain;
}
/* アニメーション */
@keyframes infinite-loop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.mv-copy {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	z-index: 3;
}
.bg-white {
	padding: 8px 18px 12px;
	display: inline-block;
	background: #fff;
	border-radius: 5px;
	color: var(--color-primary);
	font-size: 5.2rem;
	line-height: 1;
	font-feature-settings: 'palt';
	letter-spacing: 0.1em;
}
.mv-recruit-btn-wrap {
	width: 180px;
	border-radius: 15px 0 0 0;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.mv-recruit-btn-wrap li a {
	width: 90px;
	height: 90px;
	display: flex;
	padding-bottom: 10px;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}
.mv-recruit-btn-wrap li a::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 24px;
	left: calc(50% - 10px);
}
.recruit-graduate a {
	background: var(--color-primary);
}
.recruit-career a {
	background: var(--color-dark-primary);
}

@media (max-width: 768px) {
	.sec-mv {
		width: 100%;
	}
	.mv-slide {
		padding: 0 1.33vw;
		height: 63.33vw;
	}
	.mv-copy {
		width: max-content;
		margin: 5vw auto;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		z-index: 3;
	}
	.bg-white {
		padding: 0;
		border-radius: 0;
		font-size: 7.73vw;
	}

	.mv-recruit-btn-wrap {
		width: 90%;
		margin: 5vw auto 5vw;
		border-radius: 2vw;
		overflow: hidden;
		position: relative;
		bottom: auto;
		right: auto;
		z-index: 2;
	}
	.mv-recruit-btn-wrap li {
		width: 50%;
	}
	.mv-recruit-btn-wrap li a {
		width: 100%;
		height: 16vw;
		display: flex;
		padding: 0 5vw;
		justify-content: flex-start;
		position: relative;
	}
	.mv-recruit-btn-wrap li a::after {
		content: '';
		width: 4vw;
		height: 1vw;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: calc(50% - 0.5vw);
		right: 4vw;
		left: auto;
	}
}

/*---------- お知らせ ----------*/
.sec-news {
	width: 100%;
	margin: 90px auto 120px;
	position: relative;
	z-index: 2;
}
.news-head {
	justify-content: space-between;
	align-items: flex-end;
}
.news-ttl-wrap {
	margin-bottom: 30px;
}
.news-ttl-en {
	margin-bottom: 13px;
	color: var(--color-primary);
	font-size: 1.8rem;
}
.news-ttl {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}

/* リスト */
.news-list {
	width: 100%;
	margin: 40px auto;
	padding: 10px 40px;
	background: var(--color-light-gray);
	border-radius: 15px;
}
.news-list li {
	width: 100%;
	padding: 25px 0;
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #c5c5c5;
	text-align: left;
}
.news-list li:last-child {
	border-bottom: none;
}
.news-list li a {
	width: 100%;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.news-date {
	width: 100px;
}
.news-tag {
	width: 75px;
	height: 20px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	color: #fff;
	font-size: 1.2rem;
}
.tag-green {
	background: var(--color-primary);
}
.tag-red {
	background: var(--color-red);
}

.news-txt {
	width: calc(100% - 195px);
	transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
	.news-list a.green:hover .news-txt {
		color: var(--color-primary);
	}
	.news-list a.red:hover .news-txt {
		color: var(--color-red);
	}
}

@media (max-width: 768px) {
	.sec-news {
		width: 100%;
		margin: 12vw auto 16vw;
	}
	.news-head {
		justify-content: space-between;
		align-items: flex-end;
	}
	.news-ttl-wrap {
		margin-bottom: 0;
	}
	.news-ttl-en {
		margin-bottom: 3vw;
		font-size: var(--fs-sp-14);
	}
	.news-ttl {
		font-size: var(--fs-sp-21);
	}

	/* リスト */
	.news-list {
		width: 100%;
		margin: 8vw auto 0;
		padding: 0 5vw;
		border-radius: 3vw;
	}
	.news-list li {
		width: 100%;
		padding: 5vw 0;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.news-list li:last-child {
		border-bottom: none;
	}
	.news-list li a {
		width: 100%;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		font-weight: 500;
	}
	.news-date {
		width: 25vw;
		margin-right: 4vw;
	}
	.news-tag {
		width: 20vw;
		height: auto;
		margin-right: 0;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 1vw;
		color: #fff;
		font-size: var(--fs-sp-13);
	}

	.news-txt {
		width: 100%;
		margin-top: 2vw;
	}
}

/*---------- 会社を知る ----------*/
.sec-company {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.sec-company .sec-ttl-l {
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.sec-company .sec-ttl-l {
		margin-bottom: 4vw;
	}
}

/*---------- ムービー ----------*/
.cont-movie {
	width: 100%;
	padding: 65px 0 160px;
	position: relative;
}
.cont-movie::before,
.cont-movie::after {
	content: '';
	width: 56px;
	height: 360px;
	background: url('../../img/common/img_deco.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 2;
}
.cont-movie::before {
	top: 0;
	right: 50px;
}
.cont-movie::after {
	bottom: 0;
	left: 50px;
}

.cont-movie .bg-gray {
	width: 100%;
	height: 400px;
	background: var(--color-light-gray);
	border-radius: 80px;
	position: absolute;
	top: 135px;
	left: 0;
	z-index: 1;
}

.cont-movie .cont-ttl-wrap {
	width: 100%;
	max-width: 695px;
	margin: 0 auto 45px;
	position: relative;
	z-index: 3;
}
.movie-modal-trigger {
	width: 100%;
	max-width: 695px;
	margin: 0 auto;
	display: block;
	position: relative;
	z-index: 3;
}
.movie-modal-trigger::before {
	content: '';
	width: 66px;
	height: 66px;
	background: url('../../img/common/icon_play.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

/* modal */
.modaal-content-container {
	padding: 0 !important;
}

.movie-wrap {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.movie-wrap iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 768px) {
	.cont-movie {
		width: 100%;
		padding: 12vw 0 16vw;
		position: relative;
	}
	.cont-movie::before,
	.cont-movie::after {
		content: '';
		width: 6vw;
		height: 38vw;
		background: url('../../img/common/img_deco.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		z-index: 2;
	}
	.cont-movie::before {
		top: 0;
		right: 0;
	}
	.cont-movie::after {
		bottom: 0;
		left: 0;
	}

	.cont-movie .bg-gray {
		width: 92%;
		height: 40vw;
		border-radius: 6vw;
		position: absolute;
		top: 24vw;
		left: 4%;
		z-index: 1;
	}

	.cont-movie .cont-ttl-wrap {
		width: 100%;
		max-width: initial;
		margin: 0 auto 6vw;
		position: relative;
		z-index: 3;
	}
	.movie-modal-trigger {
		width: 80%;
		max-width: initial;
		margin: 0 auto;
	}
	.movie-modal-trigger::before {
		content: '';
		width: 14vw;
		height: 14vw;
	}
}

/*---------- SMIFについて ----------*/
.cont-about {
	width: 100%;
	margin-bottom: 20px;
	align-items: center;
	justify-content: space-between;
}
.about-img-wrap {
	width: 48vw;
	margin-left: calc(50% - 50vw);
	border-radius: 0 15px 15px 0;
	overflow: hidden;
}
.about-txt-wrap {
	width: 48%;
}
.cont-about .btn-green {
	margin: 50px auto 0 0;
}
@media (max-width: 768px) {
	.cont-about {
		width: 100%;
		margin: 8vw auto 4vw;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: space-between;
	}
	.about-img-wrap {
		width: 85vw;
		margin-left: auto;
		margin-right: calc(50% - 50vw);
		margin-top: 8vw;
		border-radius: 3vw 0 0 3vw;
		overflow: hidden;
	}
	.about-txt-wrap {
		width: 100%;
	}
	.cont-about .btn-green {
		margin: 5vw auto 0 0;
	}
}

/*---------- 社長メッセージ ----------*/
.cont-message {
	width: 100%;
	margin-bottom: 120px;
	padding: 60px 0 0;
	align-items: flex-start;
	position: relative;
}
.cont-message::after {
	content: '';
	width: 56px;
	height: 360px;
	background: url('../../img/common/img_deco.svg') center center no-repeat;
	background-size: 100%;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 55%;
	z-index: 2;
}

.message-txt-wrap {
	width: calc(100% - 340px);
	margin-top: 95px;
	padding: 60px 70px;
	position: relative;
}
.message-txt-wrap::before {
	content: '';
	width: 100%;
	height: 100%;
	background: var(--color-light-green);
	border-radius: 80px 0 0 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.message-txt-wrap::after {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--color-light-green);
	position: absolute;
	top: 0;
	right: -50vw;
	z-index: 1;
}
.cont-message .cont-ttl-wrap {
	position: relative;
	z-index: 2;
}
.cont-message .cont-ttl-en {
	border-left: 2px solid #fff;
}
.cont-message .btn-green {
	margin: 0 auto 0 0;
	position: relative;
	z-index: 2;
}

.message-img-wrap {
	width: 340px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
@media (max-width: 850px) {
	.message-txt-wrap {
		padding: 60px 40px;
	}
}
@media (max-width: 768px) {
	.cont-message {
		width: 100%;
		margin-bottom: 20vw;
		padding: 12vw 0 0;
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}
	.cont-message::after {
		content: '';
		width: 6vw;
		height: 38vw;
		background: url('../../img/common/img_deco.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: 0;
		left: 85%;
		z-index: 2;
	}

	.message-txt-wrap {
		width: 100%;
		margin-top: 0;
		padding: 8vw 8vw 18vw;
		position: relative;
	}
	.message-txt-wrap::before {
		content: '';
		border-radius: 0 8vw 8vw 0;
	}
	.message-txt-wrap::after {
		content: '';
		width: 50vw;
		height: 100%;
		background: var(--color-light-green);
		position: absolute;
		top: 0;
		right: auto;
		left: -50vw;
		z-index: 1;
	}

	.message-img-wrap {
		width: 50vw;
		margin: -12vw 10% 0 auto;
		border-radius: 3vw;
		overflow: hidden;
		position: relative;
		z-index: 2;
	}
}

/*---------- 数字で見るSMIF ----------*/
.cont-data {
	width: 100%;
	margin-bottom: 120px;
	position: relative;
}

.data-list {
	width: 100%;
	margin: 35px auto 0;
	position: relative;
	align-items: flex-start;
	justify-content: space-between;
}
.data-list li {
	width: calc((100% - 100px) / 3);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.data-list li:first-child {
	margin-top: 60px;
}
.data-list li:last-child {
	margin-top: -60px;
}

.data-list-img {
	width: 100%;
	padding: 50px 80px;
	background: var(--color-light-gray);
	border-radius: 15px;
}
.data-list-ttl {
	margin-top: -20px;
	padding: 10px 30px;
	display: inline-block;
	background: #fff;
	border-radius: 20px;
	color: var(--color-primary);
	font-size: 1.8rem;
	font-weight: 700;
	white-space: nowrap;
}
.data-list-ttl .txt-sup {
	font-size: 1rem;
	vertical-align: super;
}
.data-list-txt {
	text-align: center;
	color: var(--color-primary);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.data-list-txt .txt-jost {
	font-size: 5.6rem;
}

.cont-data .btn-green {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 768px) {
	.cont-data {
		width: 100%;
		margin-bottom: 20vw;
		position: relative;
	}

	.data-list {
		width: 100%;
		margin: 8vw auto 0;
		position: relative;
		align-items: flex-start;
		justify-content: space-between;
	}
	.data-list li {
		width: 70%;
		margin: 0 auto 10vw;
	}
	.data-list li:first-child {
		margin-top: 0;
	}
	.data-list li:last-child {
		margin: 0 auto 10vw;
	}

	.data-list-img {
		width: 100%;
		padding: 5vw 10vw;
		background: var(--color-light-gray);
		border-radius: 3vw;
	}
	.data-list-ttl {
		margin-top: -4vw;
		padding: 1vw 6vw;
		border-radius: 4vw;
		font-size: var(--fs-sp-14);
	}
	.data-list-ttl .txt-sup {
		font-size: 2.8vw;
	}
	.data-list-txt {
		text-align: center;
		font-size: var(--fs-sp-14);
	}
	.data-list-txt .txt-jost {
		font-size: var(--fs-sp-32);
	}

	.cont-data .btn-green {
		margin: 0 auto;
		position: relative;
		bottom: auto;
		right: auto;
	}
}

/*---------- 仕事を知る ----------*/
.sec-job {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.sec-job .sec-ttl-l {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.sec-job {
		width: 100%;
		position: relative;
		overflow: hidden;
	}
	.sec-job .sec-ttl-l {
		margin-bottom: 10vw;
	}
}

/*----------  ----------*/
.cont-business {
	width: 100%;
	padding: 120px 0;
	position: relative;
}
.cont-business::before {
	content: '';
	width: 100%;
	height: 31.94vw;
	max-height: 460px;
	background: url('../../img/top/bg_business.jpg') top center no-repeat;
	background-size: cover;
	border-radius: 80px 80px 0 0;
	position: absolute;
	top: 0;
	left: 0;
}

.cont-business .cont-ttl-wrap {
	margin-bottom: 55px;
}
.cont-business .cont-ttl-en,
.cont-business .cont-ttl {
	color: #fff;
	border-left: 2px solid var(--color-light-green);
}
.cont-business .cont-ttl-en {
	border-left: 2px solid #fff;
}

.business-list {
	width: 100%;
	margin: 0 auto 120px;
	align-items: flex-start;
	justify-content: space-between;
}
.business-list li {
	width: calc((100% - 70px) / 2);
}
.business-list li a {
	display: block;
	position: relative;
}
.business-list li img {
	position: relative;
	z-index: 2;
}

.business-list .link-arrow-g {
	width: auto;
	padding: 1.04vw 4.3vw 1.04vw 1.87vw;
	background: #fff;
	border-radius: 1.04vw 0 0 0;
	color: var(--color-primary);
	font-size: 2.08vw;
	font-weight: 700;
	line-height: 1;
	position: relative;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	letter-spacing: 0.05em;
}
.business-list .link-arrow-g::after {
	content: '';
	width: 1.38vw;
	height: 0.34vw;
	background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 0.17vw);
	right: 1.04vw;
}
@media (min-width: 1441px) {
	.business-list .link-arrow-g {
		width: auto;
		padding: 15px 62px 15px 27px;
		border-radius: 15px 0 0 0;
		color: var(--color-primary);
		font-size: 3rem;
		font-weight: 700;
		line-height: 1;
		position: relative;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 1;
	}
	.business-list .link-arrow-g::after {
		content: '';
		width: 20px;
		height: 5px;
		background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 15px;
	}
}
@media (max-width: 1040px) {
	.cont-business::before {
		height: 41.94vw;
	}
}
@media (max-width: 768px) {
	.cont-business {
		width: 100%;
		padding: 12vw 0 20vw;
		position: relative;
	}
	.cont-business::before {
		content: '';
		width: 100%;
		height: 80vw;
		max-height: initial;
		background: url('../../img/top/bg_business.jpg') top center no-repeat;
		background-size: cover;
		border-radius: 8vw 8vw 0 0;
		position: absolute;
		top: 0;
		left: 0;
	}

	.cont-business .cont-ttl-wrap {
		margin-bottom: 10vw;
	}

	.business-list {
		width: 100%;
		margin: 0 auto;
		align-items: flex-start;
		justify-content: space-between;
	}
	.business-list li {
		width: 100%;
		margin-bottom: 12vw;
	}
	.business-list li a {
		display: block;
		position: relative;
	}
	.business-list li img {
		position: relative;
		z-index: 2;
	}

	.business-list .link-arrow-g {
		width: auto;
		padding: 3vw 12vw 3vw 2vw;
		border-radius: 0;
		font-size: var(--fs-sp-17);
	}
	.business-list .link-arrow-g::after {
		content: '';
		width: 4vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 4vw;
	}
}

/*---------- マイナビ ----------*/
.business-mynavi-link {
	width: 90%;
	max-width: 350px;
	margin: 0 auto;
	display: block;
}
.business-mynavi-txt {
	margin: 20px auto 50px;
	text-align: center;
}

.business-mynavi-list {
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}
.business-mynavi-list li {
	width: calc((100% - 60px) / 3);
	position: relative;
	cursor: pointer;
}
.business-mynavi-list li a {
	width: 100%;
	display: block;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--color-dark-primary);
}
.business-mynavi-list li a span {
	position: relative;
	display: block;
}
.business-mynavi-list .link-arrow-g {
	width: 80%;
	max-width: 215px;
	height: 50px;
	margin: 0 auto;
	padding: 0 42px 0 24px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	background: var(--color-dark-primary);
	transition: 0.3s ease-in-out;
}
.business-mynavi-list .link-arrow-g::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 22px;
}

.business-mynavi-list li.is-ready::after {
	content: 'Coming Soon';
	font-family: 'Jost', sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;

	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 4.5rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}
.business-mynavi-list li a::before {
	content: '';
	width: 55px;
	height: 55px;
	background: url(../../img/common/icon_play_g.svg) center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 88%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
@media (max-width: 1200px) {
	.business-mynavi-list li.is-ready::after {
		font-size: 3.75vw;
	}
	.business-mynavi-list li a::before {
		content: '';
		width: 4.583vw;
		height: 4.583vw;
	}
}
@media (max-width: 768px) {
	.business-mynavi-link {
		width: 90%;
		max-width: 350px;
		margin: 0 auto;
		display: block;
	}
	.business-mynavi-txt {
		margin: 4vw auto 0;
		text-align: center;
	}

	.business-mynavi-list {
		width: 100%;
		align-items: flex-start;
		justify-content: space-between;
	}
	.business-mynavi-list li {
		width: 90%;
		margin: 8vw auto 0;
		position: relative;
	}
	.business-mynavi-list li a {
		width: 100%;
		display: block;
		position: relative;
		border-radius: 3vw;
	}
	.business-mynavi-list .link-arrow-g {
		width: 70%;
		max-width: initial;
		height: auto;
		margin: 0 auto;
		padding: 5vw 9vw 5vw 6vw;
		border-radius: 1vw;
		font-size: var(--fs-sp-14);
	}
	.business-mynavi-list .link-arrow-g::after {
		content: '';
		width: 5vw;
		height: 2vw;
		top: calc(50% - 1vw);
		right: 5vw;
	}
	.business-mynavi-list li.is-ready::after {
		font-size: var(--fs-sp-32);
	}
	.business-mynavi-list li a::before {
		content: '';
		width: 14vw;
		height: 14vw;
	}
}

/*---------- 社員インタビュー ----------*/
.cont-interview {
	width: 100%;
}
.cont-interview .cont-inn {
	padding: 100px 0 150px;
	justify-content: space-between;
}
.cont-interview .cont-inn::before {
	content: '';
	width: 100%;
	height: 100%;
	background: var(--color-light-green);
	border-radius: 0 80px 80px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.cont-interview .cont-inn::after {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--color-light-green);
	position: absolute;
	top: 0;
	left: -50vw;
	z-index: 1;
}
.interview-wrap {
	display: flex;
	flex-wrap: wrap;
}
.interview-txt-wrap {
	position: relative;
	z-index: 2;
}
.cont-interview .cont-ttl-en {
	border-left: 2px solid #fff;
}

.cont-interview .btn-green {
	margin: 0 auto 0 0;
}

.interview-slide-wrap {
	width: 60vw;
	margin-right: calc(50% - 50vw);
	position: relative;
	z-index: 2;
}
.cont-interview .slick-list {
	padding-right: 10vw;
}
.interview-slide {
	width: 100%;
	padding-right: 20px;
}
.interview-slide-inn {
	width: 100%;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}
.interview-slide-inn::before {
	content: '';
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 15px 0 15px 0;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.interview-slide-inn::after {
	content: '';
	width: 50px;
	height: 50px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.person-wrap {
	position: relative;
}
.person-ttl-wrap {
	color: #fff;
	position: absolute;
	bottom: 10px;
	left: 18px;
}
.person-ttl {
	font-size: 1.8rem;
}
.person-name {
	font-size: 2rem;
	line-height: 2;
}
.person-name.sp-space {
	letter-spacing: -0.05em;
}

/* slider dots */
.cont-interview .slick-dots {
	width: 100%;
	margin: 0;
	padding-right: 16vw;
	display: flex;
	justify-content: flex-end;
	position: absolute;
	bottom: -30px;
	left: 0;
}
.cont-interview .slick-dots li {
	height: 2px;
	font-size: 0;
	line-height: 1;
}
.cont-interview .slick-dots li + li {
	margin-left: 5px;
}
.cont-interview .slick-dots li button {
	width: 42px;
	height: 2px;
	margin: 0;
	background: #fff;
	border: none;
	opacity: 1;
	font-size: 0;
	color: transparent;
	transition: 0.3s ease-in-out;
}
.cont-interview .slick-dots li.slick-active button {
	background: var(--color-primary);
}
@media (max-width: 1040px) {
	.interview-slide-wrap {
		width: 100vw;
		margin-right: 0;
		margin-top: 50px;
	}
	.person-name {
		font-size: 1.8vw;
	}
}
@media (max-width: 768px) {
	.cont-interview {
		width: 100%;
	}
	.cont-interview .cont-inn {
		padding: 12vw 0 30vw;
	}
	.cont-interview .cont-inn::before {
		border-radius: 0 8vw 8vw 0;
	}

	.interview-txt-wrap {
		width: 100%;
	}

	.interview-slide-wrap {
		width: 85vw;
		margin-left: auto;
		margin-right: calc(50% - 50vw);
		margin-top: 8vw;
		position: relative;
		z-index: 2;
	}
	.cont-interview .slick-list {
		padding-right: 20vw;
	}
	.interview-slide {
		width: 100%;
		padding-right: 4vw;
	}
	.interview-slide-inn {
		width: 100%;
		border-radius: 3vw;
	}
	.interview-slide-inn::before {
		content: '';
		width: 10vw;
		height: 10vw;
		border-radius: 3vw 0 3vw 0;
	}
	.interview-slide-inn::after {
		content: '';
		width: 10vw;
		height: 10vw;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 4vw;
	}
	.person-wrap {
		position: relative;
	}
	.person-ttl-wrap {
		color: #fff;
		position: absolute;
		bottom: 2vw;
		left: 4vw;
	}
	.person-ttl {
		font-size: var(--fs-sp-13);
	}
	.person-name {
		font-size: var(--fs-sp-16);
	}

	/* slider dots */
	.cont-interview .slick-dots {
		width: 100%;
		margin: 0;
		padding-right: 12vw;
		display: flex;
		position: absolute;
		bottom: -6vw;
		left: 0;
	}
	.cont-interview .slick-dots li + li {
		margin-left: 1vw;
	}
	.cont-interview .slick-dots li button {
		width: 8vw;
	}
}

/*---------- スケジュール ----------*/
.schedule-wrap {
	width: 90%;
	max-width: 900px;
	margin: -50px auto 120px;
	background: url('../../img/top/bg_schedule.jpg') center center no-repeat;
	background-size: cover;
	border-radius: 15px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 3;
	overflow: hidden;
}

.schedule-txt-wrap {
	width: calc(100% - 300px);
	padding-left: 130px;
	color: #fff;
	position: relative;
}
.schedule-txt-wrap::before {
	content: '';
	width: 66px;
	height: 66px;
	background: url('../../img/top/icon_schedule.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 33px);
	left: 40px;
}
.schedule-ttl-en {
	font-size: 1.8rem;
}
.schedule-ttl {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.schedule-img-wrap {
	width: 300px;
}

@media (max-width: 768px) {
	.schedule-wrap {
		width: 83%;
		max-width: initial;
		margin: -8vw auto 20vw;
		border-radius: 3vw;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 3;
		overflow: hidden;
	}

	.schedule-txt-wrap {
		width: calc(100% - 26vw);
		padding-left: 16vw;
	}
	.schedule-txt-wrap::before {
		content: '';
		width: 8vw;
		height: 8vw;
		top: calc(50% - 4vw);
		left: 4vw;
	}
	.schedule-ttl-en {
		font-size: var(--fs-sp-13);
	}
	.schedule-ttl {
		font-size: var(--fs-sp-16);
	}

	.schedule-img-wrap {
		width: 26vw;
	}
}

/*---------- 働く環境を知る ----------*/
.sec-environment {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.sec-environment .sec-ttl-l {
	margin-bottom: 60px;
}

.environment-list {
	width: 100%;
	margin: 0 auto 120px;
	align-items: flex-start;
	justify-content: space-between;
}
.environment-list li {
	width: calc((100% - 70px) / 2);
}
.environment-list li a {
	display: block;
	position: relative;
}
.environment-list li img {
	position: relative;
	z-index: 2;
}

.environment-list-ttl {
	width: 100%;
	color: var(--color-dark-primary);
	text-align: center;
	font-size: 2.08vw;
	font-weight: 700;
	position: absolute;
	top: 2.77vw;
	left: 0;
	z-index: 3;
	letter-spacing: 0.05em;
}
.environment-list .link-arrow-g {
	width: auto;
	padding: 1.04vw 4.3vw 1.04vw 1.87vw;
	background: #fff;
	border-radius: 1.04vw 0 0 0;
	color: var(--color-primary);
	font-size: 1.11vw;
	font-weight: 700;
	line-height: 1;
	position: relative;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.environment-list .link-arrow-g::after {
	content: '';
	width: 1.38vw;
	height: 0.34vw;
	background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 0.17vw);
	right: 1.04vw;
}
@media (min-width: 1441px) {
	.environment-list-ttl {
		font-size: 3rem;
		top: 40px;
		left: 0;
	}
	.environment-list .link-arrow-g {
		width: auto;
		padding: 15px 62px 15px 27px;
		border-radius: 15px 0 0 0;
		color: var(--color-primary);
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1;
		position: relative;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 1;
	}
	.environment-list .link-arrow-g::after {
		content: '';
		width: 20px;
		height: 5px;
		background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 15px;
	}
}
@media (max-width: 768px) {
	.sec-environment {
		width: 100%;
	}
	.sec-environment .sec-ttl-l {
		margin-bottom: 10vw;
	}

	.environment-list {
		width: 100%;
		margin: 0 auto;
		align-items: flex-start;
		justify-content: space-between;
	}
	.environment-list li {
		width: 100%;
		margin: 0 auto 12vw;
	}

	.environment-list-ttl {
		width: 100%;
		font-size: var(--fs-sp-17);
		top: 5vw;
	}
	.environment-list .link-arrow-g {
		width: auto;
		padding: 2vw 10vw 2vw 4vw;
		border-radius: 0;
		font-size: var(--fs-sp-12);
	}
	.environment-list .link-arrow-g::after {
		content: '';
		width: 4vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 2vw;
	}
}

/*---------- ギャラリー ----------*/
.cont-gallery {
	width: 100%;
	padding-bottom: 200px;
	position: relative;
}
.cont-gallery::after {
	content: '';
	width: 100%;
	height: 50%;
	background: var(--color-light-gray);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.cont-gallery .cont-ttl-wrap {
	margin-bottom: 60px;
}

.gallery-list {
	margin-bottom: 50px;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}
.gallery-list li {
	width: 25%;
}

.cont-gallery .btn-green {
	position: relative;
	z-index: 2;
}

@media (max-width: 768px) {
	.cont-gallery {
		width: 100%;
		padding-bottom: 30vw;
	}
	.cont-gallery .cont-ttl-wrap {
		margin-bottom: 10vw;
	}

	.gallery-list {
		margin-bottom: 10vw;
	}
	.gallery-list li {
		width: 50%;
	}

	.cont-gallery .btn-green {
		position: relative;
		z-index: 2;
	}
}

/*---------- 採用情報 ----------*/
.sec-recruit {
	width: 100%;
	padding: 40px 0 60px;
	background: var(--color-light-green);
	position: relative;
}
.sec-recruit::after {
	content: '';
	width: 100%;
	height: 43%;
	background: #fff;
	border-radius: 80px 80px 0 0;
	position: absolute;
	top: -80px;
	left: 0;
	z-index: 1;
}
.sec-recruit .cont-inn {
	z-index: 2;
}

.recruit-list {
	width: 100%;
	margin: 60px auto 80px;
	align-items: flex-start;
	justify-content: space-between;
}
.recruit-list li {
	width: calc((100% - 40px) / 2);
	padding: 0 30px 30px 0;
}
.recruit-list li a {
	display: block;
	position: relative;
}
.recruit-list li a::after {
	content: '';
	width: 100%;
	height: 100%;
	background: var(--color-primary);
	border-radius: 15px;
	position: absolute;
	bottom: -30px;
	right: -30px;
	z-index: 1;
}
.recruit-list li:last-child a::after {
	background: var(--color-dark-primary);
}
.recruit-list li img {
	position: relative;
	z-index: 2;
}

.recruit-list .link-arrow-w {
	width: auto;
	padding: 1.04vw 4.3vw 1.04vw 1.87vw;
	color: #fff;
	font-size: 2.08vw;
	font-weight: 700;
	line-height: 1;
	position: relative;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
	letter-spacing: 0.05em;
}
.recruit-list .link-arrow-w::after {
	content: '';
	width: 1.38vw;
	height: 0.34vw;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 0.17vw);
	right: 1.04vw;
}

@media (min-width: 1441px) {
	.recruit-list .link-arrow-w {
		width: auto;
		padding: 15px 62px 15px 27px;
		color: #fff;
		font-size: 3rem;
	}
	.recruit-list .link-arrow-w::after {
		content: '';
		width: 20px;
		height: 5px;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 15px;
	}
}
@media (max-width: 1200px) {
	.sec-recruit::after {
		height: 42vw;
	}
}

@media (max-width: 768px) {
	.sec-recruit {
		width: 100%;
		padding: 8vw 0 12vw;
	}
	.sec-recruit::after {
		content: '';
		width: 100%;
		height: 66vw;
		background: #fff;
		border-radius: 8vw 8vw 0 0;
		position: absolute;
		top: -8vw;
		left: 0;
		z-index: 1;
	}
	.sec-recruit .cont-inn {
		z-index: 2;
	}

	.recruit-list {
		width: 100%;
		margin: 0 auto 5vw;
		align-items: flex-start;
		justify-content: space-between;
	}
	.recruit-list li {
		width: 100%;
		margin: 10vw auto 0;
		padding: 0 6vw 6vw 0;
	}
	.recruit-list li a {
		display: block;
		position: relative;
	}
	.recruit-list li a::after {
		content: '';
		width: 100%;
		height: 100%;
		border-radius: 3vw;
		position: absolute;
		bottom: -6vw;
		right: -6vw;
		z-index: 1;
	}

	.recruit-list .link-arrow-w {
		width: auto;
		padding: 3vw 10vw 3vw 3vw;
		border-radius: 0;
		font-size: var(--fs-sp-17);
	}
	.recruit-list .link-arrow-w::after {
		content: '';
		width: 4vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 2vw;
	}
}

/*---------- リンクリスト ----------*/
.link-list {
	width: 100%;
	margin: 0 auto;
	align-items: flex-start;
	justify-content: space-between;
}
.link-list li {
	width: calc((100% - 40px) / 2);
}
.link-list li:last-child {
	margin: 50px auto;
}
.link-list li a {
	width: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 15px;
	position: relative;
}
.link-list li a::before {
	content: '';
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 15px 0 15px 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.link-list li a::after {
	content: '';
	width: 50px;
	height: 50px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.link-img-wrap {
	width: 184px;
	border-radius: 13px 0 0 13px;
	overflow: hidden;
}
.link-txt-wrap {
	width: calc(100% - 214px);
}
.link-ttl-en {
	margin-bottom: 5px;
	color: var(--color-primary);
	font-size: 1.8rem;
}
.link-ttl {
	font-size: 2.5rem;
	line-height: 1.6;
}
.link-ttl span {
	display: inline-block;
}
.link-txt {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.7;
}
@media (max-width: 1240px) {
	.link-list li:last-child {
		min-width: 540px;
	}
}
@media (max-width: 960px) {
	.link-list li {
		min-width: 540px;
		margin: 0 auto;
	}
	.link-list li + li {
		margin-top: 50px;
	}
}
@media (max-width: 768px) {
	.link-list {
		width: 100%;
		margin: 0 auto;
		align-items: flex-start;
		justify-content: space-between;
	}
	.link-list li {
		width: 100%;
		margin: 6vw auto 0;
	}
	.link-list li:last-child {
		margin: 6vw auto 0;
		min-width: initial;
	}
	.link-list li {
		min-width: initial;
	}
	.link-list li + li {
		margin-top: 6vw;
	}
	.link-list li a {
		width: 100%;
		padding: 2vw;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		background: #fff;
		border-radius: 3vw;
		position: relative;
	}
	.link-list li a::before {
		content: '';
		width: 10vw;
		height: 10vw;
		border-radius: 3vw 0 3vw 0;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.link-list li a::after {
		content: '';
		width: 10vw;
		height: 10vw;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 4vw;
	}
	.link-img-wrap {
		width: 28vw;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 2.2vw 0 0 2.2vw;
		overflow: hidden;
		background: var(--color-light-gray);
	}
	.link-txt-wrap {
		width: calc(100% - 32vw);
		margin: auto 0 auto auto;
	}
	.link-list li:last-child .link-txt-wrap {
		padding-bottom: 8vw;
	}
	.link-ttl-en {
		font-size: var(--fs-sp-13);
		margin-bottom: 0;
	}
	.link-ttl {
		font-size: var(--fs-sp-16);
	}
	.link-txt {
		font-size: var(--fs-sp-12);
	}
}

/*---------- お問い合わせ ----------*/
.sec-contact {
	width: 100%;
	padding: 80px 0;
	background: #fff;
	position: relative;
}
.contact-inn {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	padding: 65px 50px 65px 75px;
	align-items: center;
	justify-content: space-between;
	background: url('../../img/top/bg_contact.jpg') center center no-repeat;
	background-size: cover;
	border-radius: 15px;
}
.sec-contact .cont-ttl-wrap {
	margin-bottom: 0;
}
.sec-contact .cont-ttl-en,
.sec-contact .cont-ttl {
	padding-left: 0;
	border-left: none;
	color: #fff;
}
.sec-contact .btn-white {
	max-width: 255px;
	margin: 0;
}

@media (max-width: 768px) {
	.sec-contact {
		width: 100%;
		padding: 10vw 0;
	}
	.contact-inn {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		padding: 6vw 8vw;
		border-radius: 3vw;
	}
	.sec-contact .cont-ttl-wrap {
		margin-bottom: 0;
	}
	.sec-contact .cont-ttl-en,
	.sec-contact .cont-ttl {
		padding-left: 0;
		border-left: none;
		color: #fff;
	}
	.sec-contact .btn-white {
		width: 90%;
		max-width: initial;
		margin: 5vw auto 0 0;
	}
}

/*----------  ----------*/

@media (max-width: 768px) {
}
