/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, /*body, div, */span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
/*table, caption, tbody, tfoot, thead, tr, th, td,*/
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body, div {
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

table, caption, tbody, tfoot, thead, tr, th, td {
	border:0;
	outline:0;
	font-size:100%;
	background:transparent;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

ol, ul {
	list-style-type:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

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

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}

img {
	vertical-align: top;
	font-size:0;
	line-height:0;
	width:100%;
	height:auto;
}

em {
	font-style:normal;
	font-weight:bold;
}

address {
	font-style:normal;
}

.clear {
	clear:both;
}

html{
box-sizing: border-box;
}
*, *:before, *:after{
box-sizing: inherit;
}

/* サイト共通
------------------------------------------------- */
html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	}
	@media screen and (max-width: 320px) {
	html { font-size: 54.6875%; }
}
body {
	width: 100%;
	height: 100%;
	font-size: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	background-color: #fff;
	color: #000;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
}


/* ヘッダ
============================ */
/* SMBC共通ヘッダ */
.hdr_group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 65px;
	background: #004831;
	border-bottom: 4px solid #c4d700;
	padding: 0 60px;
	z-index: 200;
}
.hdr_group p:first-child {
	width: 117px;
}
.hdr_group p:last-child {
	width: 82px;
}
@media screen and (max-width:1024px) {
	.hdr_group {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 55px;
		background: #004831;
		border-bottom: 4px solid #c4d700;
		padding: 0 10px;
		z-index: 200;
	}
	.hdr_group p:first-child {
		width: 90px;
	}
	.hdr_group p:last-child {
		width: 65px;
	}
}

/* SMBCスタッフサービス ヘッダ */
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 70px;
	background: #fff;
	padding: 0 60px;
}
.header h1 {
	position: relative;
	width: 338px;
}
.header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 90;
}
@media screen and (max-width:1024px) {
	.header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 50px;
		background: #fff;
		padding: 0 20px;
	}
	.header h1 {
		position: relative;
		width: 200px;
	}
}

/* ナビボタン（MENU）*/
#nav-toggle {
	position: relative;
	width: 46px;
	height: 46px;
	cursor: pointer;
	z-index: 200;
	transition: all 0.4s;
}
#nav-toggle div {
	position: absolute;
	width: 46px;
	top: 9px!important;
	left: 0;
}
#nav-toggle p {
	position: absolute;
	top: 29px;
	width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	transition: all 0.4s;
}
#nav-toggle span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #2e3239;
	transition: all 0.4s;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 10px;
}
#nav-toggle:hover span,
#nav-toggle:hover p {
	opacity: 0.6;
}
.open #nav-toggle span:nth-child(1) {
	top: 4px;
	transform: rotate(22deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 4px;
	transform: rotate(-22deg);
}
@media screen and (max-width:1024px) {
	#nav-toggle {
		position: relative;
		width: 34px;
		height: 34px;
		cursor: pointer;
		z-index: 200;
		transition: all 0.4s;
	}
	#nav-toggle div {
		position: absolute;
		width: 34px;
		top: 5px!important;
		left: 0;
	}
	#nav-toggle p {
		position: absolute;
		top: 21px;
		width: 100%;
		font-family: 'Zen Kaku Gothic New', sans-serif;
		font-size: 1.1rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-align: center;
	}
	#nav-toggle span {
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background: #2e3239;
		transition: all 0.4s;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 8px;
	}
	#nav-toggle:hover span,
	#nav-toggle:hover .txt {
		opacity: 0.6;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 4px;
		transform: rotate(22deg);
	}
	.open #nav-toggle span:nth-child(2) {
		top: 4px;
		transform: rotate(-22deg);
	}
}


