@charset "utf-8";
/*
Theme Name: sankakuya_skelton
Theme URL: https://sankakux4.org
Description: original theme
Author:yuya matsuo
Version: 1.0.0
*/

/* reset */

html{
	scroll-behavior:smooth;
}
body{
	margin:0;
	width:100%;
	overflow-x:hidden;
	overflow-y: scroll;
        scrollbar-width: none;
        text-rendering:optimizeSpeed;
        -webkit-text-size-adjust: 100%;
        overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start:0;
	margin-block-end:0;
	margin-inline-start:0;
	margin-inline-end:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*::before,
*::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
	font-size:1rem;
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.8;
}

p{
	margin:0;
	padding:0;
}

ul,
ol{
	list-style:none;
	padding:0;
	margin:0;
}

li{
	list-style-position: inside;
}

figure,
blockquote,
dl,
dt,
dd{
	margin:0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

a:not([class]){
	text-decoration-skip-ink:auto;
}

::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
}

input,
button,
select,
textarea {
	background: transparent;
	border: none;
	border-radius: 0;
	font-family: inherit;
	outline: none;
	margin:0;
}

select,
select option{
	color:#000 !important;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"] {
	-moz-appearance: textfield;
}

input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
	-webkit-appearance: none;
}

@media(prefers-reduced-motion:reduce){
	*{
		animation-duration:.01ms !important;
		animation-iteration-count:1 !important;
		transition-duration:.01ms !important;
		scroll-behavior:auto !important;
	}
}

img{
	display:block;
	vertical-align:bottom;
	max-width:100%;
}

.wpcf7-spinner{
	display:none !important;
}

/* common */

html{
	font-size:15px;
}

body{
	background:#f5f5f5;
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	color:#000;
	font-weight:400;
	line-height:1.8;
	margin:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

a{
	display:block;
	color:#000;
	transition: .5s;
	text-decoration:none;
	-webkit-tap-highlight-color: transparent;
}

a:hover{
	color:#000;
	text-decoration:none;
	opacity:0.8;
}

/* layout */

main{
	display:block;
	margin:92px auto 0;
}

.container{
	max-width:calc(100vw - 100px);
	width:1200px;
	margin:0 auto;
}

.container-min{
	max-width:calc(100vw - 100px);
	width:900px;
	margin:0 auto;
}

.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}

/* parts */

.serif{
	font-family: 'Noto Serif JP', serif;
	font-optical-sizing: auto;
}

.dela{
	font-family: "Dela Gothic One", sans-serif;
}

.text-center{
	text-align:center;
}

.text-right{
	text-align:right;
}

.img-fluid{
	width:100%;
	height:auto;
}

.img-trim{
	position: relative;
	overflow: hidden;
	aspect-ratio:1 / 1;
}

.img-trim img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-trim.img-trim16x9{
	aspect-ratio:16 / 9;
}

.img-trim.img-trim5x3{
	aspect-ratio:5 / 3;
}

.img-trim.img-trim3x2{
	aspect-ratio:3 / 2;
}

.img-trim.img-trim4x3{
	aspect-ratio:4 / 3;
}

.img-trim.img-trim4x5{
	aspect-ratio:4 / 5;
}

.shadow{
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}

.heading01{
	color:#1A2B48;
	font-weight:900;
	font-size:2rem;
	letter-spacing:0.05em;
	margin-bottom:1.5em;
}

.heading01.text-center{
	text-indent:0.05em;
}

.btn{
	background:#F39800;
	color:#fff;
	padding:1em;
	border-radius:100vmax;
	transition: 0.5s;
}

.btn:hover{
	color:#fff;
}

.btn_gray{
	background:#aaa;
}

