@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/*--------------------
 リセットCSS
--------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	line-height: 1.5;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after{
  content: ""; 
  display: block; 
  clear: both; 
}
a {
	text-decoration: none;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
a,
a:link,
a:hover,
a:active,
a:visited {
	color: #000;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a:hover {
	opacity: 0.7;
	transition: .3s ease;
}
button {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}
/*--------------------
 common
--------------------*/
html {font-size: 62.5%;}
body {
	width:100%;
	background: #fff;
	color: #333;
	font-size: 1.5rem;
    overflow-x: hidden;
}
@media (max-width:1039px) and (min-width:768px) {
	html {font-size: calc(100vw * 0.009615384);}
}
@media (max-width: 430px) {
	html {font-size: 2.3255813vw;}
	body {font-size: 3.488372vw;}
}

section {
	padding: 2rem 0;
}
section p {
    line-height: 1.75;
}
section p.sentence {
    margin: 1.5em 0;
}
.f-bold {font-weight: bold;}
.f-din {
    font-family: din-2014, sans-serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}
.contents_wrap {
	width: 100%;
    max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}
.sec_ttl {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1em;
	padding: 0 2rem;
	border-left: solid .8rem #FFDA00;
}
@media (min-width:768px) {
    .sp_only {display: none;}
    .pc_flex {
        display: flex;
        flex-wrap: wrap;
    }
}
@media (max-width:767px) {
	.sp_no {display: none;}
	.contents_wrap {padding: 0 15px;}
}
/* 画像ぼやけ対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}
_::-webkit-full-page-media, _:future, :root img {
  image-rendering: auto;
}

/* ------------------------------- ヘッダー*/
header {
	padding: 20px 0 30px 0;
	background: #FFDA00;
	text-align: center;
}
header .logo img {
	width: 100px;
	margin-bottom: 10px;
}
header .title_txt {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0.25em;
}
header .sub_txt {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	header .logo img {
	    width: 75px;
	}
	header .title_txt {
		font-size: 30px;
	}
	header .sub_txt {
		font-size: 14px;
	}
}

/* ------------------------------- フッター*/
footer {
	padding: 20px 0;
	background-color: #333;
	color: #fff;
	text-align: center;
}
footer .footer_box img {
	width: 200px;
	height: auto;
	margin-bottom: 5px;
}
footer .footer_box p {
	font-size: 14px;
	margin-bottom: 15px;
}
footer .footer_box p a {
	display: inline-block;
	color: #fff;
	text-decoration: underline;
}
footer .address small {
	font-size: 14px;
}

#top_scroll {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 100;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}
#top_scroll a {
    display: block;
    height: 60px;
    width: 60px;
    text-decoration: none;
    background: #FFDA00;
    position: relative;
}
#top_scroll a:before {
	content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg);
    position: absolute;
    left: 50%;
    top: 50%;
}
#top_scroll a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	footer .footer_box img {
        width: 150px;
	}
	#top_scroll a {
		height: 50px;
		width: 50px;
	}
	#top_scroll a:before {
		top: calc(50% + 5px);
	}
}

/* ------------------------------- よくある課題*/
.problem {
	background: #F4FBFF;
	padding: 4rem 0 0 0;
	margin-bottom: 6rem;
	position: relative;
}
.problem::after {
	content: "";
	display: block;
	width: 55.4rem;
	height: 5.7rem;
	background: #F4FBFF;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.problem_list {
	padding-bottom: 16.5rem;
	position: relative;
}
.problem_list li {
	margin-top: 3rem;
	padding: 6rem 3.4rem;
	background: #FFF;
	border-radius: 13.9rem;
}
.problem_list::after {
	content: "";
	display: block;
	width: 54.5rem;
	height: 24.1rem;
	background: url(../pict/problem_figure_pc.png) center center no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width:768px) {
	.problem_list {gap: 0 2.3rem;}
	.problem_list li {
		flex: 1;
		display: flex;
		/* align-items: center; */
		justify-content: center;
	}
}
@media screen and (max-width: 767px) {
	.problem {
		padding: 3rem 0 0 0;
		margin-bottom: 5rem;
	}
	.problem::after {
		width: 39.7rem;
		height: 4.6rem;
	}
	.problem_list {padding-bottom: 19rem;}
	.problem_list li {
		margin-top: 1.5rem;
		padding: 2.4rem 3.8rem;
	}
	.problem_list::after {
		width: 39.4rem;
		height: 21.3rem;
		background-image: url(../pict/problem_figure_sp.png);
	}	
}