/* ナビ
============================ */
#gloval-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: url("../images/navi_bg.jpg") top left / cover;
	transition: all 0.4s;
	visibility: hidden;
	z-index: 100;
}
nav {
	position: fixed;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling:touch;
	text-align: left;
	font-size: 1.6rem;
	padding: 0 5% 30px;
	opacity: 0;
	transform: translateY(100px);
}
nav .logo {
	margin-right: auto;
	padding-bottom: 90px;
}
nav .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
nav .logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color:#2e3239;
}
nav .logo a span {
	display:block;
	margin:10px 0 0 50px;
	position: relative;
	white-space: nowrap;
}
nav .logo a span::before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: -12px;
	margin: auto;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	border-top: 2px solid #ff7522;
	border-right: 2px solid #ff7522;
	transform: translate(0, -50%) rotate(45deg);
}
nav dl {
	position: relative;
	width: 19%;
	line-height: 1.4;
	background: #fff;
	border-radius: 30px;
	padding: 20px 20px 40px;
	margin-bottom: 30px;
	box-shadow: 0 0 50px rgb(187 185 158 / 20%);
}
nav dl::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -50px;
	left: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background-size: contain;
	margin: auto;
	vertical-align: middle;
}
nav dl:nth-child(1)::before {
	background: url(../images/navi_icon01.png) no-repeat;
}
nav dl:nth-child(2)::before {
	background: url(../images/navi_icon02.png) no-repeat;
}
nav dl:nth-child(3)::before {
	background: url(../images/navi_icon03.png) no-repeat;
}
nav dl:nth-child(4)::before {
	background: url(../images/navi_icon04.png) no-repeat;
}
nav dl:nth-child(5)::before {
	background: url(../images/navi_icon05.png) no-repeat;
}
nav dl dt {
	font-size: 1.9rem;
	color: #4dc788;
	text-align: center;
	border-bottom: solid 1px #eee;
	padding: 25px 0 20px;
}
nav ul li {
	position: relative;
}
nav ul li::before {
	position: absolute;
	top: 22px;
	left: 4px;
	margin: auto;
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #ff7522;
	border-right: 2px solid #ff7522;
	transform: rotate(45deg);
}

nav ul li.comingsoon {
	color: #aaa;
	border-bottom: solid 1px #eee;
	padding: 12px 0 12px 24px;
}
nav ul a {
	display: block;
	color: #2e3239;
	text-decoration: none;
	border-bottom: solid 1px #eee;
	padding: 12px 0 12px 24px;
	transition: all 0.3s;
}
nav ul a:hover {
	opacity: 0.4;
}
nav .others {
	width: 100%;
}
nav .others ul {
	display: flex;
	justify-content: flex-end;
	font-size: 1.3rem;
}
nav .others ul li::before {
	display: none;
}
nav .others ul a {
	border-bottom: none;
	padding: 0 0 0 45px;
}
/* open */
.open #gloval-nav {
	opacity: 1;
	visibility:visible;
}
.open nav {
	position: fixed;
	opacity: 1;
	transform: translateY(0);
	transition:all 0.8s;
}
@media screen and (max-width:1024px) {
	#gloval-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
		background: url("../images/navi_bg.jpg") top left / cover;
		transition: all 0.4s;
		visibility: hidden;
		z-index: 100;
	}
	nav {
		position: fixed;
		display: flex;
		justify-content: center;
		align-content: flex-start;
		flex-wrap: wrap;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling:touch;
		text-align: left;
		font-size: 1.4rem;
		padding: 0 5% 30px;
		opacity: 0;
		transform: translateY(100px);
	}
	nav .logo {
		width: 260px;
		margin-right: auto;
		padding: 70px 0 50px;
	}
	nav .logo a {
		align-items: start;
		flex-direction: column;
	}
	nav .logo a span {
		margin:20px 0 0 12px;
	}
	nav .inner {
		display: block;
		width: 100%;
	}
	nav dl {
		position: relative;
		width: 100%;
		line-height: 1.4;
		background: #fff;
		border-radius: 30px;
		padding: 20px 20px 10px;
		margin-bottom: 45px;
		box-shadow: 0 0 50px rgb(187 185 158 / 20%);
	}
	nav dl::before {
		position: absolute;
		content: '';
		display: inline-block;
		top: -25px;
		left: 0;
		right: 0;
		width: 60px;
		height: 60px;
		margin: auto;
		vertical-align: middle;
	}
	nav dl:nth-child(1)::before {
		background: url(../images/navi_icon01.png) no-repeat;
		background-size: contain;
	}
	nav dl:nth-child(2)::before {
		background: url(../images/navi_icon02.png) no-repeat;
		background-size: contain;
	}
	nav dl:nth-child(3)::before {
		background: url(../images/navi_icon03.png) no-repeat;
		background-size: contain;
	}
	nav dl:nth-child(4)::before {
		background: url(../images/navi_icon04.png) no-repeat;
		background-size: contain;
	}
	nav dl:nth-child(5)::before {
		background: url(../images/navi_icon05.png) no-repeat;
		background-size: contain;
	}
	nav dl dt {
		font-size: 1.9rem;
		color: #4dc788;
		text-align: center;
		border-bottom: solid 1px #eee;
		padding: 25px 0 15px;
	}
	nav ul li {
		position: relative;
	}
	nav ul li::before {
		position: absolute;
		top: 19px;
		left: 4px;
		margin: auto;
		content: "";
		width: 7px;
		height: 7px;
		border-top: 2px solid #ff7522;
		border-right: 2px solid #ff7522;
		transform: rotate(45deg);
	}
	nav ul li.comingsoon {
		color: #aaa;
		border-bottom: solid 1px #eee;
		padding: 12px 0 12px 24px;
	}
	nav ul a {
		display: block;
		color: #2e3239;
		text-decoration: none;
		border-bottom: solid 1px #eee;
		padding: 12px 0 12px 24px;
		transition: all 0.3s;
	}
	nav ul li:last-child a {
		border-bottom: none;
	}
	nav ul li.comingsoon:last-child {
		border-bottom: none;
	}
	nav ul a:hover {
		opacity: 0.4;
	}
	nav .others {
		width: 100%;
	}
	nav .others ul {
		display: flex;
		justify-content: space-between;
		font-size: 1.1rem;
	}
	nav .others ul li::before {
		display: none;
	}
	nav .others ul a {
		border-bottom: none;
		padding: 0;
	}
	/* open */
	.open #gloval-nav {
		opacity: 1;
		visibility:visible;
	}
	.open nav {
		position: fixed;
		opacity: 1;
		transform: translateY(0);
		transition:all 0.8s;
	}
}

