<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*
GLOBAL
***************************************************************************/
html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	width: 100%;
	height: auto;
	text-align: left;
	font-style: normal;
	font-size: 1.6rem;
	font-weight: 400;
	color: #fff;
	line-height: 2;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1rem;
	background: #2d313b;
	caret-color: transparent;
}

/* ▼CONTAINER CONTROL▼ */
.base_box {
	position: relative;
	width: 1400px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.base_box.small { width:1200px; }
.base_box.mid_large { width:1500px; }
.base_box.large { width:1600px; }
.base_box.ex_large { width:1800px; }

.base_box.half_left {
	width: calc(1400px + ((100vw - 1400px) / 2));
	margin-left: calc((100vw - 1400px) / 2);
	margin-right: 0;
}

.base_box.half_right {
	width: calc(1400px + ((100vw - 1400px) / 2));
	margin-left: 0;
	margin-right: calc((100vw - 1400px) / 2);
}

.base_box.large.half_left {
	width: calc(1600px + ((100vw - 1600px) / 2));
	margin-left: calc((100vw - 1600px) / 2);
}

.base_box.large.half_right {
	width: calc(1600px + ((100vw - 1600px) / 2));
	margin-right: calc((100vw - 1600px) / 2);
}

.base_box.ex_large.half_left {
	width: calc(1800px + ((100vw - 1800px) / 2));
	margin-left: calc((100vw - 1800px) / 2);
}

.base_box.ex_large.half_right {
	width: calc(1800px + ((100vw - 1800px) / 2));
	margin-right: calc((100vw - 1800px) / 2);
}

@media screen and (max-width: 1920px){

	.base_box.ex_large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

	.base_box.ex_large.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

	.base_box.ex_large.half_right {
		width: auto;
		margin-left: 0;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1720px){

	.base_box.large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

	.base_box.large.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

	.base_box.large.half_right {
		width: auto;
		margin-left: 0;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1640px){

	.base_box.ex_large .base_box, .base_box.large .base_box {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1620px){

	.base_box.mid_large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1520px){

	.base_box {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

	.base_box.small {
		width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}

	.base_box.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

	.base_box.half_right {
		width: auto;
		margin-left: 0;
		margin-right: 60px;
	}

}

.pc_disp { display:block; }
.sp_disp { display:none; }

/*
DEFAULT
***************************************************************************/
body,
h1,h2,h3,h4,h5,h6,p,div,
ul,ol,li,dl,dt,dd,
form,fieldset,legend,pre,blockquote,main,
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	word-wrap: break-word;
	font-feature-settings: "palt";
	backface-visibility: hidden;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 600;
	line-height: 1.5;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	overflow: hidden;
}

iframe { border:none; }

li {
	list-style-type: none;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

th {
	text-align: left;
	font-weight: 400;
}

/* ▼LINK▼ */
a {
	color: #fff;
	text-decoration: none;
	outline: none;
	transition: .3s;
}

a:hover {
	text-decoration: none;
}

a.normal_link {
	color: #fff;
	text-decoration: underline;
}

a.txt_link {
	display: inline-block;
	position: relative;
	color: #fff;
}

a.txt_link::before {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

a.txt_link:hover { opacity:0.7; }

a.icon_link { margin:0 3px; }

a::before, a::after, button::before, button::after {
	content: '';
	position: absolute;
	transition: .3s;
}

.hover_light a:hover, a.hover_light:hover, .modal_switch.hover_light:hover, .hover_light button:hover, .hover_light .modal_switch:hover,
.hover_light a:hover::before, a.hover_light:hover::before, .modal_switch.hover_light:hover::before,
.hover_light a:hover::after, a.hover_light:hover::after, .modal_switch.hover_light:hover::after {
	opacity: 0.7;
}

/* ▼IMG▼ */
img, input[type="image"] {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
}

button, input[type="submit"] {
	padding: 0;
	vertical-align: middle;
	font-family: "Noto Sans JP", sans-serif;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	transition: .3s;
}

.img_frame {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	transition: .3s;
}

.hover_zoom a .img, .hover_zoom .modal_switch .img { overflow:hidden; }

.hover_zoom a:hover .img_frame, .hover_zoom .modal_switch:hover .img_frame {
	transform: scale(1.05);
}

/*
TOPIMG
***************************************************************************/
#topimg {
	position: relative;
	padding-top: 180px;
}

#topimg .logo {
	position: absolute;
	top: 30px;
	left: 80px;
	width: 180px;
}

#topimg .logo img { width:100%; }

#topimg .title_box {
	margin-bottom: 70px;
	font-size: 2rem;
}

#topimg .title_box .txt {
	margin-bottom: 10px;
	font-size: 2.4rem;
	font-weight: 600;
}

#topimg .title_box .txt span {
	color: #f35a54;
}

#topimg .title_box .title {
	margin-bottom: 15px;
	font-size: 6rem;
	font-weight: 700;
	color: #f35a54;
	line-height: 1.35;
}

#topimg .hbtn {
	position: absolute;
	top: 400px;
	right: calc((100% - 1160px) / 8);
	width: 260px;
	height: 260px;
	padding-top: 60px;
	text-align: center;
	font-weight: 600;
	background: #f35a54;
	border-radius: 50%;
	z-index: 10;
}

#topimg .hbtn:hover { background:#ec3731; }

#topimg .hbtn span {
	display: block;
	margin-bottom: 10px;
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 1;
	font-family: "Libre Baskerville", serif;
}