/* form */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea{
	padding:1em;
	width:100%;
	background:#fff;
	font-size:1rem;
	transition:.5s;
	border-radius:4px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus{
	outline:none;
	outline-offset:0;
}

input[type="submit"]{
	background:#F39800;
	color:#fff;
	padding:1em;
	font-size:1rem;
	border-radius:100vmax;
	transition: 0.5s;
}

input[type="submit"].btn_gray{
	background:#aaa;
}

input[type="submit"]:focus{
	outline:none;
	outline-offset:0;
}

input[type="submit"]:hover{
	opacity:0.8;
}

.checkbox-list{
	gap:10px 1%;
}

 .checkbox-list .chip-checkbox{
	width:calc((100% - 5%) / 6);
}

.step-item-area  .checkbox-list .chip-checkbox{
	width:calc((100% - 7%) / 8);
}

.checkbox-list .chip-checkbox .chip-label{
	display:block;
	text-align:center;
	background:#fff;
	border-radius:4px;
	font-size:0.9rem;
	padding:0.5em 0;
}

.checkbox-list .chip-checkbox input:checked + .chip-label{
	background:#1A2B48;
	color:#fff;
}

/* header */

.header{
	position:fixed;
	top:0;
	left:0;
	z-index:1000;
	width:100%;
	background:#1A2B48;
	color:#fff;
	padding:12px 0;
}

.header a{
	color:#fff;
}

.header .inner{
	justify-content: space-between;
	align-items: center;
}

.header .inner .logo .txt{
	font-size:1.5rem;
	font-weight:900;
	line-height:1;
	letter-spacing:0.15em;
}

.header .inner .logo .txt span{
	font-size:0.8em;
}

.header .inner .logo .txt .label{
	display:block;
	padding:0.1em 0.1em 0.2em;
	background:#fff;
	color:#1A2B48;
	font-size:1.5rem;
	margin-top:0.4em;
	border-radius:2px;
}

.header .inner .navi_wrap{
	justify-content: flex-end;
	align-items: center;
}

.header .inner .navi_wrap .g_navi_wrap .g_navi ul{
	justify-content: flex-end;
	font-weight:500;
}

.header .inner .navi_wrap .g_navi_wrap .g_navi ul li{
	margin-left:1.5rem;
}

.header .inner .navi_wrap .g_navi_wrap .g_navi ul li a:hover{
	opacity:1;
	color:#F39800;
}

.header .inner .navi_wrap .tel_cta{
	margin-left:40px;
	border:1px solid #fff;
	border-radius:4px;
	padding:8px 12px;
}

.header .inner .navi_wrap .tel_cta p{
	font-size:0.78rem;
	line-height:1;
	font-weight:700;
}

.header .inner .navi_wrap .tel_cta p:last-child{
	font-size:0.6rem;
	color:#f5f5f5;
	font-weight:400;
}

.header .inner .navi_wrap .tel_cta h6{
	font-weight:900;
	font-size:1.25rem;
	line-height:1.6;
}

/* footer */

.footer .f_cta{
	background:#fff;
	padding-top:80px;
}

.footer .f_cta .img > div{
	width:calc(100% / 3);
}

.footer .f_cta .txt{
	width:600px;
	margin:0 auto 60px;
}

.footer .f_cta .txt h4{
	font-weight:700;
	font-size:1.75rem;
	color:#1A2B48;
	margin-bottom:1rem;
}

.footer .f_cta .txt h4 span{
	color:#06C755;
}

.footer .f_cta .txt p{
	margin-bottom:2rem;
}

.footer .f_cta .txt .qr{
	border:4px solid #1A2B48;
	border-radius:12px;
	padding:1rem;
	width:200px;
	margin:0 auto;
}

.footer .copyright{
	background:#1A2B48;
	color:#fff;
	font-size:0.9rem;
	padding:20px 0;
}

.footer .copyright a{
	color:#f5f5f5;
}

.footer .copyright .inner{
	justify-content: space-between;
	align-items: center;
}

.footer .copyright .inner ul li{
	margin-right:1.5em;
}

.footer .copyright .inner h6{
	font-size:0.9rem;
}

/* home */

.hero{
	width:100%;
	background:#fff;
	
}

.hero .content_wrap{
	justify-content: space-between;
	align-items: flex-end;
}

.hero .content_wrap .img{
	width:46%;
	padding:60px 0 0;
}

.hero .content_wrap .txt{
	width:46%;
	padding:60px 0;
}

.hero .content_wrap .txt .catch{
	font-weight:700;
	margin-bottom:28px;
}

.hero .content_wrap .txt .catch h2{
	font-weight:900;
	font-size:2.3rem;
	color:#1A2B48;
	letter-spacing:0.05em;
	line-height:1.4;
	margin-bottom:0.2em;
}

.hero .content_wrap .txt .catch p{
	font-size:1.35rem;
	color:#1A2B48;
}

.hero .content_wrap .txt .hero_search{
	padding:40px 48px;
	background:#f6f6f6;
	border:4px solid #1A2B48;
	border-radius: 12px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.hero .content_wrap .txt .hero_search p{
	font-weight:700;
	font-size:1.25rem;
	color:#1A2B48;
	margin-bottom:1.5rem;
}

.hero .content_wrap .txt .hero_search .form_parts_wrap{
	justify-content: space-between;
	align-items: center;
	margin-bottom:1.5rem;
}

.hero .content_wrap .txt .hero_search .form_parts_wrap .form_parts{
	width:45%;
}

.hero .content_wrap .txt .hero_search .form_parts_wrap > span{
	position:relative;
	width:1rem;
	height:1rem;
}

.hero .content_wrap .txt .hero_search .form_parts_wrap > span::before,
.hero .content_wrap .txt .hero_search .form_parts_wrap > span::after{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(45deg);
	content:"";
	width:100%;
	height:2px;
	background:#1A2B48;
}

.hero .content_wrap .txt .hero_search .form_parts_wrap > span::after{
	transform:translate(-50%,-50%) rotate(-45deg);
}

.hero .content_wrap .txt .hero_search .btn_wrap input[type="submit"]{
	width:100%;
	margin-bottom:1rem;
}

.hero .content_wrap .txt .hero_search .btn_wrap a{
	text-decoration:underline;
}

.front_content{
	padding:80px 0;
}

#example .page_content .content_wrap{
	justify-content: space-between;
}

#example .page_content .content_wrap .box{
	width:31%;
	border-radius:12px;
	background:#fff;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	padding:40px 32px 32px;
}

#example .page_content .content_wrap .box .img{
	width:50%;
	margin:0 auto 1rem;
}

#example .page_content .content_wrap .box .img img{
	border-radius:50%;
	background:#f5f5f5;
}

#example .page_content .content_wrap .box h4{
	font-weight:700;
	font-size:1.25rem;
	line-height:1.6;
	color:#1A2B48;
	margin-bottom:1rem;
}

#example .page_content .content_wrap .box h5{
	color:#F39800;
	font-weight:700;
	margin-bottom:1rem;
	text-indent:1em;
}

#example .page_content .content_wrap .box p:not(.text-right){
	text-indent:1em;
}

#example .page_content .content_wrap .box p:last-child{
	margin-top:1rem;
	color:#aaa;
}

