@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/







/*================================
スクロールアニメーション
================================*/
/*初期状態*/
.slideInRight .action01,
.slideInRight .action02 {
	opacity: 0;
	display: inline-block;
	overflow: hidden;
}
.slideInRight .action01Item,
.slideInRight .action02Item {
	display: inline-block;
}
/*アニメーション指定*/
.slideInRight.-anime .action01 {
	animation: slideInRight 0.6s 0s ease forwards;
}
.slideInRight.-anime .action02 {
	animation: slideInRight 0.6s 0.4s ease forwards;
}
.slideInRight.-anime .action01Item {
	animation: slideInRightItem 0.6s 0s ease forwards;
}
.slideInRight.-anime .action02Item {
	animation: slideInRightItem 0.6s 0.4s ease forwards;
}
/*アニメーション内容*/
@keyframes slideInRight {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideInRightItem {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/*================================
共通パーツ
================================*/
.section_title {
	margin-bottom: 40px;
}
.section_title_en {
	font-family: 'Viga', sans-serif;
	font-size: 10rem;
	font-weight: 400;
	line-height: 1;
}
.section_title_jp {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

/*================================
メインビジュアル
================================*/
.main-visual {
	height: 93.3rem;
	background-image: url(../img/top/mv_bg.png);
	background-position: top center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-color: var(--theme-color01);
	padding-top: 23rem;
}
.mv-slide {}
.mv-slide_content {
	transform: rotate(-5deg);
	display: flex;
	justify-content: flex-start;
}
.mv-slide_list {
	display: flex;
	justify-content: flex-start;
	gap: 0 2rem;
	padding-right: 2rem;
}
.mv-slide_list-item {
	width: 28rem;
	height: 39.3rem;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

/*アニメーション設定*/
/*------------------------------*/
.mv-slide_list:first-child {
	animation: loop01 90s -45s linear infinite;
}
.mv-slide_list:nth-child(2) {
	animation: loop02 90s linear infinite;
}

/*loop01*/
/*------------------------------*/
@keyframes loop01 {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}

/*loop02*/
/*------------------------------*/
@keyframes loop02 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}

/*キャッチコピー*/
/*------------------------------*/
.catch-copy {
	opacity: 0;
	text-align: right;
	padding-bottom: 10px;
	/*↓アニメーション*/
	animation: blurAnime .8s .3s ease forwards;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}

.catch-copy_jp {
	margin-bottom: 0.2em;
	font-size: 7.8rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #fff;
	text-shadow: 2px 2px 1px #009cea, -2px 2px 1px #009cea, 2px -2px 1px #009cea, -2px -2px 1px #009cea, 2px 0px 1px #009cea, 0px 2px 1px #009cea, -2px 0px 1px #009cea, 0px -2px 1px #009cea;
}
.catch-copy_en {
	padding-right: 9rem;
	font-family: 'Viga', sans-serif;
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--accent-color);
	text-shadow: 2px 2px 1px #009cea, -2px 2px 1px #009cea, 2px -2px 1px #009cea, -2px -2px 1px #009cea, 2px 0px 1px #009cea, 0px 2px 1px #009cea, -2px 0px 1px #009cea, 0px -2px 1px #009cea;
}
.catch-copy_en .big {
	font-size: 3.6rem;
}

/*================================
ニュース、バナー
================================*/
.news  {
	background: #fff;
}
.news .inner {
	max-width: calc(1120px + 14rem);
	padding-top: 100px;
	padding-bottom: 100px;
}
.news_flex {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 40px 2rem;
	max-width: 1020px;
	margin-left: auto;
	margin-right: auto;
}
.news_title {
	width: 14rem;
}
.news_title_en {
	font-family: 'Viga', sans-serif;
	font-weight: 400;
	font-size: 4.3rem;
	line-height: 1.4;
	color: var(--theme-color01);
}
.news_link {
	text-align: left;
}
.news_link-btn {
	display: inline-block;
	transition: .3s;
	padding: 0.6em 3.4em 1em 0;
	font-size: 1.6rem;
	background: url(../img/top/news_link_arrow.png)right center/4.5rem auto no-repeat;
}
.news_link-btn:hover {
	transform: translateX(6px);
}
.news_link_text {
	display: inline-block;
	border-bottom: 1px solid #333;
	color: #333;
}
.news_content  {
	width: calc(100% - (14rem + 2rem));
}
.news_scroll {
	overflow-y: scroll;
	padding-right: 20px;
	min-height: 12rem;
	max-height: 20rem;
}
.news_list {}
.news_list .date {
	float: left;
	width: 12rem;
	font-size: 1.6rem;
	font-weight: 700;
	color: #999;
}
.news_list .article {
	margin-left: 12rem;
	margin-bottom: 20px;
}
.news_list .title {}
.news_list .title_link {
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--theme-color01);
}
.news_list .text,
.news_list p {
	font-size: 1.6rem;
	color: #999;
}
/*
スライドバナー
================================*/
.news-bnr {
	padding: 0 48px;
}
.news-bnr_content {
	position: relative;
	z-index: 1;
}
.news-bnr_slider {
	overflow: hidden;
}
.news-bnr_slider .swiper-wrapper {}
.news-bnr_slider .swiper-slide {}
.swiper-button-next {
	right: -40px;
}
.swiper-button-prev {
	left: -40px;
}
.swiper-button-next,
.swiper-button-prev {
	color: var(--theme-color01);
}

/*================================
事業内容
================================*/
.industry {
	background: #eee;
}
.industry .inner {
	position: relative;
	z-index: 1;
	min-height: 50rem;
	max-width: calc(1020px + 14rem);
	padding-top: 50px;
	padding-bottom: 60px;
}
.industry_article {
	width: 52%;
}
.industry_text {
	text-shadow:
		1px 1px 0px #eeeeee, -1px 1px 0px #eeeeee,
		1px -1px 0px #eeeeee, -1px -1px 0px #eeeeee,
		1px 0px 0px #eeeeee, 0px 1px 0px #eeeeee,
		-1px 0px 0px #eeeeee, 0px -1px 0px #eeeeee;
}
.industry_picture {
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: 7rem;
	width: 53.5rem;
}
.industry_name {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 5rem;
	font-weight: 700;
	text-align: left;
	color: var(--theme-color01);
	text-shadow: 1px 1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff, 1px 0px 1px #fff, 0px 1px 1px #fff, -1px 0px 1px #fff, 0px -1px 1px #fff;
}
.industry_name .job {
	font-size: 2.2rem;
	line-height: 1.4;
}
.industry_name .name {
	font-size: 3.8rem;
	line-height: 1.4;
}
.link-btn.-industry {
	max-width: 28rem;
}

/*================================
募集職種
================================*/
.wanted {
	background: var(--theme-color01);
}
.wanted .inner {
	max-width: calc(1020px + 14rem);
	padding-top: 50px;
	padding-bottom: 60px;
}
.section_title.-wanted {
	text-align: center;
}
.wanted_lead-text {
	font-weight: 700;
	text-align: center;
}
.wanted_lists_group {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 2rem;
}
.wanted_lists {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 2rem;
}
.wanted_item {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 3rem;
	width: 24rem;
}
.wanted_item::before {
	transition: .4s;
	position: absolute;
	z-index: -1;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.wanted_item:hover::before {
	transform: scale(1.1);
}
.wanted_link {
	display: block;
	width: 100%;
	padding-top: 100%;
}
.wanted_link::after {
	position: absolute;
	z-index: 1;
	content: "";
	right: 1rem;
	bottom: 1rem;
	width: 4.5rem;
	height: 4.5rem;
	background: url(../img/top/wanted_arrow.png)center/contain no-repeat;
}
.wanted_title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	min-width: 9rem;
	height: 7.3rem;
	padding: 0 1.6rem 0.8rem;
	background-position: top right;
	background-size: 12.6rem auto;
	background-repeat: no-repeat;
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
	color: #fff;
}

/*item01*/
.wanted_item.-item01 .wanted_title {
	background-image: url(../img/top/wanted_title_bg01.png);
}
.wanted_item.-item01::before {
	background: url(../img/top/wanted_pic01.png)center/cover no-repeat;
}
/*item02*/
.wanted_item.-item02 .wanted_title {
	background-image: url(../img/top/wanted_title_bg02.png);
}
.wanted_item.-item02::before {
	background: url(../img/top/wanted_pic02.png)center/cover no-repeat;
}
/*item03*/
.wanted_item.-item03 .wanted_title {
	background-image: url(../img/top/wanted_title_bg03.png);
}
.wanted_item.-item03::before {
	background: url(../img/top/wanted_pic03.png)center/cover no-repeat;
}
/*item04*/
.wanted_item.-item04 .wanted_title {
	background-image: url(../img/top/wanted_title_bg04.png);
}
.wanted_item.-item04::before {
	background: url(../img/top/wanted_pic04.png)center/cover no-repeat;
}

/*================================
社員紹介
================================*/
.people {
	background: url(../img/pattern02.jpg)top center;
}
.people .inner {
	position: relative;
	z-index: 1;
	max-width: calc(1020px + 14rem);
	padding-top: 70px;
	padding-bottom: 60px;
}
.people_flex {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction: row-reverse;
	gap: 40px 0;
}
.people_article {
	width: 52%;
	padding-left: 10rem;
	padding-top: 11rem;
	background: url(../img/top/people_deco01.png)left top 3rem/15rem auto no-repeat;
}
.people_text {
	font-weight: 700;
}

.people_pictures {
	position: relative;
	z-index: 1;
	width: 51rem;
	height: 57rem;
	margin-right: -3rem;
}
.people_pictures_item {
	position: absolute;
	z-index: 1;
	transition: .4s;
}
.people_pictures_item.-item01 {
	width: 60%;
	top: 0;
	left: 8%;
}
.people_pictures_item.-item02 {
	width: 48%;
	left: 0;
	bottom: 0;
}
.people_pictures_item.-item03 {
	width: 49%;
	right: 0;
	bottom: 12%;
}
.people_pictures_item:hover {
	transform: scale(1.1);
}
.people_link {
	position: absolute;
	right: 0;
	bottom: 12rem;
	width: 52%;
	margin-left: auto;
	padding-left: 10rem;
}
.link-btn.-people {
	max-width: 28rem;
}

/*================================
その他
================================*/
.others {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-flow: row wrap;
	background: var(--theme-color01);
}
.others_item {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.others_item::before {
	transition: .4s;
	position: absolute;
	z-index: -1;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.others_item:hover::before {
	transform: scale(1.1);
}
.others_link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px;
}
/*item01*/
.others_item.-item01 {
	width: 50%;
	height: 38.8rem;
}
.others_item.-item01::before {
	background: url(../img/top/others_item01_bg.png)center/cover no-repeat;
}
/*item02*/
.others_item.-item02 {
	width: 50%;
	height: 38.8rem;
}
.others_item.-item02::before {
	background: url(../img/top/others_item02_bg.png)center/cover no-repeat;
}
/*item03*/
.others_item.-item03 {
	width: 100%;
	height: 38.5rem;
}
.others_item.-item03::before {
	background: url(../img/top/others_item03_bg.png)center/cover no-repeat;
}

/*================================
採用情報
================================*/
.recruit {
	background: url(../img/pattern03.jpg)top center;
}
.recruit .inner {
	max-width: calc(1020px + 14rem);
	padding-top: 80px;
	padding-bottom: 80px;
}
.recruit_title {
	margin-bottom: 40px;
}
.recruit_title_en {
	font-family: 'Viga', sans-serif;
	font-weight: 400;
	font-size: 4.3rem;
	text-align: center;
	line-height: 1.4;
	color: var(--theme-color01);
}
.recruit_title_jp {
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	color: var(--theme-color01);
}
.recruit_content01 {
	padding: 40px;
	background: #fff;
}
.recruit_lists {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 20px; 3rem;
}
.recruit_item {
	width: calc(100%/2 - (3rem/2));
}
.link-btn.-recruit {}



/*================================
ノートPC 1366px～0px
================================*/
@media (max-width: 1366px) {}


/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {

	/*================================
	共通パーツ
	================================*/
	.section_title {}
	.section_title_en {}
	.section_title_jp {}

	/*================================
	メインビジュアル
	================================*/
	.main-visual {}
	.mv-slide {}
	.mv-slide_content {}
	.mv-slide_list {}
	.mv-slide_list-item {}

	/*キャッチコピー*/
	/*------------------------------*/
	.catch-copy {}
	.catch-copy_jp {}
	.catch-copy_en {}
	.catch-copy_en .big {}

	/*================================
	ニュース、バナー
	================================*/
	.news  {}
	.news .inner {}
	.news_flex {}
	.news_title {}
	.news_title_en {}
	.news_link-btn {}
	.news_link_text {}
	.news_content  {}
	.news_scroll {}
	.news_list {}
	.news_list .date {}
	.news_list .article {}
	.news_list .title {}
	.news_list .title_link {}
	.news_list .text {}
	/*
	スライドバナー
	================================*/
	.news-bnr {}
	.news-bnr_content {}
	.news-bnr_slider {}
	.news-bnr_slider .swiper-wrapper {}
	.news-bnr_slider .swiper-slide {}
	.swiper-button-next {}
	.swiper-button-prev {}

	/*================================
	事業内容
	================================*/
	.industry {}
	.industry .inner {}
	.industry_article {}
	.industry_text {}
	.industry_picture {}
	.industry_name {}
	.industry_name .job {}
	.industry_name .name {}
	.link-btn.-industry {}

	/*================================
	募集職種
	================================*/
	.wanted {}
	.wanted .inner {}
	.section_title.-wanted {}
	.wanted_lead-text {}
	.wanted_lists_group {}
	.wanted_lists {}
	.wanted_item {}
	.wanted_item::before {}
	.wanted_link {}
	.wanted_link::after {}
	.wanted_title {}

	/*================================
	社員紹介
	================================*/
	.people {}
	.people .inner {}
	.people_flex {}
	.people_article {}
	.people_text {}

	.people_pictures {}
	.people_pictures_item {}
	.people_pictures_item.-item01 {}
	.people_pictures_item.-item02 {}
	.people_pictures_item.-item03 {}
	.people_pictures_item:hover {}
	.people_link {}
	.link-btn.-people {}

	/*================================
	その他
	================================*/
	.others {}
	.others_item {}
	.others_link {}
	/*item01*/
	.others_item.-item01 {}
	/*item02*/
	.others_item.-item02 {}
	/*item03*/
	.others_item.-item03 {}

	/*================================
	採用情報
	================================*/
	.recruit {}
	.recruit .inner {}
	.recruit_title {}
	.recruit_title_en {}
	.recruit_title_jp {}
	.recruit_content01 {}
	.recruit_lists {}
	.recruit_item {}
	.link-btn.-recruit {}
	
	
}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {

	/*================================
	共通パーツ
	================================*/
	.section_title {}
	.section_title_en {}
	.section_title_jp {}

	/*================================
	メインビジュアル
	================================*/
	.main-visual {
		background-image: url(../img/top/mv_bg_tab.png);
	}
	.mv-slide {}
	.mv-slide_content {}
	.mv-slide_list {}
	.mv-slide_list-item {}

	/*キャッチコピー*/
	/*------------------------------*/
	.catch-copy {}
	.catch-copy_jp {}
	.catch-copy_en {}
	.catch-copy_en .big {}

	/*================================
	ニュース、バナー
	================================*/
	.news  {}
	.news .inner {}
	.news_flex {}
	.news_title {}
	.news_title_en {}
	.news_link-btn {}
	.news_link_text {}
	.news_content  {}
	.news_scroll {}
	.news_list {}
	.news_list .date {}
	.news_list .article {}
	.news_list .title {}
	.news_list .title_link {}
	.news_list .text {}
	/*
	スライドバナー
	================================*/
	.news-bnr {}
	.news-bnr_content {}
	.news-bnr_slider {}
	.news-bnr_slider .swiper-wrapper {}
	.news-bnr_slider .swiper-slide {}
	.swiper-button-next {}
	.swiper-button-prev {}

	/*================================
	事業内容
	================================*/
	.industry {}
	.industry .inner {}
	.industry_article {}
	.industry_text {}
	.industry_picture {}
	.industry_name {}
	.industry_name .job {}
	.industry_name .name {}
	.link-btn.-industry {}

	/*================================
	募集職種
	================================*/
	.wanted {}
	.wanted .inner {}
	.section_title.-wanted {}
	.wanted_lead-text {}
	.wanted_lists_group {}
	.wanted_lists {}
	.wanted_item {}
	.wanted_item::before {}
	.wanted_link {}
	.wanted_link::after {}
	.wanted_title {}

	/*================================
	社員紹介
	================================*/
	.people {}
	.people .inner {}
	.people_flex {}
	.people_article {}
	.people_text {}

	.people_pictures {}
	.people_pictures_item {}
	.people_pictures_item.-item01 {}
	.people_pictures_item.-item02 {}
	.people_pictures_item.-item03 {}
	.people_pictures_item:hover {}
	.people_link {}
	.link-btn.-people {}

	/*================================
	その他
	================================*/
	.others {}
	.others_item {}
	.others_link {}
	/*item01*/
	.others_item.-item01 {}
	/*item02*/
	.others_item.-item02 {}
	/*item03*/
	.others_item.-item03 {}

	/*================================
	採用情報
	================================*/
	.recruit {}
	.recruit .inner {}
	.recruit_title {}
	.recruit_title_en {}
	.recruit_title_jp {}
	.recruit_content01 {}
	.recruit_lists {}
	.recruit_item {}
	.link-btn.-recruit {}


}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*================================
	共通パーツ
	================================*/
	.section_title {}
	.section_title_en {
		font-size: 7rem;
	}
	.section_title_jp {
		font-size: 3rem;
	}

	/*================================
	メインビジュアル
	================================*/
	.main-visual {
		height: auto;
		padding-top: 140px;
		background-image: url(../img/top/mv_bg_sp.png);
	}
	.mv-slide {}
	.mv-slide_content {}
	.mv-slide_list {}
	.mv-slide_list-item {
		width: 180px;
		height: auto;
	}

	/*キャッチコピー*/
	/*------------------------------*/
	.catch-copy {
		padding-top: 60px;
	}
	.catch-copy_jp {
		font-size: 3.6rem;
	}
	.catch-copy_en {
		font-size: 2.4rem;
		padding-right: 4rem;
	}
	.catch-copy_en .big {
		font-size: 2.6rem;
	}

	/*================================
	ニュース、バナー
	================================*/
	.news  {}
	.news .inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.news_flex {
		flex-direction: column;
	}
	.news_title {
		width: 100%;
	}
	.news_title_en {}
	.news_link {
		text-align: right;
	}
	.news_link-btn {}
	.news_link_text {}
	.news_content  {
		width: 100%;
	}
	.news_scroll {}
	.news_list {}
	.news_list .date {
		float: none;
		width: 100%;
	}
	.news_list .article {
		margin-left: 0;
	}
	.news_list .title {}
	.news_list .title_link {}
	.news_list .text {}
	/*
	スライドバナー
	================================*/
	.news-bnr {
		padding: 0;
	}
	.news-bnr_content {}
	.news-bnr_slider {}
	.news-bnr_slider .swiper-wrapper {}
	.news-bnr_slider .swiper-slide {}
	.swiper-button-next {
		right: -16px;
	}
	.swiper-button-prev {
		left: -16px;
	}
	.swiper-button-next::after,
	.swiper-button-prev::after {
		font-size: 26px;
	}

	/*================================
	事業内容
	================================*/
	.industry {}
	.industry .inner {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.industry_article {
		width: 100%;
	}
	.industry_text {}
	.industry_picture {
		position: relative;
		width: 100%;
		bottom: auto;
		right: auto;
	}
	.industry_name {}
	.industry_name .job {}
	.industry_name {
		right: auto;
		left: 1rem;
		bottom: 3rem;
	}
	.link-btn.-industry {
		margin: auto;
	}

	/*================================
	募集職種
	================================*/
	.wanted {}
	.wanted .inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section_title.-wanted {}
	.wanted_lead-text {}
	.wanted_lists_group {
		max-width: 400px;
		margin: auto;
	}
	.wanted_lists {
		width: 100%;
	}
	.wanted_item {
		width: calc(100%/2 - 2rem/2);
	}
	.wanted_item::before {}
	.wanted_link {}
	.wanted_link::after {}
	.wanted_title {
		height: 6.3rem;
		background-position: bottom right;
		font-size: 1.6rem;
	}

	/*================================
	社員紹介
	================================*/
	.people {}
	.people .inner {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.people_flex {
		flex-direction: column;
		margin-bottom: 40px;
	}
	.people_article {
		width: 100%;
		padding-left: 0rem;
		padding-top: 9rem;
		background: url(../img/top/people_deco01.png)left top 3rem/12rem auto no-repeat;
	}
	.people .section_title {
		padding-left: 20px;
	}
	.people_text {}

	.people_pictures {
		width: 100%;
		height: 100vw;
		margin-right: 0;
	}
	.people_pictures_item {}
	.people_pictures_item.-item01 {}
	.people_pictures_item.-item02 {}
	.people_pictures_item.-item03 {}
	.people_pictures_item:hover {}
	.people_link {
		position: static;
		width: auto;
		margin: 0;
		padding: 0;
	}
	.link-btn.-people {
		margin: auto;
	}

	/*================================
	その他
	================================*/
	.others {}
	.others_item {}
	.others_link {}
	.others_title {}
	/*item01*/
	.others_item.-item01 {
		width: 100%;
		height: 50vw;
	}
	.others_item.-item01 .others_title {
		width: 60%;
	}
	/*item02*/
	.others_item.-item02 {
		width: 100%;
		height: 50vw;
	}
	.others_item.-item02 .others_title {
		width: 80%;
	}
	/*item03*/
	.others_item.-item03 {
		width: 100%;
		height: 50vw;
	}
	.others_item.-item03 .others_link {
		padding: 0;
	}

	/*================================
	採用情報
	================================*/
	.recruit {}
	.recruit .inner {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.recruit_title {}
	.recruit_title_en {}
	.recruit_title_jp {}
	.recruit_content01 {
		padding: 20px;
	}
	.recruit_lists {
		gap: 10px;
	}
	.recruit_item {
		width: 100%;
	}
	.link-btn.-recruit {}


}

