#topimg .hbtn::after {
	content: '';
	position: absolute;
	bottom: 40px;
	left: 50%;
	width: 60px;
	height: 60px;
	background: url(../images/arrow_white.png) center center / 60px no-repeat;
	transform: translateX(-50%);
}

#topimg .img {
	width: calc(100% - ((100% - 1160px) / 4));
	height: 960px;
}

#topimg .img_frame {
	background-image: url(../images/pc/topimg.jpg);
	border-radius: 0 120px 120px 0;
}

.btn_gnavi {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 80px;
	height: 80px;
	background: url(../images/btn_gnavi.png) center center / 80px no-repeat;
	cursor: pointer;
	z-index: 1000;
}

/*
NAVI
***************************************************************************/
#gnavi {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding-top: 200px;
	background: #1d1e21;
	z-index: 1001;
}

#gnavi .close_gnavi {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 80px;
	height: 80px;
	background: url(../images/btn_close.png) center center / 80px no-repeat;
	cursor: pointer;
	z-index: 1001;
}

#gnavi .scroll_box {
	height: calc(100vh - 200px);
}

#gnavi .sec_inner {
	width: 860px;
	margin: 0 auto;
}

#gnavi .list {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: solid 1px rgba(255,255,255,0.1);
}

#gnavi .list li {
	float: left;
	width: 25%;
	margin-bottom: 15px;
	font-weight: 600;
}

#gnavi .slist {
	margin-bottom: 35px;
}

#gnavi .slist li {
	display: inline-block;
	margin-right: 50px;
	font-size: 1.4rem;
	font-weight: 500;
}

#gnavi .slist li:last-child { margin-right:0; }

#gnavi .list a:hover, #gnavi .slist a:hover { color:#f35a54; }

/*
ARCHIVE
***************************************************************************/
#archive_sec {
	position: relative;
	padding: 170px 0 230px;
}

#archive_sec .sec_cover {
	top: -120px;
	height: calc(100% + 120px);
	z-index: 1;
}

#archive_sec .eng_word {
	top: -360px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 42rem;
	z-index: 2;
}

#archive_sec .sec_inner {
	position: relative;
	width: 1160px;
	margin: 0 auto;
	z-index: 5;
}

#archive_sec .txt {
	margin-top: 50px;
	font-size: 1.2rem;
}

/*
OVERVIEW
***************************************************************************/
#overview_sec {
	position: relative;
	margin-bottom: 350px;
}

#overview_sec .img {
	float: left;
	width: 45%;
	height: 860px;
	transform: translateY(-120px);
}

#overview_sec .img_frame { background-image:url(../images/overview_img.jpg); }

#overview_sec .content {
	float: right;
	width: 55%;
	padding: 150px 0 0 6%;
}

/*
QUESTION
***************************************************************************/
#question_sec {
	position: relative;
}

#question_sec &gt; .eng_word {
	top: -140px;
	left: -50px;
	color: rgba(255,255,255,0.05);
	z-index: 0;
}

/* ▼INTRO▼ */
#question_sec .intro.base_box { z-index:2; }

#question_sec .intro .img {
	position: relative;
	float: right;
	width: 45%;
	height: 860px;
	z-index: 10;
}

#question_sec .intro .img_frame { background-image:url(../images/question_img.jpg); }

#question_sec .intro .content {
	float: left;
	width: 55%;
	padding-right: 6%;
}

/* ▼TROUBLE▼ */
#question_sec .trouble {
	position: relative;
	padding: 70px 0 150px;
}

#question_sec .trouble .sec_cover {
	top: -120px;
	height: calc(100% + 120px);
	z-index: 1;
}

#question_sec .trouble .sec_inner {
	position: relative;
	width: 1160px;
	margin: 0 auto;
	z-index: 2;
}

#question_sec .trouble .title {
	margin-bottom: 50px;
	text-align: center;
	font-size: 4rem;
}

#question_sec .trouble .title span {
	display: inline-block;
	padding: 0 10px;
	line-height: 60px;
	background: #f35a54;
}

#question_sec .trouble .list {
	display: flex;
	justify-content: space-between;
}

#question_sec .trouble .list dl {
	width: 360px;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
}

#question_sec .trouble .list dt {
	margin-bottom: 20px;
}

/* ▼MESSAGE▼ */
#question_sec .message {
	margin-bottom: -120px;
	padding: 250px 0 150px;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	background: #f35a54;
	transform: translateY(-120px);
}

#question_sec .message .title {
	margin-bottom: 25px;
	font-size: 8rem;
}

#question_sec .message .title span {
	display: block;
	font-size: 4rem;
}

/*
VOICE
***************************************************************************/
#voice_sec {
	position: relative;
	padding: 280px 0 120px;
}

#voice_sec .sec_cover {
	top: 300px;
	height: calc(100% - 300px);
	z-index: 0;
}

#voice_sec .eng_word {
	top: 150px;
	left: 120px;
	color: #585d6a;
	z-index: 1;
}

#voice_sec .sec_inner {
	position: relative;
	width: 1260px;
	margin: 0 auto;
	z-index: 5;
}

#voice_sec .sec_inner img { width:100%; }

#voice_sec .title_box {
	margin-top: 3px;
	padding-bottom: 20px;
	transform: translateX(-100px);
}

@media screen and (max-width: 1520px){

	#voice_sec .sec_inner { width:1160px; }
	#voice_sec .title_box { transform:translateX(0); }

}

/*
FEATURE
***************************************************************************/
#feature_sec {
	padding: 150px 0 160px;
}

