@charset "utf-8";
/* CSS Document */
@import url("style.css");
ul.img {
	display: flex;
	justify-content: center;
}
ul.img li {
	margin: 5px;
}
ul.img li img {
	height: 250px;
}
#whats {
	background: #f8f8f8;
}
#whats hr {
	margin: 3rem 0;
	border: solid #ccc;
	border-width: 0 0 1px;
}
#whats p {}
#whats p b {
	color: #333;
	font-weight: bold;
}
#whats .job_category {
	counter-reset: number 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px 0 0;
	color: #09f;
	font-weight: 600;
}
#whats .job_category li {
	width: calc(100%/6);
	position: relative;
	text-align: center;
	padding: 30px 0 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#whats .job_category li:before {
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	border: solid 3px;
	border-radius: 50%;
	color: #09f;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	box-sizing: border-box;
}
#whats .job_category li img {
	width: 50px;
	margin: 0 0 10px;
}
#whats table {
	border: solid #09f;
	border-width: 1px 0 0 1px;
	width: 800px;
	margin: auto;
	background: #fff;
}
#whats table tr {}
#whats table th {
	background: #eaf6fd;
	border: solid #09f;
	border-width: 0 1px 1px 0;
	padding: 10px;
	text-align: center;
	font-weight: 600;
	vertical-align: middle;
}
#whats table td {
	border: solid #09f;
	border-width: 0 1px 1px 0;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}
#whats .support {
	counter-reset: number 0;
	background: #fff;
	border: dotted 1px #999;
	padding: 20px 30px;
}
#whats .support li {
	position: relative;
	padding: 0 0 0 1.2rem;
	margin: 10px 0 0;
}
#whats .support li:before {
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	top: 3px;
	left: 0;
	border: solid 1px;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	font-size: 10px;
	line-height: 15px;
	color: #09f;
}
#whats dl {}
#whats dl dt {
	color: #333;
	font-weight: bold;
}
#whats dl dt:before {
	content: "・"
}
#whats dl dd {
	margin: 0 0 1rem 1rem;
}
#case {}
#case > ol {
	counter-reset: number 0;
}
#case > ol li {
	position: relative;
	padding: 0 0 0 1.2rem;
	margin: 10px 0 0;
}
#case > ol li:before {
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	top: 3px;
	left: 0;
	border: solid 1px;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	font-size: 10px;
	line-height: 15px;
	/* color: #09f; */
}
#case > ol li dl {
	border: dotted 1px #999;
	padding: 10px 20px;
	margin: 10px 0 0;
}
#case > ol li dl dt {
	color: #09f;
	font-size: 18px;
	font-weight: bold;
}
#case > ol li dl dd {
}
#case > ol li dl dd > ol {
	counter-reset: num 0;
	margin: 0 0 0 1rem;
	color: #333;
	font-weight: bold;
}
#case > ol li dl dd > ol li {
	position: relative;
	padding: 0 0 0 1.2rem;
	margin: 10px 0;
}
#case > ol li dl dd > ol li:before {
	counter-increment: num 1;
	content: "（"counter(num) "）";
	position: absolute;
	top: 3px;
	left: 0;
	border: none;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	font-size: 13px;
	line-height: 15px;
	/* color: #09f; */
}
#faq {
	background: #f8f8f8;
}
/* Acordeon styles */
.faq_tab {
	position: relative;
	margin: 0 1rem 5px;
	/* width: 100%; */
	/* color: #fff; */
	overflow: hidden;
	font-size: 15px;
}
.faq_tab input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.faq_tab label {
	position: relative;
	display: block;
	padding: 1em 3em 1em 1em;
	background: #eaf6fd;
	font-weight: 500;
	/* line-height: 3; */
	cursor: pointer;
	transition: .5s;
	border: solid 1px #09f;
}
.faq_tab label:hover {
	opacity: .5;
}
.faq_tab .answer {
	max-height: 0;
	overflow: hidden;
	/* background: #fff; */
	transition: max-height .3s;
	margin: 2px 0 0;
}
.faq_tab .answer-cnt {
	margin: 1em 1em 3em;
	color: #666;
}
/* :checked */
.faq_tab input:checked ~ .answer {
	max-height: 20em;
}
/* Icon */
.faq_tab label::after {
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto;
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	transition: all .3s;
	transform: rotate(-45deg);
}
.faq_tab input[type=checkbox] + label::after {
	content: "×";
}
.faq_tab input[type=checkbox]:checked + label::after {
	transform: rotate(0deg);
}
@media (max-width: 768px) {
ul.img {}
ul.img li {}
ul.img li img {
    height: 100px;
}
#whats {}
#whats hr {}
#whats p {}
#whats p b {}
#whats .job_category {
    font-size: 12px;
}
#whats .job_category li {
    width: calc(100% / 3);
}
#whats .job_category li:before {}
#whats .job_category li img {}
#whats table {
    width: 100%;
}
#whats table tr {}
#whats table th {}
#whats table td {}
#whats .support {}
#whats .support li {}
#whats .support li:before {}
#whats dl {}
#whats dl dt {}
#whats dl dt:before {}
#whats dl dd {}
#case {}
#case > ol {}
#case > ol li {}
#case > ol li:before {}
#case > ol li dl {}
#case > ol li dl dt {}
#case > ol li dl dd {}
#case > ol li dl dd > ol {}
#case > ol li dl dd > ol li {}
#case > ol li dl dd > ol li:before {}
#faq {}
/* Acordeon styles */
.faq_tab {
    font-size: 13px;
    margin: 0 0 5px;
}
.faq_tab input {}
.faq_tab label {}
.faq_tab label:hover {}
.faq_tab .answer {}
.faq_tab .answer-cnt {}
/* :checked */
.faq_tab input:checked ~ .answer {}
/* Icon */
.faq_tab label::after {}
.faq_tab input[type=checkbox] + label::after {}
.faq_tab input[type=checkbox]:checked + label::after {}
}