/* フッタ
============================ */
footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.2rem;
	color: #2e3239;
	border-top: solid 1px #f2f2f2;
	padding: 40px 100px;
}
footer ul {
	display: flex;
}
footer ul a {
	color: #2e3239;
	text-decoration: none;
	margin-left: 35px;
	transition: all 0.3s;
}
footer ul a:hover {
	opacity: 0.7;
}
@media screen and (max-width:1024px) {
	footer {
		display: block;
		font-size: 1.1rem;
		text-align: center;
		color: #2e3239;
		border-top: solid 1px #f2f2f2;
		padding: 30px 2% 50px;
	}
	footer ul {
		display: flex;
		justify-content: center;
		margin-top: 15px;
	}
	footer ul a {
		color: #2e3239;
		text-decoration: none;
		margin: 0 12px;
	}
}


/* ページの先頭へ
============================ */
#pageTop {
	position: fixed;
	bottom: 18px;
	right: 30px;
}
#pageTop a {
	display: block;
	position: relative;
	width: 36px;
	height: 36px;
	z-index: 999;
	text-indent: -9999px;
}
#pageTop a::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	border-top: 2px solid #2e3239;
	border-right: 2px solid #2e3239;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (max-width:1024px) {
	#pageTop {
		position: fixed;
		bottom: 12px;
		right: 18px;
	}
	#pageTop a {
		display: block;
		position: relative;
		width: 26px;
		height: 26px;
		z-index: 999;
		text-indent: -9999px;
	}
	#pageTop a::after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		vertical-align: middle;
		width: 16px;
		height: 16px;
		border-top: 2px solid #2e3239;
		border-right: 2px solid #2e3239;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}


/* コンテンツエリア
============================ */
#contentsArea {
	line-height: 1.8;
	font-size: 1.6rem;
	text-align: center;
}
#contentsArea .wrap {
	width: 86%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
}
#contentsArea p {
	margin: 0;
}
#contentsArea a,
#contentsArea a:visited,
button {
	text-decoration: none;
	transition: all 0.3s;
}
#contentsArea a:hover,
button:hover {
	opacity: 0.7;
}
@media screen and (max-width:1024px) {
	#contentsArea {
		line-height: 1.8;
		font-size: 1.4rem;
		text-align: center;
	}
	#contentsArea .wrap {
		width: 86%;
		margin: 0 auto;
		text-align: left;
	}
	#contentsArea p {
		margin: 0;
	}
	#contentsArea a,
	#contentsArea a:visited {
		text-decoration: none;
	}
}