#feature_sec .title_box {
	position: absolute;
	top: 0;
	left: 0;
	height: 100px;
}

#feature_sec .box {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
}

#feature_sec .box:nth-child(2n+1) {
	flex-direction: row-reverse;
}

#feature_sec .box:last-child { margin-bottom:0; }

#feature_sec .box .img {
	width: 45%;
	height: 720px;
}

#feature_sec .box:nth-child(1) .img_frame { background-image:url(../images/pc/feature_img01.jpg); }
#feature_sec .box:nth-child(2) .img_frame { background-image:url(../images/pc/feature_img02.jpg); }
#feature_sec .box:nth-child(3) .img_frame { background-image:url(../images/pc/feature_img03.jpg); }

#feature_sec .box .content {
	width: 55%;
}

#feature_sec .box:first-child .content { padding-top:40px; }
#feature_sec .box:nth-child(2n+1) .content { padding-right:100px; }
#feature_sec .box:nth-child(2n) .content { padding-left:100px; }

#feature_sec .box .word {
	margin-bottom: 15px;
	font-size: 11rem;
	font-weight: 700;
	color: #f35a54;
	line-height: 1;
	font-family: "Libre Baskerville", serif;
}

#feature_sec .box .title {
	margin-bottom: 25px;
	font-size: 3.2rem;
}

/*
ABOUT
***************************************************************************/
#about_sec {
	position: relative;
	padding: 290px 0 200px;
}

#about_sec .sec_cover {
	top: 0;
	height: calc(100% - 320px);
	background: #f35a54;
	z-index: 0;
}

#about_sec .eng_word {
	top: 150px;
	right: calc((100% - 1160px) / 4);
	text-align: right;
	color: rgba(255,255,255,0.1);
	z-index: 1;
}

#about_sec .sec_inner {
	position: relative;
	width: 1160px;
	margin: 0 auto;
	z-index: 5;
}

#about_sec .sec_title { margin-bottom:40px; }
#about_sec .eng_title { margin-bottom:5px; color:#fff; }
#about_sec .eng_title::before { background:#fff; }

#about_sec .img {
	width: 100%;
	height: 650px;
	margin-top: 70px;
}

#about_sec .img_frame { background-image:url(../images/pc/about_img.jpg); }

/*
PROFILE
***************************************************************************/
#profile_sec {
	padding-bottom: 110px;
}

#profile_sec .img {
	width: 100%;
	height: 780px;
	margin-bottom: 70px;
}

#profile_sec .img_frame { background-image:url(../images/pc/profile_img.jpg); }

#profile_sec .sec_inner {
	width: 1160px;
	margin: 0 auto;
}

#profile_sec .sec_title { margin-bottom:40px; }
#profile_sec .eng_title { margin-bottom:5px; }

#profile_sec dl {
	margin-bottom: 40px;
}

#profile_sec dl:last-child { margin-bottom:0; }

#profile_sec dt {
	margin-bottom: 15px;
	font-size: 3.2rem;
	font-weight: 600;
}

/*
OCCUPATION
***************************************************************************/
#occupation_sec {
	position: relative;
	padding: 270px 0 160px;
}

#occupation_sec .sec_cover {
	top: 0;
	height: 100%;
	z-index: 0;
}

#occupation_sec .eng_word {
	top: 120px;
	left: calc((100% - 1160px) / 4);
	color: rgba(255,255,255,0.05);
	z-index: 1;
}

#occupation_sec .sec_inner {
	position: relative;
	width: 1160px;
	margin: 0 auto;
	z-index: 5;
}

#occupation_sec .eng_title { margin-bottom:5px; }

/* ▼LIST▼ */
#occupation_sec .list {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}

#occupation_sec .list .box {
	width: 360px;
	text-align: center;
}

#occupation_sec .list .box .img {
	width: 100%;
	height: 430px;
	margin-bottom: 15px;
}

#occupation_sec .list .box:nth-child(1) .img_frame { background-image:url(../images/occupation_simg01.jpg); }
#occupation_sec .list .box:nth-child(2) .img_frame { background-image:url(../images/occupation_simg02.jpg); }
#occupation_sec .list .box:nth-child(3) .img_frame { background-image:url(../images/occupation_simg03.jpg); }

#occupation_sec .list .box .title {
	margin-bottom: 10px;
	font-size: 2.4rem;
}

/* ▼STAFF▼ */
#occupation_sec .staff {
	padding-top: 100px;
}

#occupation_sec .staff .box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

#occupation_sec .staff .box:nth-child(2n) {
	flex-direction: row-reverse;
}

#occupation_sec .staff .box:last-child { margin-bottom:0; }

#occupation_sec .staff .box .img {
	width: 560px;
	height: 420px;
}

#occupation_sec .staff .box:nth-child(1) .img_frame { background-image:url(../images/occupation_img01.jpg); }
#occupation_sec .staff .box:nth-child(2) .img_frame { background-image:url(../images/occupation_img02.jpg); }
#occupation_sec .staff .box:nth-child(3) .img_frame { background-image:url(../images/occupation_img03.jpg); }

#occupation_sec .staff .box .content {
	width: 550px;
}

#occupation_sec .staff .box .head {
	margin-bottom: 30px;
}

#occupation_sec .staff .box .part {
	margin-bottom: 5px;
	font-size: 1.4rem;
	font-weight: 500;
}

#occupation_sec .staff .box .title {
	margin-bottom: 15px;
	font-size: 3.2rem;
}