/* ------------------------------- jobMAKERの強み*/
.strength h2 {
	font-size: 3.9rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1em;
}
.strength_wrap {
	padding: 6.5rem 0;
	position: relative;
	z-index: 0;
}
.strength_wrap::before {
	content: "";
	display: block;
	width: calc(100% + 22rem);
	height: calc(100% - 2rem);
	background: #FFFCE6;
	border: solid 1rem #FFDA00;
	border-radius: 5.7rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.strength_list {counter-reset: number 0; }
.strength_list li {
	background: #FFF;
	border-radius: 1.9rem;
	margin-top: 3rem;
	padding: 5.5rem 3rem 3rem 3rem;
	position: relative;
}
.strength_list li::before {
	counter-increment: number 1;
	content: counter(number) " ";
	font-family: din-2014, sans-serif;
	font-size: 6.1rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-40%);
}
.strength_list li .imgBox img {
	display: block;
	width: 11.4rem;
	margin: 0 auto;
}
.strength_list li h3 {
	margin: 1.5rem 0;
	text-align: center;
	font-size: 2.1rem;
	font-weight: bold;
}
@media (min-width:768px) { 
	.strength_list {
		gap: 2rem;
		justify-content: center;
	}
	.strength_list li {width: calc((100% - 4rem) / 3);}
	.strength_list li h3 {
		min-height: 3em;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
@media (max-width:1239px) {
	.strength_wrap {
	    padding-left: 3.5rem;
	    padding-right: 3.5rem;
	}
	.strength_wrap::before {width: calc(100% - 2rem);}
}
@media (max-width:767px) {
	.strength h2 {font-size: 2.8rem;}
	.strength_wrap {padding: 5rem 3.5rem;}
	.strength_wrap::before {border-radius: 2.7rem;}
	.strength_list {padding-top: .5rem;}
}

/* ------------------------------- 紹介の流れ・紹介インセンティブ・必要書類*/
.bg_grey {
	background: #F7F7F7;
	margin: 2rem 0;
	padding: 3rem 0;
}
.flow .pictureBox img {border-radius: 2.9rem;}
.incentive_list {
	background: #FFFCE6;
	border-radius: 1.7rem;
	padding: 2.5rem 6rem;
}
.incentive_list table th,
.incentive_list table td {
	font-size: 1.8rem;
	font-weight: bold;
	padding: .2rem 0;
	text-align: left;
}
.incentive_list table td::before {
	content: "：";
}
.documents_list li {
	padding-left: 1em;
	position: relative;
}
.documents_list li + li {margin-top: .5rem;}
.documents_list li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
@media (max-width:767px) {
	.incentive_list {padding: 2.5rem 3.5rem;}	
}

/* ------------------------------- FAQ*/
.faq_list li {
	background: #FFF;
	border-radius: 1.3rem;
	padding: 2rem 2.5rem;
}
.faq_list li + li {margin-top: 1.5rem;}
.faq_list li .toggle_btn {
	padding: 0 3.8rem;
	font-size: 1.7rem;
	font-weight: bold;
	cursor: pointer;
	position: relative;
}
.faq_list li .toggle_btn::before,
.faq_list li .toggle_btn::after {
	content: "";
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	background-color: #A8A8A8;
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 28 28"><path d="M14,0C6.27,0,0,6.27,0,14s6.27,14,14,14,14-6.27,14-14S21.73,0,14,0ZM20.18,15.25h-4.86v4.86h-2.63v-4.86h-4.86v-2.63h4.86v-4.86h2.63v4.86h4.86v2.63Z" /></svg>');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	position:absolute;
	right: 0;
	top: 0;
}
.faq_list li .toggle_btn.open::after {
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 28 28"><path d="M14,0C6.27,0,0,6.27,0,14s6.27,14,14,14,14-6.27,14-14S21.73,0,14,0ZM20.52,15.1c-.38-.02-1.2-.08-1.87-.08h-8.59c-.91,0-1.98.03-2.58.08v-2.51c.58.05,1.74.1,2.58.1h8.59c.74,0,1.46-.07,1.87-.1v2.51Z" /></svg>');
}
.faq_list li .toggle_box p {
	margin: 2.5rem 0 0 3.8rem;
	padding: 0 3.8rem 0.5rem 3.8rem;
	position: relative;
}
.faq_list li .toggle_btn span,
.faq_list li .toggle_box span {
	font-size: 1.6rem;
	font-weight: bold;
	border-radius: 50%;
	width: 2.8rem;
	height: 2.8rem;
	display: inline-block;
	text-align: center;
	line-height: 2.8rem;
	margin-right: 1rem;
	position: absolute;
	left: 0;
	top: 0;
}
.faq_list li .toggle_btn span {background: #FFDA00;}
.faq_list li .toggle_box span {
	color: #FFF;
	background: #333;
}
@media (max-width:767px) {
	.faq_list li {padding: 2rem;}
	.faq_list li .toggle_box p {margin: 2rem 0 0 0;}	
}