/* tableリストタイプ
------------------------------------------------- */
table.list {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	line-height: 2;
	text-align: left;
	border-bottom: 1px solid #eaeeed;
}
table.list th,
table.list td {
	display: table-cell;
	border-top: 1px solid #eaeeed;
}
table.list th {
	width: 10em;
	vertical-align: top;
	padding: 1em 1.5em 1em 0;
}
table.list td {
	width: calc(100% - 10em);
	padding: 1em 0;
}
table.noborderTop tr:first-of-type th,
table.noborderTop tr:first-of-type td {
	border-top:none;
}


@media screen and (max-width:1024px) {
	table.list {
		width: 100%;
		border-collapse: collapse;
		background: #fff;
		line-height: 2;
		text-align: left;
		border-bottom: 1px solid #eaeeed;
	}
	table.list th,
	table.list td {
		display: block;
		border-top: 1px solid #eaeeed;
		padding: 1em 0;
	}
	table.list th {
		width: 100%;
		vertical-align: top;
		padding-bottom: 0;
	}
	table.list td {
		width: 100%;
		border-top: none!important;
		padding-top: 0.5em;
	}
}

/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: block;
	}
	@media screen and (min-width:1025px) {
	br.sp {
		display: none;
	}
}
/* PCだけ改行 */
br.pc { 
	display: none;
	}
	@media screen and (min-width:1025px) {
	br.pc {
		display: block;
	}
}



/* システム共通
============================ */

/* フォームパーツ
---------------------------------- */
.system input,
.system select,
.system textarea {
	background: #efefef;
	border: none;
	padding: 15px 20px;
	line-height: 1.6;
	font-size: 1.6rem;
	border-radius: 10px;
}
.system input,
.system textarea {
	background: #efefef;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 8px 0;
}
.system select {
	margin: 8px 8px 8px 16px;
}
.system select:first-child {
	margin-left: 0;
}
.system input:focus,
.system select:focus,
.system textarea:focus {
	outline: 0;
}
.system textarea {
	width: 100%;
	display: block;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #efefef inset;
}
@media screen and (max-width:1024px) {
	.system input,
	.system select,
	.system textarea {
		background: #efefef;
		border: none;
		padding: 10px 15px;
		line-height: 1.6;
		font-size: 1.4rem;
		border-radius: 10px;
	}
	.system input,
	.system textarea {
		background: #efefef;
		border: none;
		border-radius: 0;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin: 5px 0;
	}
	.system select {
		margin: 5px 4px 5px 0;
	}
	.system select:first-child {
		margin-left: 0;
	}
	.system input:focus,
	.system select:focus,
	.system textarea:focus {
		outline: 0;
	}
	.system textarea {
		width: 100%;
		display: block;
	}
	input:-webkit-autofill {
		-webkit-box-shadow: 0 0 0px 1000px #efefef inset;
	}
}

/* チェックボックス */
/* 参考：https://cultureacademia.jp/webcreate/303/ */
.system input[type="checkbox"] {
	display: none;
}
.system label {
	display: inline-block;
	margin: 0.4em 2em 0.4em 40px;
}
.system .cb-parts {
	position: relative;
	cursor: pointer;
	font-size: 1.6rem;
	padding: 15px 0;
}
.system span[class^="cb-parts"]::before {
	content: "";
	display: block;
	position: absolute;
	left: -40px;
	top: 11px;
	width: 30px;
	height: 30px;
	border: none;
	background: #eaeeed;
	border-radius: 5px;
}
.system input[type="checkbox"]:checked + span[class^="cb-parts"]::after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: -29px;
	width: 8px;
	height: 12px;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	border-bottom: 2px solid #1a1b1c;
	border-right: 2px solid #1a1b1c;
}
@media screen and (max-width:1024px) {
	.system input[type="checkbox"] {
		display: none;
	}
	.system label {
		display: inline-block;
		margin: 0.4em 1.7em 0.4em 28px;
	}
	.system .cb-parts {
		position: relative;
		cursor: pointer;
		font-size: 1.4rem;
		padding: 15px 0;
	}
	.system span[class^="cb-parts"]::before {
		content: "";
		display: block;
		position: absolute;
		left: -28px;
		top: 14px;
		width: 20px;
		height: 20px;
		border: none;
		background: #eaeeed;
		border-radius: 5px;
	}
	.system input[type="checkbox"]:checked + span[class^="cb-parts"]::after {
		content: "";
		display: block;
		position: absolute;
		top: 18px;
		left: -21px;
		width: 6px;
		height: 10px;
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg);
		border-bottom: 2px solid #1a1b1c;
		border-right: 2px solid #1a1b1c;
	}
}