#occupation_sec .staff .box .title span {
	display: block;
	margin-top: 5px;
	font-size: 1.4rem;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
}

#occupation_sec .staff .box li {
	display: inline-block;
	margin-right: 10px;
	padding: 0 10px 2px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2d313b;
	line-height: 30px;
	background: #fff;
}

/*
FAQ
***************************************************************************/
#faq_sec {
	position: relative;
	padding: 400px 0 320px;
}

#faq_sec .sec_cover {
	top: 240px;
	width: calc(100% - ((100% - 1160px) / 2));
	height: calc(100% - 400px);
	background: #fff;
	z-index: 0;
}

#faq_sec .eng_word {
	top: 100px;
	left: 50%;
	color: #4a505f;
	z-index: 1;
}

#faq_sec .sec_inner {
	position: relative;
	width: 1160px;
	margin: 0 auto;
	z-index: 5;
}

#faq_sec .title_box {
	float: left;
	width: 400px;
}

#faq_sec .eng_title { margin-bottom:5px; }
#faq_sec .sec_title { color:#3d3d3d; }

#faq_sec .list {
	float: right;
	width: 760px;
	margin-top: 15px;
}

#faq_sec .cat_box {
	margin-bottom: 50px;
}

#faq_sec .cat_box:last-child { margin-bottom:0; }

#faq_sec .cat_title {
	margin-bottom: 35px;
	font-size: 3.2rem;
	font-weight: 700;
	color: #3d3d3d;
}

#faq_sec .box {
	padding: 35px 0;
	color: #3d3d3d;
	border-bottom: solid 1px rgba(61,61,61,0.2);
}

#faq_sec .box:first-child { border-top:solid 1px rgba(61,61,61,0.2); }

#faq_sec .box .title {
	position: relative;
	padding: 0 50px;
	font-size: 2rem;
	font-weight: 700;
	color: #f35a54;
	cursor: pointer;
}

#faq_sec .box .title::before {
	content: 'Q';
	position: absolute;
	top: -5px;
	left: 0;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
}

#faq_sec .box .inner {
	display: none;
	padding: 20px 50px 0;
}

/*
COMPANY
***************************************************************************/
#company_sec {
	position: relative;
	padding-bottom: 50px;
}

#company_sec .img {
	height: 880px;
	margin-bottom: 170px;
}

#company_sec .img_frame { background-image:url(../images/pc/company_img.jpg); }

#company_sec .eng_word {
	top: 600px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 42rem;
	z-index: 1;
}

#company_sec .sec_inner {
	width: 1160px;
	margin: 0 auto;
	padding-top: 100px;
}

#company_sec .title_box {
	float: left;
	width: 350px;
	margin-top: -5px;
}

#company_sec .eng_title { margin-bottom:5px; }

#company_sec .content {
	float: right;
	width: 810px;
}

#company_sec .content dl {
	display: flex;
	padding: 35px 0;
	border-top: solid 1px rgba(255,255,255,0.2);
}

#company_sec .content dt {
	width: 150px;
	font-weight: 600;
}

#company_sec .content dd {
	width: calc(100% - 150px);
}

#company_sec .content .map iframe {
	display: block;
	width: 100%;
	height: 330px;
	margin: 25px 0 15px;
	border: none;
	filter: grayscale(60%);
}

#company_sec .content .txt {
	text-align: right;
	font-size: 1.4rem;
}

/*
OFFICE IMG
***************************************************************************/
.office_img ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 160px;
}

.office_img li {
	width: 26%;
	height: 510px;
}

.office_img li:nth-child(2) {
	width: 35%;
	height: 840px;
	margin-top: 120px;
}

.office_img li:last-child { margin-top:570px; }

.office_img li:nth-child(1) .img_frame { background-image:url(../images/fimg01.jpg); }
.office_img li:nth-child(2) .img_frame { background-image:url(../images/fimg02.jpg); }
.office_img li:nth-child(3) .img_frame { background-image:url(../images/fimg03.jpg); }

/*
APPLY
***************************************************************************/
.apply_link {
	padding: 120px 0;
	text-align: center;
	font-size: 2rem;
	background: #f35a54;
}

.apply_link:hover { background:#ec3731; }

.apply_link .head {
	font-size: 4rem;
	font-weight: 600;
	color: #f35a54;
	line-height: 1.2;
}

.apply_link .head span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 4px 15px 8px;
	background: #fff;
}

.apply_link .title {
	margin-bottom: 15px;
	font-size: 8rem;
	font-weight: 700;
	line-height: 1.5;
}

.apply_link .title span {
	display: inline-block;
	position: relative;
	padding-right: 105px;
}

.apply_link .title span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 80px;
	height: 80px;
	background: #fff url(../images/arrow_white.png) center center / 60px no-repeat;
	border-radius: 50%;
	transform: translateY(-50%);
}

#fixed_close { display:none; }

/*
FOOTER
***************************************************************************/
.ptop {
	height: 80px;
	background: #4a505f;
}

.ptop .base_box { height:80px; }

.ptop a {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	text-align: right;
	font-size: 1.4rem;
	font-weight: 700;
	color: #f35a54;
	line-height: 40px;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	transform: translateY(-50%);
}

.ptop a span {
	display: inline-block;
	padding-right: 55px;
	background: url(../images/arrow_orange.png) right center / 40px no-repeat;
}

footer {
	padding: 95px 0 220px;
	background: #1d1e21;
}

#fnavi {
	float: right;
	width: 860px;
}