#advisor .page_content .content_wrap{
	align-items: center;
	margin-bottom:60px;
}

#advisor .page_content .content_wrap:last-child{
	flex-direction: row-reverse;
	margin-bottom:0;
}

#advisor .page_content .content_wrap .txt{
	width:50%;
}

#advisor .page_content .content_wrap .txt h4{
	font-size:1.25rem;
	font-weight:700;
	color:#1A2B48;
	margin-bottom:1rem;
}

#advisor .page_content .content_wrap .txt p{
	text-indent:1em;
}

#advisor .page_content .content_wrap .img{
	width:50%;
}

/* search */

.search_form{
	background:#f5f5f5;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	border-radius:12px;
	padding:40px 48px;
}

.search_form h4{
	font-weight:700;
	font-size:1.25rem;
	color:#1A2B48;
	margin-bottom:0.5em;
}

.search_form .industry_box{
	margin-bottom:40px;
}

.search_form .industry-group{
	margin-bottom:1.25rem;
}

.search_form .industry-group:last-child{
	margin-bottom:0;
}

.search_form .industry-group p{
	font-weight:700;
	margin-bottom:0.5rem;
}

.search_form .area_box{
	margin-bottom:40px;
}

.search_form .j_type_box{
	margin-bottom:40px;
}

.search_form .keyword_box{
	margin-bottom:40px;
}

.search_form .btn_wrap input[type="submit"]{
	width:100%;
}

.search-results .page_header p{
	color:#F39800;
	font-weight:700;
	font-size:2rem;
	margin-bottom:1rem;
}

.search-results .page_header p span{
	font-size:1rem;
	color:#000;
}

.search-results .page_header ul{
	justify-content: center;
	gap:2rem;
}

.search-results .page_header ul li .label{
	font-weight:700;
}

/* page */

.page_header{
	padding:80px 0;
	background:#fff;
}

.page_header .heading01{
	margin-bottom:0;
}

.page_content{
	padding:80px 0;
}

/* archive */