/* placeholder */
.system input::placeholder {
	font-size: 1.6rem;
}
.system input:-ms-input-placeholder {
	font-size: 1.6rem;
}
@media screen and (max-width:1024px) {
	.system input::placeholder {
		font-size: 1.2rem;
	}
	.system input:-ms-input-placeholder {
		font-size: 1.6rem;
	}
}

/* ラジオボタン */
.system label.radio {
	position: relative;
	display: inline-block;
	padding-left: 40px;
	margin: 0 1.5em -0.8em 0;
	overflow: hidden;
}
.system label.radio:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
	z-index: 3;
}
.system label.radio:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background-color: #1a1b1c;
	border: 8px solid #efefef;
	border-radius: 50%;
	z-index: 1;
}
.system input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	left: -60px;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	box-shadow: 60px 0 #efefef;
	border-radius: 50%;
	z-index: 2;
}
.system input[type="radio"]:checked {
	box-shadow: none;
}
/* 当社を知ったきっかけ */
.system label.radio[for^="media_"] {
	margin:0 1.5em 0 0;
	padding-left: 45px;
}
@media screen and (max-width:1024px) {
	.system label.radio {
		position: relative;
		display: inline-block;
		padding-left: 32px;
		margin: 0 1.5em -0.8em 0;
		overflow: hidden;
	}
	.system label.radio:before {
		position: absolute;
		content: '';
		left: 0;
		top: 0;
		width: 24px;
		height: 24px;
		border: none;
		border-radius: 50%;
		z-index: 3;
	}
	.system label.radio:after {
		position: absolute;
		content: '';
		left: 0;
		top: 0;
		width: 24px;
		height: 24px;
		background-color: #1a1b1c;
		border: 6px solid #efefef;
		border-radius: 50%;
		z-index: 1;
	}
	.system input[type="radio"] {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		position: absolute;
		top: 0;
		left: -40px;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0;
		box-shadow: 40px 0 #efefef;
		border-radius: 50%;
		z-index: 2;
	}
	.system input[type="radio"]:checked {
		box-shadow: none;
	}
}