#fnavi .list {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: solid 1px rgba(255,255,255,0.1);
}

#fnavi .list li {
	float: left;
	width: 25%;
	margin-bottom: 15px;
	font-weight: 600;
}

#fnavi .slist {
	margin-bottom: 35px;
}

#fnavi .slist li {
	display: inline-block;
	margin-right: 50px;
	font-size: 1.4rem;
	font-weight: 500;
}

#fnavi .slist li:last-child { margin-right:0; }

#fnavi .list a:hover, #fnavi .slist a:hover { color:#f35a54; }

footer .info {
	float: left;
	width: 360px;
}

footer .logo {
	width: 180px;
	margin-bottom: 20px;
}

footer .logo img { width:100%; }

footer .txt {
	margin-bottom: 10px;
	font-weight: 600;
}

footer .copy small {
	font-size: 1rem;
}

#fixed_pcbtn {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	line-height: 98px;
	background: #f35a54;
	z-index: 100;
}

#fixed_pcbtn:hover { background:#ec3731; }

#fixed_pcbtn span {
	display: inline-block;
	padding-right: 45px;
	background: url(../images/arrow_white.png) right center / 30px no-repeat;
}

/*
OVERLAY WINDOW
***************************************************************************/
#overlay_window {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1d1e21;
	z-index: 10000;
	overflow: auto;
}

.overlay_outbox {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.overlay_frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.overlay_content {
	display: none;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 80px 0;
}

.overlay_content .scroll_box {
	max-height: calc(100vh - 160px);
}

.overlay_content .sec_inner {
	width: 860px;
	margin: 0 auto;
}

.modal_close {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 80px;
	height: 80px;
	background: url(../images/btn_close.png) center center / 80px no-repeat;
	z-index: 1001;
	cursor: pointer;
}

.modal_switch, .modal_switch span {
	cursor: pointer;
	transition: .5s;
}

/* ▼APPLY▼ */
#modal_apply {
	text-align: center;
}

#modal_apply .catch {
	margin-bottom: 30px;
	font-size: 2.4rem;
	line-height: 2;
}

#modal_apply .step {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

#modal_apply .step dl {
	width: 410px;
	padding: 25px 0 35px;
	color: #3d3d3d;
	line-height: 1.8;
	background: #fff;
	border-radius: 40px;
}

#modal_apply .step dt {
	font-size: 2.4rem;
	font-weight: 700;
	color: #f35a54;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
}

#modal_apply .jobs_select {
	margin-bottom: 40px;
}

#modal_apply .jobs_select .title {
	padding-bottom: 2px;
	font-size: 2rem;
	font-weight: 600;
	color: #3d3d3d;
	line-height: 78px;
	background: #fff;
	border-radius: 360px;
	cursor: pointer;
}

#modal_apply .jobs_select .title span {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}

#modal_apply .jobs_select .title span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 10px;
	margin-top: -5px;
	background: url(../images/arrow_select.png) center center / 16px no-repeat;
}

#modal_apply .jobs_select .title.opened span::after { transform:rotateX(-180deg); }

#modal_apply .jobs_select ul {
	display: none;
	padding: 30px 0;
	text-align: left;
	border-bottom: solid 1px rgba(255,255,255,0.2);
}

#modal_apply .jobs_select li {
	display: inline-block;
	margin-right: 15px;
	padding: 0 50px 2px;
	font-size: 1.6rem;
	font-weight: 600;
	color: #3d3d3d;
	line-height: 58px;
	background: #fff;
	border-radius: 360px;
	cursor: pointer;
}

#modal_apply .jobs_select li.active {
	color: #fff;
	background: #f35a54;
}

#modal_apply .jobs_btn li {
	display: none;
}

#modal_apply .jobs_btn li:first-child { display:block; }

/* ▼JOBPART▼ */
.modal_jobpart .title {
	margin-bottom: 30px;
	font-size: 3.2rem;
}

.modal_jobpart .txt {
	margin-bottom: 30px;
}

.modal_jobpart .list {
	padding-bottom: 30px;
}

.modal_jobpart .list li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
	font-weight: 700;
}

.modal_jobpart .list li::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 0;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
}

.modal_jobpart .stitle {
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: 600;
}

.modal_jobpart dl {
	margin-bottom: 30px;
}

.modal_jobpart dt {
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: 600;
}

.modal_jobpart .stxt {
	margin-top: 15px;
	font-size: 1.2rem;
}

.modal_jobpart .tbl th, .modal_jobpart .tbl td {
	padding: 30px;
	vertical-align: middle;
	border: solid 1px rgba(255,255,255,0.2);
}

.modal_jobpart .tbl th {
	width: 30%;
	font-weight: 600;
	background: #2d313b;
}

.modal_jobpart .tbl td {
	width: 70%;
}

/*
SCROLL
***************************************************************************/
.scroll_box { overflow-y:auto; }

.scroll_box::-webkit-scrollbar {
	width: 5px;
}

.scroll_box::-webkit-scrollbar-track {
	background: #fff;
}

.scroll_box::-webkit-scrollbar-thumb {
	background: #c4c4c2;
}

.gecko .scroll_box {
	scrollbar-width: 5px;
	scrollbar-color: #c4c4c2 #fff;
}

/*
PARTS
***************************************************************************/
/* ▼CONTENTS EFFECT▼ */
.move_parts {
	opacity: 0;
	transition: all 0.5s;
}

.move_parts.btm_top {
	transform: translateY(100px);
}