.pagination .page-numbers{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:8px;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span{
	text-align:center;
	width:3rem;
	height:3rem;
	border-radius:50%;
	font-size:0.9rem;
	background:#fff;
	padding-top:0.75em;
}

.pagination .page-numbers li .current,
.pagination .page-numbers li a:hover{
	opacity:1;
	background:#1A2B48;
	color:#fff;
}

/* job */

.page_search_form_wrap{
	background:#fff;
}

.job_archive{
	gap:2%;
	margin-bottom:36px;
}

.job_archive .job_article{
	width:32%;
	margin-bottom:24px;
}

.job_article{
	border-radius:12px;
	background:#fff;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	padding:40px 32px 32px;
}

.job_article:hover{
	opacity:1;
	box-shadow:none;
}

.job_article .number{
	color:#aaa;
}

.job_article h4{
	font-weight:700;
	display:-webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	margin-bottom:1rem;
}

.job_article ul{
	margin-bottom:0.25rem;
}

.job_article ul li{
	margin-right:0.5rem;
	background:#F39800;
	color:#fff;
	font-size:0.9rem;
	padding:0 1em;
	border-radius:100vmax;
}

.job_article ul li:last-child{
	margin-right:0;
}

.job_article .salary{
	display:-webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	min-height:7.2rem;

}

.job_article ol{
	margin-top:1rem;
	padding-top:1rem;
	border-top:1px dashed #ccc;
}

.job_article ol li{
	font-size:0.9rem;
	color:#1A2B48;
	margin-right:0.5em;
}

.job_article ol li:last-child{
	margin-right:0;
}

.single-job .page_header p{
	color:#aaa;
	font-weight:700;
}

.single-job .page_header ul{
	margin-top:0.5rem;
}

.single-job .page_header ul li{
	margin-right:0.5rem;
	background:#F39800;
	color:#fff;
	font-size:0.9rem;
	padding:0 1em;
	border-radius:100vmax;
}

.single-job .page_content .job_point{
	border-radius:12px;
	background:#fff;
	padding:40px 60px;
	margin-bottom:60px;
}

.single-job .page_content .job_point h2{
	font-weight:700;
	font-size:1.5rem;
	margin-bottom:0.75em;
}

.single-job .page_content .job_point h2 i{
	font-size:2rem;
	color:#F39800;
	margin-right:0.25em;
}

.single-job .page_content .job_point ol{
	margin-bottom:1rem;
}

.single-job .page_content .job_point ol li{
	margin-right:1em;
	color:#F39800;
	font-weight:700;
}

table.detail{
	width:100%;
	border-radius:12px;
	background:#fff;
	margin-bottom:60px;
}

table.detail th,
table.detail td{
	vertical-align:top;
	padding:1.5rem 2rem;
	border:2px solid #f6f6f6;
}

table.detail th{
	width:22%;
}

table.detail td{
	width:78%;
}

table.detail td h3{
	font-weight:600;
}

 .job_form{
 	margin-bottom:80px;
 }

 .job_form h3{
	background:#1A2B48;
	color:#fff;
	font-weight:700;
	font-size:1.25rem;
	border-radius:4px;
	padding:0.5em 0;
	margin-bottom:1rem;
}

 .job_form table{
	width:100%;
	margin-bottom:1rem;
}

 .job_form table th{
	padding:1rem;
	width:20%;
	font-weight:700;
	line-height:1.6;
}

 .job_form table th span{
	display:block;
	font-size:0.9rem;
	font-weight:400;
}

 .job_form table th span.requied{
	color:#ff0000;
}

 .job_form table td{
	padding:1rem;
	width:80%;
}

 .job_form table td input[type="number"]{
	width:5rem;
	margin-right:1rem;
}

 .job_form table td input[type="radio"]{
	display:inline-block;
	-moz-appearance:auto;
	-webkit-appearance:auto;
	appearance:auto;
}

 .job_form table td .wpcf7-list-item{
	margin:0 1rem 0 0;
}

 .job_form .btn_wrap input[type="submit"]{
	width:8rem;
}

.related_slick .slick-track {
	display: flex;
}

.related_slick .slick-slide{
	height: auto !important;
	padding:0 0.75vw;
}

.related_slick .slick-slide .job_article{
	height:100%;
}

.related_slick .slick-arrow{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	background:#1A2B48;
	width:3rem;
	height:3rem;
	border-radius:50%;
	justify-content: center;
	align-items: center;
	line-height:1;
	color:#fff;
	z-index:2;
}

.related_slick .slick-arrow.prev-arrow{
	left:2.5vw;
	transform:translateY(-50%) rotate(180deg);
}

.related_slick .slick-arrow.next-arrow{
	right:2.5vw;
}

/* company */

.company_block{
	margin-bottom:60px;
}

.company_block:last-child{
	margin-bottom:0;
}

.company_block h2{
	color: #1A2B48;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}

.cb01 p{
	margin-bottom:1rem;
}

.cb01 p:last-child{
	margin-bottom:0;
}

.cb03 dl{
	margin-bottom:1rem;
}

.cb03 dl:last-child{
	margin-bottom:0;
}

.cb03 dl dt{
	width:18%;
	font-weight:700;
	color:#1A2B48;
	position:relative;
	padding-left:52px;
}

.cb03 dl dt::before{
	position:absolute;
	top:0.85rem;
	left:0;
	content:"";
	width:40px;
	height:3px;
	background:#1A2B48;
}

.cb03 dl dd{
	width:82%;
}

.cb04 .content_wrap{
	margin-bottom:40px;
}

.cb04 .content_wrap:last-child{
	margin-bottom:0;
}

.cb04 .content_wrap .txt{
	width:50%;
	border-radius:12px 0 0 12px;
	background:#fff;
	padding:2rem 2rem 0;
	font-size:0.9rem;
}

.cb04 .content_wrap .txt h3{
	font-weight:700;
	color:#1A2B48;
	font-size:1.25rem;
	margin-bottom:0.5rem;
}

.cb04 .content_wrap .map{
	width:50%;
	border-radius:0 12px 12px 0;
}

.cb04 .content_wrap .map .map_wrap{
	aspect-ratio:16 / 9;
}

.cb04 .content_wrap .map .map_wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius:0 12px 12px 0;
}

/* employer */

.employer_sv{
	background:#1A2B48;
	color:#fff;
	padding:80px 0;
}

.employer_sv .content_wrap{
	justify-content: space-between;
	align-items: center;
}

.employer_sv .content_wrap .txt{
	width:62%;
}

.employer_sv .content_wrap .txt h5{
	font-weight:700;
	font-size:1.4rem;
	margin-bottom:0.2em;
}

.employer_sv .content_wrap .txt h2{
	font-weight:900;
	font-size:2.5rem;
	letter-spacing:0.05em;
	margin-bottom:0.25em;
}

.employer_sv .content_wrap .img{
	width:30%;
}

.employer_block{
	margin-bottom:80px;
}

.employer_block:last-child{
	margin-bottom:0;
}

.eb01 .content_wrap{
	justify-content: space-between;
}

.eb01 .content_wrap .box{
	width:30%;
	border-radius:12px;
	background:#fff;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	padding:32px 48px 40px;
}

.eb01 .content_wrap .box h4{
	font-weight:700;
	font-size:1.25rem;
	line-height:1.6;
	color:#1A2B48;
	margin-bottom:1rem;
}

.eb02 .content_wrap{
	justify-content: space-between;
}

.eb02 .content_wrap .box{
	width:23%;
	border:4px solid #1A2B48;
	border-radius:12px;
	padding:16px 24px;
}

.eb02 .content_wrap .box h5{
	color:#F39800;
	font-weight:700;
	font-size:1.25rem;
}

.eb02 .content_wrap .box h4{
	color:#1A2B48;
	font-weight:700;
	margin-bottom:0.75rem;
}

/* privacy */

.privacy_block{
	margin-bottom:40px;
}

.privacy_block:last-child{
	margin-bottom:0;
}

.privacy_block h2{
	font-weight:700;
	color:#1A2B48;
	font-size:1.25rem
}

.privacy_block h3{
	font-weight:700;
	margin-top:1em;
}

/* lp */

.lp_hero{
	background:#fff;
}

.lp_hero .content_wrap{
	justify-content: space-between;
	align-items: center;
	padding-top:80px;
}

.lp_hero .content_wrap .img{
	width:58%;
}

.lp_hero .content_wrap .txt{
	width:38%;
}

.lp_hero .content_wrap .txt h1{
	color:#1A2B48;
	font-weight:900;
	font-size:2.5rem;
	letter-spacing:0.05em;
	line-height:1.4;
	margin-bottom:0.5em;
}

.lp_hero .content_wrap .txt ul{
	gap:1rem;
}

.lp_hero .content_wrap .txt ul li{
	background:#F39800;
	color:#fff;
	font-weight:700;
	padding:0.25em 1.5em;
	border-radius:100vmax;
	letter-spacing:0.05em;
}

.lp_survey{
	padding:80px 0;
}

.lp_survey h2{
	color:#1A2B48;
	font-size:1.5rem;
	font-weight:700;
	margin-bottom:1em;
}

.lp_survey .live-count-banner p{
	font-weight:700;
	font-size:1.25rem;
	margin-bottom:2em;
}

.lp_survey .live-count-banner p span{
	font-size:2.5rem;
	color:#F39800;
}

.lp_survey .step-item{
	display: none;
	margin-bottom:2rem;
}

.lp_survey .step-item.active{
	display: block;
	animation: fadeIn 0.4s ease-in-out;
}

.lp_survey .step-item h3{
	margin-bottom:1em;
	font-weight:700;
}

.lp_survey .step-item h3 span{
	color:#ff0000;
}

.lp_survey .step-item .form-group{
	margin-bottom:10px;
}

.lp_survey .step-item .flex-selects{
	align-items: center;
	gap:0.5rem;
}

.lp_survey .step-item .flex-selects select{
	width:6rem;
}

.lp_survey .step-item .flex-selects span{
	width:1rem;
}

.lp_survey .step-item.step-item-contact .form-group{
	margin-bottom:1rem;
}

.lp_survey .step-item.step-item-contact .form-group label{
	display:block;
	font-weight:700;
	margin-bottom:0.5em;
}

.lp_survey .step-item .step-sub-text{
	font-size:0.8rem;
	margin-bottom:1em;
}

.lp_survey .step-item .experience-input-list .experience-row{
	align-items: center;
	margin-bottom:1em;
}

.lp_survey .step-item .experience-input-list .experience-row:last-child{
	margin-bottom:0;
}

.lp_survey .step-item .experience-input-list .experience-row .experience-title{
	width:10rem;
}

.lp_survey .step-item .experience-input-list .experience-row .experience-inputs{
	width:calc(100% - 10rem);
	align-items: center;
	gap:0.5rem;
}

.lp_survey .step-item .experience-input-list .experience-row .experience-inputs input{
	width:4rem;
}

.lp_survey .step-item .experience-input-list .experience-row .experience-inputs span{
	font-size:0.8rem;
}

.lp_survey .step-navigation-buttons{
	justify-content: center;
	gap:2%;
}

.lp_survey .step-navigation-buttons .btn{
	min-width:16%;
}

.lp_survey .step-form-completion-message h4{
	font-size:2rem;
	font-weight:700;
	color:#F39800;
}

.lp_survey .step-form-completion-message .search-result-link-wrap{
	margin-top:1rem;
}

.lp_survey .step-form-completion-message .search-result-link-wrap .btn{
	display:inline-block;
	width:30%;
}

/* display */

.pc-none{
	display:none;
}

@media (max-width: 1366px) {

	/* common */
	
	html{
		font-size:calc(100vw / 1366 * 15);
	}
	
	/* layout */
	
	main{
		margin:calc(100vw / 1366 * 92) auto 0;
	}
	
	.container{
		max-width:calc(100vw - (100vw / 1366 * 100));
		width:calc(100vw / 1366 * 1200);
	}
	
	.container-min{
		max-width:calc(100vw - (100vw / 1366 * 100));
		width:calc(100vw / 1366 * 900);
	}
	
	/* form */
	
	.checkbox-list{
		gap:calc(100vw / 1366 * 10) 1%;
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 1366 * 12) 0;
	}
	
	.header .inner .navi_wrap .tel_cta{
		margin-left:calc(100vw / 1366 * 40);
		padding:calc(100vw / 1366 * 8) calc(100vw / 1366 * 12);
	}
	
	/* footer */
	
	.footer .f_cta{
		padding-top:calc(100vw / 1366 * 80);
	}
	
	.footer .f_cta .txt{
		width:calc(100vw / 1366 * 600);
		margin:0 auto calc(100vw / 1366 * 60);
	}
	
	.footer .f_cta .txt .qr{
		width:calc(100vw / 1366 * 200);
	}
	
	.footer .copyright{
		padding:calc(100vw / 1366 * 20) 0;
	}
	
	/* home */
	
	.hero .content_wrap .img{
		padding:calc(100vw / 1366 * 60) 0 0;
	}
	
	.hero .content_wrap .txt{
		padding:calc(100vw / 1366 * 60) 0;
	}
	
	.hero .content_wrap .txt .catch{
		margin-bottom:calc(100vw / 1366 * 28);
	}
	
	.hero .content_wrap .txt .hero_search{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 48);
	}
	
	.front_content{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	#example .page_content .content_wrap .box{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 32) calc(100vw / 1366 * 32);
	}
	
	#advisor .page_content .content_wrap{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	/* search */
	
	.search_form{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 48);
	}
	
	.search_form .industry_box{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	.search_form .area_box{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	.search_form .j_type_box{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	.search_form .keyword_box{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	/* page */
	
	.page_header{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.page_content{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	/* archive */
	
	.pagination .page-numbers{
		gap:calc(100vw / 1366 * 8);
	}
	
	/* job */
	
	.job_archive{
		margin-bottom:calc(100vw / 1366 * 36);
	}
	
	.job_archive .job_article{
		margin-bottom:calc(100vw / 1366 * 24);
	}
	
	.job_article{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 32) calc(100vw / 1366 * 32);
	}
	
	.single-job .page_content .job_point{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 60);
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	table.detail{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	 .job_form{
	 	margin-bottom:calc(100vw / 1366 * 80);
	 }
	
	/* company */
	
	.company_block{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	.cb03 dl dt{
		padding-left:calc(100vw / 1366 * 52);
	}
	
	.cb03 dl dt::before{
		width:calc(100vw / 1366 * 40);
	}
	
	.cb04 .content_wrap{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	/* employer */
	
	.employer_sv{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.employer_block{
		margin-bottom:calc(100vw / 1366 * 80);
	}
	
	.eb01 .content_wrap .box{
		padding:calc(100vw / 1366 * 32) calc(100vw / 1366 * 48) calc(100vw / 1366 * 40);
	}
	
	.eb02 .content_wrap .box{
		padding:calc(100vw / 1366 * 16) calc(100vw / 1366 * 24);
	}
	
	/* privacy */
	
	.privacy_block{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	/* lp */
	
	.lp_hero .content_wrap{
		padding-top:calc(100vw / 1366 * 80);
	}
	
	.lp_survey{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.lp_survey .step-item .form-group{
		margin-bottom:calc(100vw / 1366 * 10);
	}

}

@media (max-width: 768px){

	/* common */

	html{
		font-size:calc(100vw / 750 * 30);
	}
	
	.sp-none{
		display:none;
	}
	
	.pc-none{
		display:block;
	}
	
	/* layout */

	main{
		margin:calc(100vw / 750 * 134.42) auto 0;
	}
	
	.container,
	.container-min{
		width:90vw;
	}
	
	/* parts */
	
	.heading01{
		font-size:1.5rem;
	}
	
	/* form */
	
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	select,
	textarea{
		border-radius:calc(100vw / 750 * 8);
	}
	
	.checkbox-list{
		gap:calc(100vw / 750 * 12) 2%;
	}
	
	 .checkbox-list .chip-checkbox{
		width:calc((100% - 2%) / 2);
	}
	
	.step-item-area  .checkbox-list .chip-checkbox{
		width:calc((100% - 6%) / 4);
	}
	
	.checkbox-list .chip-checkbox .chip-label{
		border-radius:calc(100vw / 750 * 8);
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 750 * 28) 0;
	}
	
	.header .inner .logo .txt{
		font-size:1rem;
	}
	
	.header .inner .logo .txt .label{
		padding:0.1em 0.2em 0.2em;
		font-size:0.95rem;
		margin-top:0.4em;
		border-radius:calc(100vw / 750 * 4);
	}
	
	.header .inner .navi_wrap{
		flex-direction: row-reverse;
	}
	
	.header .inner .g_navi_wrap{
		margin-left:5vw;
	}
	
	.header .inner .g_navi_wrap .g_navi_btn{
		width:calc(100vw / 750 * 80);
		height:calc(100vw / 750 * 48);
		position: relative;
		transition: .5s;
		cursor: pointer;
		z-index:1001;
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line{
		background:#fff;
		display: block;
		height:calc(100vw / 750 * 4);
		position:absolute;
		transition:.5s;
		width:100%;
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line--center{
		top:calc(100vw / 750 * 22);
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line--bottom{
		bottom:0;
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line--top.active{
		top:calc(100vw / 750 * 22);
		transform: rotate(45deg);
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line--center.active{
		transform:scaleX(0);
	}
	
	.header .inner .g_navi_wrap .g_navi_btn .menu__line--bottom.active{
		bottom:calc(100vw / 750 * 22);
		transform: rotate(135deg);
	}

	.header .inner .navi_wrap .g_navi_wrap .g_navi{
		transform:translateZ(0) translateX(100%);
		transition:.5s ease-in-out;
		position:fixed;
		top:calc(100vw / 750 * 134.42);
		right:0;
		width:50%;
		height:calc(100dvh - (100vw / 750 * 134.42));
		background:#1A2B48;
		padding:calc(100vw / 750 * 40) 5vw;
	}
	
	.header .inner .navi_wrap .g_navi_wrap .g_navi.active{
		transform:translateZ(0) translateX(0);
	}
	
	.header .inner .navi_wrap .g_navi_wrap .g_navi ul li{
		width:100%;
		margin-left:0;
		line-height:2.2;
	}
	
	.header .inner .navi_wrap .g_navi_wrap .g_navi ul li a:hover{
		opacity:1;
		color:#F39800;
	}
	
	.header .inner .navi_wrap .tel_cta{
		margin-left:0;
		border:0;
		padding:0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap:calc(100vw / 750 * 10);
	}
	
	.header .inner .navi_wrap .tel_cta i{
		font-size:2rem;
	}
	
	.header .inner .navi_wrap .tel_cta p:last-child{
		font-size:0.7rem;
		line-height:1.2;
		text-align:left;
	}

	/* footer */
	
	.footer .f_cta{
		padding-top:calc(100vw / 750 * 80);
	}
	
	.footer .f_cta .img > div{
		width:100%;
	}
	
	.footer .f_cta .txt{
		width:90vw;
		margin:0 auto calc(100vw / 750 * 60);
	}
	
	.footer .f_cta .txt h4{
		font-size:1.25rem;
	}
	
	.footer .f_cta .txt p{
		margin-bottom:1.5rem;
	}
	
	.footer .f_cta .txt .btn{
		width:60%;
		margin:0 auto;
		background:#06C755;
	}
	
	#employer .footer .f_cta .txt .btn{
		background:#F39800;
	}
	
	.footer .copyright{
		padding:calc(100vw / 750 * 28) 0;
	}
	
	.footer .copyright .inner ul{
		width:100%;
		justify-content: center;
		gap:1rem;
		margin-bottom:0.5rem;
	}
	
	.footer .copyright .inner ul li{
		margin-right:0;
	}
	
	.footer .copyright .inner h6{
		width:100%;
		text-align:center;
	}
	
	/* home */
	
	.hero .content_wrap{
		justify-content: flex-end;
	}
	
	.hero .content_wrap .img{
		width:50%;
		padding:0;
		margin-top:calc(100vw / 750 * -320);
		margin-right:-5vw;
	}
	
	.hero .content_wrap .txt{
		width:100%;
		padding:calc(100vw / 750 * 60) 0 0;
	}
	
	.hero .content_wrap .txt .catch{
		margin-bottom:0;
	}
	
	.hero .content_wrap .txt .catch h2{
		font-size:2rem;
		line-height:1.4;
		margin-bottom:0.2em;
	}
	
	.hero .content_wrap .txt .catch p{
		width:60%;
		font-size:1rem;
	}
	
	.front_content{
		padding:calc(100vw / 750 * 120) 0;
	}
	
	.fc01 .heading01{
		margin-bottom:0;
	}
	
	#example .page_content .content_wrap{
		gap:calc(100vw / 750 * 60);
	}
	
	#example .page_content .content_wrap .box{
		width:100%;
		border-radius:calc(100vw / 750 * 12);
		box-shadow: 0 calc(100vw / 750 * 4) calc(100vw / 750 * 16) 0 rgba(0, 0, 0, 0.1);
		padding:calc(100vw / 750 * 80) calc(100vw / 750 * 64) calc(100vw / 750 * 64);
	}
	
	#advisor .page_content .content_wrap{
		flex-direction: column-reverse;
		margin-bottom:calc(100vw / 750 * 20);
	}
	
	#advisor .page_content .content_wrap:last-child{
		flex-direction: column-reverse;
	}
	
	#advisor .page_content .content_wrap .img{
		width:100%;
	}
	
	#advisor .page_content .content_wrap .txt{
		width:100%;
		margin-top:-1rem;
	}
	
	#advisor .page_content .content_wrap .txt h4{
		margin-bottom:0.5rem;
	}
	
	/* search */
	
	.search_form{
		box-shadow: 0 calc(100vw / 750 * 2) calc(100vw / 750 * 8) 0 rgba(0, 0, 0, 0.1);
		border-radius:calc(100vw / 750 * 12);
		padding:calc(100vw / 750 * 40) 5vw;
	}
	
	.search_form .industry_box{
		margin-bottom:calc(100vw / 750 * 40);
	}
	
	.search_form .area_box{
		margin-bottom:calc(100vw / 750 * 40);
	}
	
	.search_form .area_box .checkbox-list{
		gap: calc(100vw / 750 * 10) 2%;
	}
	
	.search_form .area_box .checkbox-list .chip-checkbox{
		width: calc((100% - 6%) / 4);
	}
	
	.search_form .j_type_box{
		margin-bottom:calc(100vw / 750 * 40);
	}
	
	.search_form .keyword_box{
		margin-bottom:calc(100vw / 750 * 40);
	}
	
	.search-results .page_header ul{
		justify-content: center;
		gap:0.5rem 1.5rem;
	}
	
	/* page */
	
	.page_header{
		padding:calc(100vw / 750 * 80) 0;
	}
	
	.page_content{
		padding:calc(100vw / 750 * 80) 0;
	}
	
	/* archive */
	
	.pagination .page-numbers{
		gap:calc(100vw / 750 * 12);
	}
	
	/* job */
	
	.job_archive{
		gap:0;
		margin-bottom:calc(100vw / 750 * 20);
	}
	
	.job_archive .job_article{
		width:100%;
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.job_article{
		border-radius:calc(100vw / 750 * 12);
		box-shadow: 0 calc(100vw / 750 * 4) calc(100vw / 750 * 16) 0 rgba(0, 0, 0, 0.1);
		padding:calc(100vw / 750 * 80) calc(100vw / 750 * 64) calc(100vw / 750 * 64);
	}
	
	.job_article .salary{
		min-height:auto;
	}
	
	.single-job .page_content .job_point{
		border-radius:calc(100vw / 750 * 12);
		padding:calc(100vw / 750 * 60) 5vw;
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.single-job .page_content .job_point h2{
		font-size:1.25rem;
	}
	
	.single-job .page_content .job_point h2 i{
		font-size:1.75rem;
	}
	
	table.detail{
		margin-bottom:calc(100vw / 750 * 80);
	}
	
	table.detail th,
	table.detail td{
		padding:1rem;
		border:0;
	}
	
	table.detail th{
		display:block;
		width:100%;
		padding:1rem 1rem 0;
		font-weight:700;
	}
	
	table.detail td{
		display:block;
		width:100%;
		padding:0 1rem 1rem;
		border-bottom:2px solid #f6f6f6;
	}
	
	 .job_form{
	 	margin-bottom:calc(100vw / 750 * 120);
	 }
	
	 .job_form h3{
		border-radius:calc(100vw / 750 * 8);
	}
	
	 .job_form table{
		width:100%;
		margin-bottom:1rem;
	}
	
	 .job_form table th{
	 	display:block;
	 	width:100%;
		padding:0 0 0.5rem;
	}
	
	 .job_form table th span{
		display:inline-block;
	}
	
	 .job_form table td{
	 	display:block;
		width:100%;
		padding:0 0 1rem;
		
	}
	
	 .job_form table td input[type="number"]{
		width:20%;
		margin-right:1rem;
	}
	
	.related_slick .slick-arrow{
		width:2rem;
		height:2rem;
	}
	
	.related_slick .slick-arrow.prev-arrow{
		left:1vw;
	}
	
	.related_slick .slick-arrow.next-arrow{
		right:1vw;
	}
	
	/* company */
	
	.company_block{
		margin-bottom:calc(100vw / 750 * 80);
	}
	
	.company_block h2{
		font-size: 1.25rem;
	}
	
	.cb03 dl dt{
		width:100%;
		padding-left:calc(100vw / 750 * 52);
	}
	
	.cb03 dl dt::before{
		width:calc(100vw / 750 * 40);
		height:calc(100vw / 750 * 4);
	}
	
	.cb03 dl dd{
		width:100%;
	}
	
	.cb04 .content_wrap{
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.cb04 .content_wrap .txt{
		width:100%;
		border-radius:calc(100vw / 750 * 12) calc(100vw / 750 * 12) 0 0;
		background:#fff;
		padding:1rem 1.5rem 1.5rem;
		font-size:0.9rem;
	}
	
	.cb04 .content_wrap .txt h3{
		font-size:1rem;
	}
	
	.cb04 .content_wrap .map{
		width:100%;
		border-radius:0 0 calc(100vw / 750 * 12) calc(100vw / 750 * 12);
	}
	
	.cb04 .content_wrap .map .map_wrap iframe {
		border-radius:0 0 calc(100vw / 750 * 12) calc(100vw / 750 * 12);
	}
	
	/* employer */
	
	.employer_sv{
		padding:calc(100vw / 750 * 80) 0 0;
	}
	
	.employer_sv .content_wrap{
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	
	.employer_sv .content_wrap .img{
		width:38%;
		margin-top:calc(100vw / 750 * -280);
		margin-left:-5vw;
	}
	
	.employer_sv .content_wrap .txt{
		width:100%;
	}
	
	.employer_sv .content_wrap .txt h5{
		font-size:1rem;
	}
	
	.employer_sv .content_wrap .txt h2{
		font-size:1.75rem;
		margin-bottom:1em;
	}
	
	.employer_sv .content_wrap .txt p{
		font-size:0.8rem;
		width:58%;
		margin:0 0 0 auto;
	}
	
	.employer_block{
		margin-bottom:calc(100vw / 750 * 120);
	}
	
	.eb01 .content_wrap .box{
		width:100%;
		box-shadow: 0 calc(100vw / 750 * 4) calc(100vw / 750 * 16) 0 rgba(0, 0, 0, 0.1);
		padding:calc(100vw / 750 * 48) calc(100vw / 750 * 64);
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.eb01 .content_wrap .box:last-child{
		margin-bottom:0;
	}
	
	.eb02 .content_wrap .box{
		width:100%;
		border:calc(100vw / 750 * 6) solid #1A2B48;
		border-radius:calc(100vw / 750 * 12);
		padding:calc(100vw / 750 * 48) calc(100vw / 750 * 64);
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.eb02 .content_wrap .box:last-child{
		margin-bottom:0;
	}
	
	/* privacy */
	
	.privacy_block{
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.privacy_block h2{
		font-size:1.25rem
	}
	
	/* lp */
	
	.lp_hero .content_wrap{
		flex-direction: column-reverse;
		padding-top:calc(100vw / 750 * 60);
	}
	
	.lp_hero .content_wrap .img{
		width:100%;
	}
	
	.lp_hero .content_wrap .txt{
		width:100%;
	}
	
	.lp_hero .content_wrap .txt h1{
		font-size:2.25rem;
		text-align:center;
	}
	
	.lp_hero .content_wrap .txt ul{
		justify-content: center;
		gap:0.5rem;
		margin-bottom:1rem;
	}
	
	.lp_hero .content_wrap .txt ul li{
		width:calc((100% - 1rem) / 3);
		font-size:0.9rem;
		padding:0.25em 0;
		text-align:center;
	}
	
	.lp_survey{
		padding:calc(100vw / 750 * 80) 0;
	}
	
	.lp_survey h2{
		font-size:1.25rem;
	}
	
	.lp_survey .live-count-banner p{
		font-size:1rem;
		margin-bottom:1em;
	}
	
	.lp_survey .live-count-banner p span{
		font-size:2rem;
	}
	
	.lp_survey .step-item{
		margin-bottom:2rem;
	}
	
	.lp_survey .step-item .form-group{
		margin-bottom:calc(100vw / 750 * 40);
	}
	
	.lp_survey .step-item .flex-selects select{
		width:5rem;
	}
	
	.lp_survey .step-item .flex-selects span{
		width:1rem;
	}
	
	.lp_survey .step-item.step-item-contact .form-group{
		margin-bottom:1rem;
	}
	
	.lp_survey .step-navigation-buttons{
		justify-content: center;
		gap:2%;
	}
	
	.lp_survey .step-navigation-buttons .btn{
		min-width:32%;
		padding:0.5rem 1rem;
	}
	
	.lp_survey .step-form-completion-message h4{
		font-size:1.5rem;
	}
	
	.lp_survey .step-form-completion-message .search-result-link-wrap{
		margin-top:1rem;
	}
	
	.lp_survey .step-form-completion-message .search-result-link-wrap .btn{
		width:80%;
	}

}