/* お仕事を探す
------------------------------------------------- */
.searchArea {
	max-width: 1200px;
	width: 86%;
	background: #fff;
	border-radius: 30px;
	margin: -60px auto 0;
	box-shadow: 0 0 70px rgba(153,184,204,0.2);
}
.searchArea .ttl {
	font-size: 3.2rem;
	font-family: 'Zen Old Mincho', serif;
	padding: 30px 0 28px;
}
.searchArea .ttl::after {
	content: '';
	display: inline-block;
	width: 49px;
	height: 50px;
	background-image: url(../images/pic_search.png);
	background-size: contain;
	vertical-align: middle;
	margin: -10px 0 0 20px;
}
.searchArea .inner {
	padding: 0 100px;
}
.searchArea select {
	width: 42%;
}
.searchArea button {
	width: 300px;
	background: linear-gradient(to right, #f16e57, #fdae55);
	border: 0;
	border-radius: 100px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	padding: 15px;
	margin: 32px 0;
}
.searchArea .btn_filter {
	background: #ebf8de;
	border-radius: 0 0 30px 30px;
	padding: 10px;
}
.searchArea .btn_filter span {
	position: relative;
}
.searchArea .btn_filter span::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	margin: auto;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #2e3239;
	border-right: 2px solid #2e3239;
	transform: rotate(135deg);
}
.searchArea .btn_filter.active span::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	margin: auto;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #2e3239;
	border-right: 2px solid #2e3239;
	transform: rotate(-45deg);
}
@media screen and (max-width:1024px) {
	.searchArea {
		width: 90%;
		background: #fff;
		border-radius: 30px;
		margin: -60px auto 0;
		box-shadow: 0 0 60px rgba(153,184,204,0.2);
	}
	.searchArea .ttl {
		font-size: 2.4rem;
		font-family: 'Zen Old Mincho', serif;
		padding: 10px 0;
	}
	.searchArea .ttl::after {
		content: '';
		display: inline-block;
		width: 35px;
		height: 35px;
		background-image: url(../images/pic_search.png);
		background-size: contain;
		vertical-align: middle;
		margin: -10px 0 0 10px;
	}
	.searchArea .inner {
		padding: 0 20px;
	}
	.searchArea select {
		width: 100%;
	}
	.searchArea button {
		width: 300px;
		background: linear-gradient(to right, #f16e57, #fdae55);
		border: 0;
		border-radius: 100px;
		font-size: 1.6rem;
		font-weight: 700;
		color: #fff;
		cursor: pointer;
		padding: 15px;
		margin: 32px 0;
	}
	.searchArea .btn_filter {
		background: #ebf8de;
		border-radius: 0 0 30px 30px;
		padding: 10px;
	}
	.searchArea .btn_filter span {
		position: relative;
	}
	.searchArea .btn_filter span::before {
		position: absolute;
		top: 0;
		bottom: 0;
		right: -30px;
		margin: auto;
		content: "";
		width: 8px;
		height: 8px;
		border-top: 2px solid #2e3239;
		border-right: 2px solid #2e3239;
		transform: rotate(135deg);
	}
	.searchArea .index_search_txt {
		display: block;
	}
}

/* あなたが閲覧したお仕事
------------------------------------------------- */
.historyArea {
	background: #ebf8de;
	padding: 60px 0 100px;
}
.historyArea .ttl {
	width: 86%;
	max-width: 1200px;
	font-size: 3.2rem;
	font-family: 'Zen Old Mincho', serif;
	text-align: left;
	margin: 0 auto!important;
}
.historyArea ul {
	text-align: left;
	margin-top: 40px;
}
.historyArea ul li a {
	position: relative;
	display: block;
	width: 460px;
	height: 100%;
	border-radius: 30px;
	background: #fff;
	font-size: 1.4rem;
	color: #2e3239;
	padding: 40px;
	margin: 5px 20px;
}
.historyArea .jobname {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: #ff7522;
	text-decoration: underline;
	padding-bottom: 15px;
}
.historyArea .area,
.historyArea .type,
.historyArea .salary {
	line-height: 1;
	margin: 0 0 6px 30px!important;
}
.historyArea .area::before,
.historyArea .type::before,
.historyArea .salary::before {
	content: '';
	display: inline-block;
	width: 19px;
	height: 23px;
	background-size: contain;
	vertical-align: middle;
	margin: 0 10px 5px -30px;
}
.historyArea .area::before {
	background-image: url(../images/icon_area.png);
}
.historyArea .type::before {
	background-image: url(../images/icon_type.png);
}
.historyArea .salary::before {
	background-image: url(../images/icon_salary.png);
}
.historyArea .cmt {
	font-size: 1.4rem;
	line-height: 1.6;
	padding-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media screen and (max-width:1024px) {
	.historyArea {
		background: #ebf8de;
		padding: 25px 0 110px;
	}
	.historyArea .ttl {
		width: 86%;
		max-width: 1200px;
		font-size: 2.2rem;
		font-family: 'Zen Old Mincho', serif;
		text-align: left;
		margin: 0 auto!important;
		padding-bottom: 15px;
	}
	.historyArea ul {
		text-align: left;
		margin-top: 0;
	}
	.historyArea ul li a {
		position: relative;
		display: block;
		width: 300px;
		height: 100%;
		border-radius: 30px;
		background: #fff;
		font-size: 1.2rem;
		color: #2e3239;
		padding: 25px;
		margin: 5px 20px;
	}
	.historyArea .jobname {
		font-size: 1.7rem;
		font-weight: 700;
		line-height: 1.6;
		color: #ff7522;
		text-decoration: underline;
		padding-bottom: 15px;
	}
	.historyArea .area,
	.historyArea .type,
	.historyArea .salary {
		line-height: 1;
		margin: 0 0 6px 30px!important;
	}
	.historyArea .area::before,
	.historyArea .type::before,
	.historyArea .salary::before {
		content: '';
		display: inline-block;
		width: 19px;
		height: 23px;
		background-size: contain;
		vertical-align: middle;
		margin: 0 10px 5px -30px;
	}
	.historyArea .area::before {
		background-image: url(../images/icon_area.png);
	}
	.historyArea .type::before {
		background-image: url(../images/icon_type.png);
	}
	.historyArea .salary::before {
		background-image: url(../images/icon_salary.png);
	}
	.historyArea .cmt {
		font-size: 1.4rem;
		line-height: 1.6;
		padding-top: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* スライダー */
.historyArea ul {
	position: relative;
}
.historyArea .slick-prev,
.historyArea .slick-next {
	position: absolute;
	cursor: pointer;
	display: block!important;
	content: "";
	top: -90px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #dadada;
	appearance: none;
	border: none;
	outline: none;
	text-indent: -9999px;
	padding: 0;
	margin: auto;
	z-index: 1;
	transition: all 0.3s;
}
.historyArea .slick-prev {
	right: 170px;
}
.historyArea .slick-next {
	right: 90px;
}
.historyArea .slick-prev::before,
.historyArea .slick-next::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	width: 9px;
	height: 9px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transition: all 0.3s;
}
.historyArea .slick-prev::before {
	transform: rotate(45deg);
	left: 3px;
}
.historyArea .slick-next::before {
	transform: rotate(-135deg);
	right: 2px;
}
.historyArea .slick-dots {
	position: absolute;
	display: flex;
	justify-content: center;
	bottom: -30px;
	width: 100%;
}
.historyArea .slick-dots li {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #bcc1be;
	text-indent: -9999px;
	margin: 0 8px;
	opacity: 0.8;
	cursor: pointer;
}
.historyArea .slick-dots li.slick-active {
	background: #ff7522;
}
@media screen and (max-width:1024px) {
	.historyArea ul {
		position: relative;
	}
	.historyArea .slick-prev,
	.historyArea .slick-next {
		position: absolute;
		cursor: pointer;
		display: block!important;
		content: "";
		top: auto;
		bottom: -78px;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #dadada;
		appearance: none;
		border: none;
		outline: none;
		text-indent: -9999px;
		padding: 0;
		margin: auto;
		z-index: 1;
		transition: all 0.3s;
	}
	.historyArea .slick-prev {
		left: calc(50% - 50px);
		right: auto;
	}
	.historyArea .slick-next {
		right: calc(50% - 50px);
	}
	.historyArea .slick-prev::before,
	.historyArea .slick-next::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		content: "";
		width: 7px;
		height: 7px;
		border-bottom: 2px solid #fff;
		border-left: 2px solid #fff;
		transition: all 0.3s;
	}
	.historyArea .slick-prev::before {
		transform: rotate(45deg);
		left: 3px;
	}
	.historyArea .slick-next::before {
		transform: rotate(-135deg);
		right: 2px;
	}
	.historyArea .slick-dots {
		position: absolute;
		display: flex;
		justify-content: center;
		bottom: -18px;
		width: 100%;
	}
	.historyArea .slick-dots li {
		display: block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #bcc1be;
		text-indent: -9999px;
		margin: 0 6px;
		opacity: 0.8;
		cursor: pointer;
	}
	.historyArea .slick-dots li.slick-active {
		background: #ff7522;
	}
}

/* 一覧・詳細
------------------------------------------------- */
.ttlArea {
	background:url(../images/bg_ttl.png)left top no-repeat;
	width:100%;
	height:160px;
	background-size: cover;
}
#contentsArea.joblist h2 {
	max-width:1200px;
	line-height:7rem;
	width:86%;
	font-family: 'Zen Old Mincho', serif;
	font-size:2.6rem;
	background:#ebf8de;
	text-align: left;
	margin: 80px auto 0;
	font-weight: 400;
	padding:0 0 0 24px;
}
#contentsArea .result {
	font-size:2.4rem;
}
#contentsArea .result .num {
	font-size:3.6rem;
	color:#ff7522;
}
#contentsArea .joblistArea {
	width: 86%;
	max-width: 1200px;
	margin: 80px auto;
}
#contentsArea .joblistArea .jobbox {
	margin:40px auto;
}
#contentsArea .joblistArea .jobbox .jobnum {
}
#contentsArea .joblistArea .jobbox .jobnum ul {
	display:flex;
	justify-content: end;
}
#contentsArea .joblistArea .jobbox .jobnum ul li {
	margin:0 0 0 30px;
}
#contentsArea .joblistArea .jobbox .jobnum ul li:first-child {
	margin:0;
}
#contentsArea .joblistArea .jobbox dl {
box-shadow: 0 0 70px rgb(153 184 204 / 20%);
border-radius: 30px;

}
#contentsArea .joblistArea .jobbox dl dt {
	background: #fff8d8;
	border-radius: 30px 30px 0 0;
	padding:30px 50px;
	text-align: left;
}
#contentsArea .joblistArea .jobbox dl dt span {
	font-size:3.2rem;
	color:#2e3239;
	border-bottom: 1px solid #2e3239;
}
#contentsArea .joblistArea .jobbox dl dd {
	background: #fff;
	border-radius: 0 0 30px 30px;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox {
	padding:40px 60px;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex {
	display:flex;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail {
	flex-basis:calc(100% - 460px);
	text-align: left;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail.wide {
	flex-basis:100%;
	width:100%;
}
#contentsArea .joblistArea .jobbox dl dd .area {
	line-height: 1;
	margin: 0 0 6px 30px;
}
#contentsArea .joblistArea .jobbox dl dd .area::before {
	content: '';
	display: inline-block;
	width: 19px;
	height: 23px;
	background-size: contain;
	vertical-align: middle;
	margin: 0 10px 5px -30px;
}
#contentsArea .joblistArea .jobbox dl dd .area::before {
	background-image: url(../images/icon_area.png);
}