.move_parts.top_btm {
	transform: translateY(-100px);
}

.move_parts.left_right {
	transform: translateX(-100px);
}

.move_parts.right_left {
	transform: translateX(100px);
}

.move_parts.expand {
	opacity: 1;
	transform: scale(0.001);
}

.move_parts.expand.rev {
	opacity: 0;
	transform: scale(1.5);
}

.move_parts.on {
	opacity: 1!important;
	transform: scale(1)!important;
}

.delay_fade {
	opacity: 0;
	transition: all 0.5s;
}

.delay_fade.active {
	opacity: 1.0;
}

/* ▼BUTTON▼ */
.sec_btn {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	line-height: 78px;
	background: #f35a54;
	border-radius: 360px;
}

.sec_btn:hover { background:#ec3731; }

.sec_btn span {
	display: inline-block;
	padding-right: 45px;
	background: url(../images/arrow_white.png) right center / 30px no-repeat;
}

/* ▼COVER▼ */
.sec_cover {
	position: absolute;
	width: calc(100% - ((100% - 1160px) / 4));
	background: #4a505f;
}

.sec_cover.left {
	left: 0;
	border-radius: 0 80px 80px 0;
}

.sec_cover.center {
	left: 50%;
	border-radius: 80px;
	transform: translateX(-50%);
}

.sec_cover.right {
	right: 0;
	border-radius: 80px 0 0 80px;
}

/* ▼CATCH, TITLE, TEXT▼ */
.eng_word {
	position: absolute;
	font-size: 24rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	font-family: "Libre Baskerville", serif;
	letter-spacing: -0.1rem;
	white-space: nowrap;
}

.eng_title {
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
	font-weight: 700;
	color: #f35a54;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
}

.eng_title::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #f35a54;
	border-radius: 50%;
}

.sec_title {
	margin-bottom: 50px;
	font-size: 4rem;
}

/* ▼ICON▼ */
.disp_switch .icon {
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

.disp_switch .icon:before, .disp_switch .icon:after {
	content: '';
	position: absolute;
	background: #f35a54;
}

.disp_switch .icon:before {
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	margin-left: -2px;
}

.disp_switch .icon:after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	margin-top: -2px;
}

.disp_switch.opened .icon:before { display:none; }

/* ▼NOTICE LIST▼ */
.note_list &gt; li {
	position: relative;
	padding-left: 1.2em;
	font-size: 1.2rem;
}

.note_list &gt; li:before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.note_list.center &gt; li {
	padding-left: 0;
	text-align: center;
}

.note_list.center &gt; li span {
	position: relative;
	padding-left: 1.2em;
}

.note_list.center &gt; li:before { display:none; }

.note_list.center &gt; li span:before {
	content: '※';
	position: absolute;
	top: -3px;
	left: 0;
}

/* ▼LIST▼ */
.li_pc_mb5 &gt; li { margin-bottom:5px; }
.li_pc_mb10 &gt; li { margin-bottom:10px; }
.li_pc_mb15 &gt; li { margin-bottom:15px; }
.li_pc_mb20 &gt; li { margin-bottom:20px; }
.li_pc_mb25 &gt; li { margin-bottom:25px; }
.li_pc_mb30 &gt; li { margin-bottom:30px; }

.list01 &gt; li:last-child,
.list02 &gt; li:last-child,
.list03 &gt; li:last-child,
.list04 &gt; li:last-child {
	margin-bottom: 0;
}

.list01 &gt; li {
	position: relative;
	padding-left: 1.2em;
}

.list01 &gt; li:before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.list02 &gt; li {
	position: relative;
	padding-left: 25px;
}

.list02 &gt; li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1px;
	margin-top: -0.5px;
	background: #797979;
}

.list03 &gt; li {
	position: relative;
	padding-left: 20px;
}

.list03.number_plus &gt; li { padding-left:2.2em; }
.list03.kana &gt; li { padding-left:30px; }

.list03 &gt; li:before {
	position: absolute;
	top: 0;
	left: 0;
}

.list03 &gt; li:nth-child(1):before { content:'a.'; }
.list03 &gt; li:nth-child(2):before { content:'b.'; }
.list03 &gt; li:nth-child(3):before { content:'c.'; }
.list03 &gt; li:nth-child(4):before { content:'d.'; }
.list03 &gt; li:nth-child(5):before { content:'e.'; }
.list03 &gt; li:nth-child(6):before { content:'f.'; }
.list03 &gt; li:nth-child(7):before { content:'g.'; }
.list03 &gt; li:nth-child(8):before { content:'h.'; }
.list03 &gt; li:nth-child(9):before { content:'i.'; }
.list03 &gt; li:nth-child(10):before { content:'j.'; }

.list03.number &gt; li:nth-child(1):before { content:'1.'; }
.list03.number &gt; li:nth-child(2):before { content:'2.'; }
.list03.number &gt; li:nth-child(3):before { content:'3.'; }
.list03.number &gt; li:nth-child(4):before { content:'4.'; }
.list03.number &gt; li:nth-child(5):before { content:'5.'; }
.list03.number &gt; li:nth-child(6):before { content:'6.'; }
.list03.number &gt; li:nth-child(7):before { content:'7.'; }
.list03.number &gt; li:nth-child(8):before { content:'8.'; }
.list03.number &gt; li:nth-child(9):before { content:'9.'; }
.list03.number &gt; li:nth-child(10):before { content:'10.'; }

.list03.number_plus &gt; li:nth-child(1):before { content:'（1）'; }
.list03.number_plus &gt; li:nth-child(2):before { content:'（2）'; }
.list03.number_plus &gt; li:nth-child(3):before { content:'（3）'; }
.list03.number_plus &gt; li:nth-child(4):before { content:'（4）'; }
.list03.number_plus &gt; li:nth-child(5):before { content:'（5）'; }
.list03.number_plus &gt; li:nth-child(6):before { content:'（6）'; }
.list03.number_plus &gt; li:nth-child(7):before { content:'（7）'; }
.list03.number_plus &gt; li:nth-child(8):before { content:'（8）'; }
.list03.number_plus &gt; li:nth-child(9):before { content:'（9）'; }
.list03.number_plus &gt; li:nth-child(10):before { content:'（10）'; }

.list03.kana &gt; li:nth-child(1):before { content:'ア）'; }
.list03.kana &gt; li:nth-child(2):before { content:'イ）'; }
.list03.kana &gt; li:nth-child(3):before { content:'ウ）'; }
.list03.kana &gt; li:nth-child(4):before { content:'エ）'; }
.list03.kana &gt; li:nth-child(5):before { content:'オ）'; }
.list03.kana &gt; li:nth-child(6):before { content:'カ）'; }
.list03.kana &gt; li:nth-child(7):before { content:'キ）'; }
.list03.kana &gt; li:nth-child(8):before { content:'ク）'; }
.list03.kana &gt; li:nth-child(9):before { content:'ケ）'; }
.list03.kana &gt; li:nth-child(10):before { content:'コ）'; }

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.iblock { display:inline-block!important; }

.posit_r { position:relative!important; }
.posit_a { position:absolute!important; }
.posit_f { position:fixed!important; }

.align_c { text-align:center!important; }
.align_r { text-align:right!important; }
.align_l { text-align:left!important; }

.disp_l { float:left!important; }
.disp_r { float:right!important; }

.va_top { vertical-align:top!important; }
.va_mid { vertical-align:middle!important; }
.va_btm { vertical-align:bottom!important; }

/* ▼width▼ */
.pc_w4per { width:4%; }
.pc_w5per { width:5%; }
.pc_w8per { width:8%; }
.pc_w10per { width:10%; }
.pc_w15per { width:15%; }
.pc_w20per { width:20%; }
.pc_w22per { width:22%; }
.pc_w25per { width:25%; }
.pc_w30per { width:30%; }
.pc_w35per { width:35%; }
.pc_w50per { width:50%; }
.pc_w55per { width:55%; }
.pc_w56per { width:56%; }
.pc_w60per { width:60%; }
.pc_w70per { width:70%; }
.pc_w75per { width:75%; }
.pc_w80per { width:80%; }
.pc_w100per { width:100%!important; }

.pc_w90 { width:90px!important; }
.pc_w160 { width:160px!important; }
.pc_w250 { width:250px!important; }
.pc_w400 { width:400px!important; }
.pc_w500 { width:500px!important; }
.pc_w510 { width:510px!important; }
.pc_w580 { width:580px!important; }

.pc_h210 { height:210px!important; }

.zoom05 { zoom:0.5; }

/* ▼area▼ */
.pc_mb140 { margin-bottom:140px!important; }
.pc_mb120 { margin-bottom:120px!important; }
.pc_mb100 { margin-bottom:100px!important; }
.pc_mb95 { margin-bottom:95px!important; }
.pc_mb90 { margin-bottom:90px!important; }
.pc_mb85 { margin-bottom:85px!important; }
.pc_mb80 { margin-bottom:80px!important; }
.pc_mb75 { margin-bottom:75px!important; }
.pc_mb70 { margin-bottom:70px!important; }
.pc_mb65 { margin-bottom:65px!important; }
.pc_mb60 { margin-bottom:60px!important; }
.pc_mb55 { margin-bottom:55px!important; }
.pc_mb50 { margin-bottom:50px!important; }
.pc_mb45 { margin-bottom:45px!important; }
.pc_mb40 { margin-bottom:40px!important; }
.pc_mb35 { margin-bottom:35px!important; }
.pc_mb30 { margin-bottom:30px!important; }
.pc_mb25 { margin-bottom:25px!important; }
.pc_mb20 { margin-bottom:20px!important; }
.pc_mb15 { margin-bottom:15px!important; }
.pc_mb12 { margin-bottom:12px!important; }
.pc_mb10 { margin-bottom:10px!important; }
.pc_mb8 { margin-bottom:8px!important; }
.pc_mb5 { margin-bottom:5px!important; }
.pc_mb0 { margin-bottom:0!important; }