#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .jobkey,
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .workstyle {
	display:flex;
	justify-content:start;
	flex-wrap: wrap;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .jobkey li,
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .workstyle li {
	margin:0 6px 12px 0;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .jobkey li span {
	font-size:1.4rem;
	color:#ff7522;
	border:1px solid #ff7522;
	border-radius:5px;
	padding:0.5rem 1rem;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .detail .workstyle li span { 
	font-size:1.4rem;
	color:#fff;
	background:#4ac769;
	border-radius:5px;
	border:1px solid #4ac769;
	padding:0.5rem 1rem;
}
#contentsArea .joblistArea .jobbox dl dd .recNum {
	background:#f7f7f7;
	padding:1.1rem 2rem;
}
#contentsArea .joblistArea .jobbox dl dd .txt {
	font-size:1.6rem;
	line-height:1.8;
	margin:2rem 0;
}
#contentsArea .joblistArea .jobbox dl dd .welcome {
	border:1px solid #dadada;
	border-radius:20px;
	padding:30px;
}
#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .photo {
	flex-basis:400px;
	margin:0 0 0 60px;
}
#contentsArea .joblistArea .jobbox dl dd .line {
	border-top:1px solid #dadada;
}
#contentsArea .joblistArea .jobbox dl dd a {
	width:450px;
}
@media screen and (max-width:1024px) {
	.ttlArea {
	height:80px;
	}
	#contentsArea.joblist h2 {
		margin:20px auto;
		font-size:2.4rem;
	}
	#contentsArea.joblist .result {
		font-size:2rem;
	}
	#contentsArea.joblist .result .num {
		font-size:2.6rem;
	}
	#contentsArea.joblist .joblistArea {
		margin:20px auto;
	}
	#contentsArea .joblistArea .jobbox dl dt {
		padding: 15px 25px;
	}
	#contentsArea .joblistArea .jobbox dl dt span {
		font-size:2.6rem;
	}
	#contentsArea .joblistArea .jobbox dl dd .innerBox.flex {
		flex-direction: column;
		padding: 20px
	}
	#contentsArea .joblistArea .jobbox dl dd .innerBox.flex .photo {
		flex-basis:100%;
		width:100%;
		margin: 30px 0 0;
	}
	#contentsArea .joblistArea .jobbox dl dd .txt {
		font-size:1.4rem;
	}
#contentsArea .joblistArea .jobbox dl dd .line {
	padding:0 40px;
}
#contentsArea .joblistArea .jobbox dl dd a {
    width: 100%;
}

}
/* キャリア登録 */
#contentsArea .joblistArea .careerEntry {
	background:#fff8d8;
	padding:32px 0;
}
#contentsArea .joblistArea .careerEntry .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#contentsArea .joblistArea .careerEntry h3 {
	font-size:2.6rem;
}
#contentsArea .joblistArea .careerEntry h3::before {
	width: 89px;
	height: 86px;
	background-image: url(../images/pic_career.png);
}
#contentsArea .joblistArea .careerEntry .btn a{
	width:360px;
}
@media screen and (max-width:1024px) {
	#contentsArea .joblistArea .careerEntry p,
	#contentsArea .joblistArea .careerEntry .btn a{
		width:100%;
	}
}