.pc_mlr115 { margin-left:115px!important; margin-right:115px!important; }
.pc_mlr100 { margin-left:100px!important; margin-right:100px!important; }
.pc_mlr80 { margin-left:80px!important; margin-right:80px!important; }
.pc_mlr75 { margin-left:75px!important; margin-right:75px!important; }
.pc_mlr70 { margin-left:70px!important; margin-right:70px!important; }
.pc_mlr60 { margin-left:60px!important; margin-right:60px!important; }
.pc_mlr55 { margin-left:55px!important; margin-right:55px!important; }
.pc_mlr50 { margin-left:50px!important; margin-right:50px!important; }
.pc_mlr45 { margin-left:40px!important; margin-right:45px!important; }
.pc_mlr40 { margin-left:40px!important; margin-right:40px!important; }
.pc_mlr35 { margin-left:35px!important; margin-right:35px!important; }
.pc_mlr30 { margin-left:30px!important; margin-right:30px!important; }
.pc_mlr25 { margin-left:25px!important; margin-right:25px!important; }
.pc_mlr20 { margin-left:20px!important; margin-right:20px!important; }
.pc_mlr15 { margin-left:15px!important; margin-right:15px!important; }
.pc_mlr10 { margin-left:10px!important; margin-right:10px!important; }
.pc_mlr5 { margin-left:5px!important; margin-right:5px!important; }
.pc_mlr-1 { margin-left:-1px!important; margin-right:-1px!important; }
.pc_mlr-5 { margin-left:-5px!important; margin-right:-5px!important; }
.pc_mlr-10 { margin-left:-10px!important; margin-right:-10px!important; }
.pc_mlr-20 { margin-left:-20px!important; margin-right:-20px!important; }
.pc_mlr-40 { margin-left:-40px!important; margin-right:-40px!important; }
.pc_mlr-50 { margin-left:-50px!important; margin-right:-50px!important; }
.pc_mlr-60 { margin-left:-60px!important; margin-right:-60px!important; }
.pc_mlr-90 { margin-left:-90px!important; margin-right:-90px!important; }
.pc_mlr_auto { margin-left:auto!important; margin-right:auto!important; }

.pc_mr50 { margin-right:50px!important; }
.pc_mr40 { margin-right:40px!important; }
.pc_mr30 { margin-right:30px!important; }
.pc_mr25 { margin-right:25px!important; }
.pc_mr20 { margin-right:20px!important; }
.pc_mr15 { margin-right:15px!important; }
.pc_mr10 { margin-right:10px!important; }
.pc_mr5 { margin-right:5px!important; }
.pc_mr0 { margin-right:0px!important; }
.pc_mr-5 { margin-right:-5px!important; }

.pc_ml80 { margin-left:80px!important; }
.pc_ml50 { margin-left:50px!important; }
.pc_ml40 { margin-left:40px!important; }
.pc_ml30 { margin-left:30px!important; }
.pc_ml20 { margin-left:20px!important; }
.pc_ml15 { margin-left:15px!important; }
.pc_ml10 { margin-left:10px!important; }
.pc_ml0 { margin-left:0px!important; }
.pc_ml-5 { margin-left:-5px!important; }
.pc_ml-10 { margin-left:-10px!important; }
.pc_ml-15 { margin-left:-15px!important; }
.pc_ml-20 { margin-left:-20px!important; }

.pc_mt90 { margin-top:90px!important; }
.pc_mt80 { margin-top:80px!important; }
.pc_mt70 { margin-top:70px!important; }
.pc_mt60 { margin-top:60px!important; }
.pc_mt55 { margin-top:55px!important; }
.pc_mt50 { margin-top:50px!important; }
.pc_mt45 { margin-top:45px!important; }
.pc_mt40 { margin-top:40px!important; }
.pc_mt30 { margin-top:30px!important; }
.pc_mt20 { margin-top:20px!important; }
.pc_mt15 { margin-top:15px!important; }
.pc_mt10 { margin-top:10px!important; }
.pc_mt5 { margin-top:5px!important; }
.pc_mt3 { margin-top:3px!important; }
.pc_mt0 { margin-top:0!important; }
.pc_mt-5 { margin-top:-5px!important; }
.pc_mt-10 { margin-top:-10px!important; }
.pc_mt-20 { margin-top:-20px!important; }
.pc_mt-40 { margin-top:-40px!important; }
.pc_mt-50 { margin-top:-50px!important; }
.pc_mt-80 { margin-top:-80px!important; }

.pc_pb100 { padding-bottom:100px!important; }
.pc_pb80 { padding-bottom:80px!important; }
.pc_pb30 { padding-bottom:30px!important; }
.pc_pb8 { padding-bottom:8px!important; }
.pc_pb0 { padding-bottom:0!important; }

.pc_p20 { padding:20px!important; }
.pc_p15 { padding:15px!important; }
.pc_p10 { padding:10px!important; }

.pc_pt60 { padding-top:60px!important; }
.pc_pt50 { padding-top:50px!important; }

.pc_ptb20 { padding-top:20px!important; padding-bottom:20px!important; }
.pc_ptb15 { padding-top:15px!important; padding-bottom:15px!important; }
.pc_ptb5 { padding-top:5px!important; padding-bottom:5px!important; }
.pc_ptb0 { padding-top:0!important; padding-bottom:0!important; }

.pc_plr25 { padding-left:25px!important; padding-right:25px!important; }

/* ▼font▼ */
.bold { font-weight:bold!important; }
.normal { font-weight:normal!important; }

.pc_size10 { font-size:1rem!important; }
.pc_size11 { font-size:1.1rem!important; }
.pc_size12 { font-size:1.2rem!important; }
.pc_size13 { font-size:1.3rem!important; }
.pc_size14 { font-size:1.4rem!important; }
.pc_size16 { font-size:1.6rem!important; }
.pc_size17 { font-size:1.7rem!important; }
.pc_size18 { font-size:1.8rem!important; }
.pc_size19 { font-size:1.9rem!important; }
.pc_size20 { font-size:2.0rem!important; }
.pc_size22 { font-size:2.2rem!important; }
.pc_size24 { font-size:2.4rem!important; }
.pc_size30 { font-size:3.0rem!important; }

.lh2 { line-height:2!important; }
.lh18 { line-height:1.8!important; }
.lh16 { line-height:1.6!important; }
.lh15 { line-height:1.5!important; }
</pre></body></html>