@charset "utf-8";

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

body {
	width: 100%;
	min-width: 1260px;
	height: auto;
	text-align: left;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: #404040;
	line-height: 2;
}

.base_box {
	position: relative;
	width: 1300px;
	margin: 0 auto;
	z-index: 1;
}

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

	.base_box { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

/*
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;
	letter-spacing: 0.1rem;
	font-feature-settings: "pkna";
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: #000;
	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: normal;
}

/* ▼LINK▼ */
a {
	color: #70b108;
	text-decoration: none;
	outline: none;
	transition: .5s;
	backface-visibility: hidden;
}

a:before, a:after {
	content: '';
	position: absolute;
	transition: .5s;
	backface-visibility: hidden;
}

a:hover {
	opacity: 0.7;
}

.no_filter a:hover, a.no_filter:hover, .modal_switch.no_filter:hover {
	opacity: 1;
	text-decoration: none;
}

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

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

button:hover, input[type="submit"]:hover { opacity:1; }

.img_frame {
	position: relative;
	overflow: hidden;
}

.img_frame img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.jobs_recommend .box .img {
	width: 100%;
	height: 240px;
}

.hover_img:hover { opacity:0; }

/*
HEADER
***************************************************************************/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	z-index: 1;
}

header .logo {
	float: left;
	margin: 0 35px 0 10px;
}

.hnavi_list {
	float: left;
}

.hnavi_list li {
	display: inline-block;
	margin-right: 26px;
	line-height: 60px;
}

.hnavi_list li a {
	display: block;
	position: relative;
	color: #141414;
}

.hnavi_list li a:after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #8fd127;
	opacity: 0;
}

.hnavi_list li a:hover, .hnavi_list li a:hover:after { opacity:1; }

.hbtn_list {
	float: right;
}

.hbtn_list li {
	float: left;
}

.hbtn_list li:first-child {
	width: 210px;
	margin-left: 15px;
}

.hbtn_list li:last-child {
	width: 170px;
	margin-left: 10px;
}

.hbtn_list li a:hover { opacity:1; }

.hicon_list {
	float: right;
}

.hicon_list > li {
	position: relative;
	float: left;
	cursor: pointer;
}

.hicon_list .inner {
	display: none;
	position: absolute;
	top: 68px;
	left: -30px;
	width: 130px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.hicon_list .inner:before {
	content: '▲';
	position: absolute;
	top: -18px;
	left: 50%;
	margin-left: -10px;
	font-size: 2rem;
	color: #fff;
}

.hicon_list .inner li {
	text-align: center;
	color: #141414;
	line-height: 54px;
	border-bottom: solid 1px #ececec;
}

.hicon_list .inner li:last-child { border-bottom:none; }

.hicon_list .inner li a {
	display: block;
	color: #141414;
}

.hicon_list .inner li a:hover { color:#8fd127; }

.hicon_list .inner li span {
	display: inline-block;
	position: relative;
}

.hicon_list .inner li span:before {
	content: '';
	position: absolute;
	top: 50%;
	left: -12px;
	width: 4px;
	height: 4px;
	margin-top: -1px;
	background: #8fd127;
	border-radius: 50%;
}

.btn_gnavi {
	display: none;
	position: fixed;
	top: 20px;
	right: 30px;
	z-index: 1000;
	cursor: pointer;
}

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

	.hnavi_list li {
		margin-right: 14px;
		font-size: 1.3rem;
	}

}

/*
NAVI
***************************************************************************/
#gnavi {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 170px 50px 100px;
	background: rgba(255,255,255,0.95);
	z-index: 1001;
}

.close_gnavi {
	position: fixed;
	top: 20px;
	right: 30px;
	z-index: 1002;
	cursor: pointer;
}

#gnavi .scroll_box {
	height: calc(100vh - 270px);
	overflow-y: auto;
}

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

#gnavi .btn_list {
	position: relative;
	float: left;
	width: 50%;
	padding: 20px 70px 40px 0;
	border-right: solid 1px #eaeaea;
}

#gnavi .btn_list .title {
	margin-bottom: 60px;
	font-size: 7.5rem;
	font-weight: 400;
	line-height: 1.3;
}

#gnavi .btn_list .title span {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: #404040;
	letter-spacing: 0.15rem;
}

#gnavi .btn_list .icon {
	position: absolute;
	top: 50px;
	right: 85px;
}

#gnavi .btn_list .icon li {
	float: left;
}

#gnavi .btn_list .btn li {
	float: left;
	width: 250px;
	margin-bottom: 20px;
}

#gnavi .btn_list .btn li:nth-child(2n) { float:right; }

#gnavi .btn_list .btn li a { font-size:1.8rem; }

#gnavi .btn_list .btn li a .arrow {
	right: 20px;
	width: 8px;
	height: calc(18px * 0.8);
	margin-top: calc((-18px * 0.8) / 2);
	background-size: 8px;
}

#gnavi .btn_list .btn li.ex {
	float: none;
	width: 100%;
	margin-bottom: 0;
}

#gnavi .btn_list .btn li.ex a { font-size:1.5rem; }

#gnavi .gnavi_list {
	float: right;
	width: 50%;
	padding: 0 0 20px 70px;
}

#gnavi .gnavi_list li {
	float: left;
	width: 200px;
	margin: 0 75px 45px 0;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

#gnavi .gnavi_list li:nth-child(2n) { margin-right:0; }

#gnavi .gnavi_list li:last-child { margin-bottom:0; }

#gnavi .gnavi_list li a {
	color: #8fd127;
}

#gnavi .gnavi_list li img {
	display: block;
	transition: .5s;
	backface-visibility: hidden;
}

#gnavi .gnavi_list li a:hover img { opacity:0.7; }

#gnavi .info {
	margin: 45px 0 55px;
	padding: 60px 0;
	border-top: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
}

#gnavi .info .txt {
	float: left;
	width: 650px;
	margin: -10px 0 0 45px;
	font-size: 1.3rem;
}

#gnavi .info .txt span {
	display: block;
	margin-top: 5px;
	font-size: 1.5rem;
	font-weight: 700;
}

#gnavi .sinfo .sns_list {
	float: left;
	width: 50%;
}

#gnavi .sinfo .sns_list li {
	display: inline-block;
	margin-right: 10px;
}

#gnavi .sinfo .copy {
	float: right;
	width: 50%;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 300;
	color: #a8a8a8;
	line-height: 24px;
}

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

	#gnavi .sec_inner { width:auto; }
	#gnavi .info { margin:45px 60px 55px 0; }
	#gnavi .sinfo { margin-right:60px; }

}

/*
CONTENTS
***************************************************************************/
#contents {
	position: relative;
}

/* ▼PAGE TITLE▼ */
#page_title {
	position: relative;
	height: 680px;
	background-image: url(../common_img/ptitle_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#page_title.jobs { background-image:url(../jobs/images/ptitle_bg.jpg); }
#page_title.jobs_detail { background-image:url(../jobs/images/ptitle_detail_bg.jpg); }
#page_title.company { background-image:url(../company/images/ptitle_bg.jpg); }
#page_title.info { background-image:url(../information/images/ptitle_bg.jpg); }
#page_title.strengths { background-image:url(../strengths/images/ptitle_bg.jpg); }
#page_title.experience { background-image:url(../experiences/images/ptitle_bg.jpg); }
#page_title.experience_detail { background-image:url(../experiences/images/ptitle_detail_bg.jpg); }
#page_title.forcompany { background-image:url(../forcompany/images/ptitle_bg.jpg); }
#page_title.staff { background-image:url(../staff/images/ptitle_bg.jpg); }
#page_title.staff_itoi { background-image:url(../staff/images/itoi/ptitle_bg.jpg); }
#page_title.staff_iwaya { background-image:url(../staff/images/iwaya/ptitle_bg.jpg); }
#page_title.staff_kimura { background-image:url(../staff/images/kimura/ptitle_bg.jpg); }
#page_title.staff_sasagawa { background-image:url(../staff/images/sasagawa/ptitle_bg.jpg); }
#page_title.staff_okamoto { background-image:url(../staff/images/okamoto/ptitle_bg.jpg); }
#page_title.guide { background-image:url(../guide/images/ptitle_bg.jpg); }
#page_title.faq { background-image:url(../faq/images/ptitle_bg.jpg); }
#page_title.contact { height:580px; background-position:center bottom; }
#page_title.application { background-image:url(../application/images/ptitle_bg.jpg); }
#page_title.mypage { background-image:url(../mypage/images/ptitle_bg.jpg); }

#page_title .sec_title {
	position: absolute;
	bottom: 120px;
	left: calc((100 / 1800) * 100vw);
	width: calc(100% - ((200 / 1800) * 100vw));
	font-size: 1.8rem;
}

#page_title .sec_title img {
	display: block;
}

#page_title .sec_title span {
	padding-bottom: 10px;
	border-bottom: solid 3px #8fd127;
}

/* ▼PAGE NAVI▼ */
.pnavi_list {
	padding: 20px 0;
	background: #fff;
}

.pnavi_list li {
	display: inline;
	margin-right: 8px;
	font-size: 1.1rem;
	font-weight: 300;
	color: #b5b5b5;
	line-height: 1.8;
}

.pnavi_list li a {
	margin-right: 12px;
	padding-bottom: 2px;
	color: #959595;
	border-bottom: solid 1px #959595;
}

/* ▼PAGINATION▼ */
.page_list {
	padding-top: 30px;
	text-align: center;
}

.page_list li {
	display: inline-block;
	line-height: 32px;
}

.page_list li a, .page_list li span {
	display: block;
	position: relative;
	width: 24px;
	height: 32px;
	margin: 0 12px;
	font-weight: 400;
	color: #404040;
}

.page_list li span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #8fd127;
	border-bottom: solid 2px #8fd127;
}

.page_list li.prev, .page_list li.next { vertical-align:1px; }
.page_list li.prev a, .page_list li.next a { width:auto; }

/* ▼ANCHOR LIST▼ */
.anc_list {
	text-align: center;
	font-size: 1.5rem;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.anc_list.fixed {
	position: absolute;
	top: -65px;
	right: 0;
	padding: 40px 60px 50px;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	z-index: 100;
}

.anc_list .title {
	padding: 25px 0 35px;
	background: #8fd127;
	cursor: pointer;
}

.anc_list .title span {
	padding-left: 30px;
	background: url(../common_img/icon_plus.png) left 5px no-repeat;
}

.anc_list .title.opened span {
	background: url(../common_img/icon_minus.png) left 5px no-repeat;
}

.anc_list .inner {
	display: none;
	padding: 70px 0 80px;
	background: #8fd127;
	border-top: solid 1px #acea4b;
}

.anc_list li {
	display: inline-block;
	margin: 0 20px;
	font-weight: 400;
}

.anc_list.fixed li { margin:0; }

.anc_list li a {
	display: block;
	position: relative;
	padding: 0 20px;
	color: #fff;
	line-height: 40px;
}

.anc_list li a:after {
	bottom: 0;
	left: 50%;
	width: 4px;
	height: 4px;
	margin-left: -2px;
	background: #fff;
}

/*
TOP
***************************************************************************/
/* ▼TOPIMG▼ */
#topimg {
	position: relative;
	height: 100vh;
	background: url(../images/topimg_bg.jpg) center top no-repeat;
	background-size: cover;
}

#topimg .sec_title {
	position: absolute;
	bottom: calc((95 / 950) * 100vh);
	left: calc((85 / 1800) * 100vw);
}

#topimg .link_list {
	position: absolute;
	top: calc((250 / 950) * 100vh);
	right: 0;
	width: 380px;
}

#topimg .link_list .box {
	margin-bottom: 25px;
	padding: 5px 30px 10px;
	text-align: center;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

#topimg .link_list .box dl {
	padding: 25px 0 20px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
	border-bottom: solid 1px #c2f374;
}

#topimg .link_list .box dl:last-child { border-bottom:none; }

#topimg .link_list .box dt {
	margin-bottom: 15px;
}

#topimg .link_list .box .btn01, #topimg .link_list .box .btn02 { font-size:1.7rem; }
#topimg .link_list .box .btn01 .arrow, #topimg .link_list .box .btn02 .arrow { right:20px; }

#topimg .link_list .sbox {
	position: relative;
	padding: 25px 20px 30px;
	text-align: center;
	background: #fff;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

#topimg .link_list .sbox .btn01 > span { padding-left:40px; }

#topimg .link_list .sbox:before {
	content: '';
	position: absolute;
	top: 63px;
	left: 15px;
	width: 90px;
	height: 90px;
	background: url(../images/topimg_icon.png) no-repeat;
	z-index: 1;
}

@media screen and (max-height: 950px){

	#topimg { height:950px; }
	#topimg .link_list { top:220px; }

}

/* ▼LINK BF▼ */
#topimg .link_bf {
	position: absolute;
	bottom: calc((460 / 950) * 100vh);
	left: calc((85 / 1800) * 100vw);
	width: 460px;
}

#topimg .link_bf .box {
	padding: 25px 30px 10px;
	text-align: center;
	background: #00babd;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

#topimg .link_bf .box p {
	font-size: 1.8rem;
}

#topimg .link_bf .box .btn01 {
	font-size: 1.7rem;
	margin-bottom: 16px;
}

#topimg .link_bf .box .btn01 .arrow { 
	right: 20px; 
}

@media screen and (max-height: 950px){

	#topimg .link_bf { top:260px; bottom: auto; }

}

/* ▼TOPICS▼ */
.top_topics {
	position: relative;
	width: 100%;
	height: 120px;
}

.top_topics:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.top_topics .sec_title {
	position: absolute;
	top: 40px;
	left: 50%;
	margin-left: -60px;
}

.top_topics .txt {
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: 65px;
	padding-left: 75px;
	font-size: 1.5rem;
	line-height: 60px;
}

.top_topics .txt:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 60px;
	height: 1px;
	margin-top: -0.5px;
	background: #8fd127;
}

.top_topics .txt span {
	margin-right: 20px;
	font-style: italic;
}

.top_topics .btn {
	position: absolute;
	top: 30px;
	right: 65px;
	width: 200px;
}

.top_topics .btn .btn02 .arrow, .top_topics .btn .btn02:hover .arrow {
	right: 15px;
	width: 8px;
	height: calc(18px * 0.8);
	margin-top: calc((-18px * 0.8) / 2);
	background-size: 8px;
}

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

	.top_topics:before { width:calc((640 / 1800) * 100vw); }
	.top_topics .sec_title { margin-left:calc((-350 / 1800) * 100vw); }
	.top_topics .txt { margin-left:calc((-150 / 1800) * 100vw); }

}

/* ▼INTRO▼ */
.top_intro {
	padding: 150px 0 120px;
}

.top_intro .sec_title {
	float: left;
	width: 50%;
	min-width: 560px;
	margin-top: 20px;
	padding-left: calc((150 / 1800) * 100vw);
	font-size: 7.6rem;
	color: #8fd127;
	line-height: 1.6;
}

.top_intro .txt {
	float: right;
	width: 50%;
	min-width: 600px;
	font-size: 1.6rem;
	line-height: 2.25;
}

.top_intro .btn {
	width: 600px;
	margin: 0 auto;
}

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

	.top_intro .sec_title { padding-left:calc((80 / 1800) * 100vw); font-size:7.2rem; }
	.top_intro .txt { padding-right:calc((80 / 1800) * 100vw); }

}

/* ▼SUPPORT▼ */
.top_support {
	position: relative;
	padding: 90px 50px 200px;
}

.top_support:before {
	content: '';
	position: absolute;
	top: 480px;
	left: 0;
	width: 100%;
	height: 570px;
	background: #8fd127;
	z-index: 0;
}

.top_support:after {
	content: '';
	position: absolute;
	top: 480px;
	left: 0;
	width: 100%;
	height: 900px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.top_support .head {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2.2;
	z-index: 1;
}

.top_support .head .sec_title {
	margin-bottom: 45px;
	font-size: 3.4rem;
	line-height: 1.55;
}

.top_support .head .sec_title .large {
	font-size: 3.8rem;
	color: #8fd127;
	letter-spacing: 0;
}

.top_support .head .sec_title .small {
	font-size: 3.2rem;
	font-weight: 400;
	color: #141414;
}

.top_support .frame {
	position: relative;
	float: left;
	width: calc((100% - 40px) / 2);
	text-align: center;
	z-index: 1;
}

.top_support .frame:last-child { float:right; }

.top_support .box {
	padding: 75px 0 60px;
	background: #fafafa;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.top_support .frame:last-child .box { margin-bottom:200px; }

.top_support .box > .inner {
	width: 590px;
	margin: 0 auto;
}

.top_support .box .set {
	display: table;
	width: 530px;
	margin-bottom: 40px;
	text-align: left;
}

.top_support .box .set:nth-child(2) {
	-webkit-transform: translateX(30px);
	-moz-transform: translateX(30px);
	-ms-transform: translateX(30px);
	transform: translateX(30px);
}

.top_support .box .set:nth-child(3) {
	-webkit-transform: translateX(60px);
	-moz-transform: translateX(60px);
	-ms-transform: translateX(60px);
	transform: translateX(60px);
}

.top_support .box .set .img {
	display: table-cell;
	width: 210px;
	vertical-align: middle;
}

.top_support .box .set .img img { width:100%; }

.top_support .box .set .content {
	display: table-cell;
	width: 320px;
	padding-left: 40px;
	vertical-align: middle;
}

.top_support .box .set .title {
	margin-bottom: 15px;
	font-size: 1.6rem;
	color: #ee426f;
}

.top_support .box .set .title img {
	display: block;
}

.top_support .txt {
	width: 600px;
	margin: 0 auto;
}

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

	.top_support .box > .inner { width:calc((660 / 1800) * 100vw); }
	.top_support .box .set { width:calc((620 / 1800) * 100vw); }
	.top_support .box .set .img { width:calc((230 / 1800) * 100vw); }
	.top_support .box .set .content { width:calc((350 / 1800) * 100vw); padding-left:calc((40 / 1800) * 100vw); }
	.top_support .txt { width:auto; margin:0 calc((40 / 1800) * 100vw); }

	.top_support .box .set:nth-child(2) {
		-webkit-transform: translateX(20px);
		-moz-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}

	.top_support .box .set:nth-child(3) {
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
		transform: translateX(40px);
	}

}

/* ▼JOBS▼ */
.top_jobs {
	position: relative;
	height: 1240px;
	padding-bottom: 180px;
}

.top_jobs:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1600 / 1800) * 100vw);
	height: 1240px;
	background: #fafafa;
	z-index: 0;
}

.top_jobs:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((615 / 1800) * 100vw);
	height: 815px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.top_jobs .sec_inner {
	position: relative;
	padding-top: 125px;
	z-index: 1;
}

.top_jobs .sec_inner:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: #8fd127;
	z-index: 0;
}

.top_jobs .icon {
	position: absolute;
	top: -105px;
	left: 50%;
	margin-left: calc((580 / 1800) * 100vw);
	z-index: 10;
}

.top_jobs .sec_title {
	margin-bottom: 115px;
	text-align: center;
	font-size: 3.6rem;
}

.top_jobs .frame {
	position: relative;
	margin-bottom: 100px;
}

.top_jobs .bx-wrapper {
	position: relative;
	margin: 0 auto;
}

.top_jobs .bx-viewport { overflow:inherit!important; }

.top_jobs .jobs_slide {
	margin-left: calc(50% - 680px);
}

.top_jobs .bx-wrapper .bx-controls-direction a {
	display: none;
}

.top_jobs .bx-pager {
	position: absolute;
	bottom: -45px;
	left: 50%;
	width: 1260px;
	margin-left: -630px;
	z-index: 1000;
}

.top_jobs .bx-pager div {
	display: inline-block;
}

.top_jobs .bx-pager div a {
	display: block;
	width: 44px;
	height: 4px;
	margin-right: 4px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: #dedede;
}

.top_jobs .bx-pager div a.active {
	background: #8fd127;
}

.top_jobs .jobs_slide > li {
	width: 1360px!important;
}

.top_jobs .box {
	position: relative;
	float: left;
	width: 580px;
	margin: 0 50px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.top_jobs .box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	z-index: 100;
}

.top_jobs li.active .box:before { display:none; }

.top_jobs .box a {
	display: block;
	color: #404040;
	background: #fff;
}

.top_jobs .box a:hover { opacity:1; }

.top_jobs .box .img {
	width: 100%;
	height: 320px;
}

.top_jobs .box a .img img {
	transition: .5s;
	backface-visibility: hidden;
}

.top_jobs .box a:hover .img img {
	-webkit-transform: translate(-50%, -50%) scale(1.15,1.15);
	transform: translate(-50%, -50%) scale(1.15,1.15);
}

.top_jobs .box .inner {
	padding: 35px 30px 25px;
	line-height: 1.8;
}

.top_jobs .box .title {
	margin-bottom: 20px;
	font-size: 2rem;
}

.top_jobs .box .date {
	float: left;
	width: 90px;
	font-size: 1.2rem;
	color: #878787;
	line-height: 26px;
	font-style: italic;
}

.top_jobs .box .jobs_tag {
	float: left;
	width: 430px;
}

.top_jobs .btn {
	width: 600px;
	margin: 0 auto;
}

/* ▼LINK▼ */
.top_link {
	margin-bottom: 105px;
	border-top: solid 1px #6ba909;
	border-bottom: solid 1px #6ba909;
}

.top_link li {
	float: left;
	width: 50%;
	text-align: center;
}

.top_link li a {
	display: block;
	padding: 100px 0;
}

.top_link li a:hover { opacity:1; }

.top_link li:first-child a { background:#6ba909; }
.top_link li:first-child a:hover { background:#fff; }

.top_link li:last-child a { background:#fff; }
.top_link li:last-child a:hover { background:#6ba909; }

.top_link li a span {
	display: inline-block;
	width: 360px;
	height: 128px;
}

.top_link li:first-child a span { background:url(../images/company_link_off.png); }
.top_link li:first-child a:hover span { background:url(../images/company_link_on.png); }

.top_link li:last-child a span { background:url(../images/faq_link_off.png); }
.top_link li:last-child a:hover span { background:url(../images/faq_link_on.png); }

/* ▼INFO▼ */
.top_info {
	position: relative;
}

.top_info:before {
	content: '';
	position: absolute;
	top: 0;
	left: calc((105 / 1800) * 100vw);
	width: calc((800 / 1800) * 100vw);
	height: 600px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.top_info:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((1300 / 1800) * 100vw);
	height: 510px;
	background: #fafafa;
	z-index: 0;
}

.top_info .sec_inner {
	padding: 70px 0 190px;
}

.top_info .sec_title {
	margin-bottom: 80px;
	text-align: center;
	font-size: 3.6rem;
}

.top_info .content {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	padding: 35px 50px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

.top_info .icon {
	position: absolute;
	top: -200px;
	left: -120px;
}

.top_info .content .box .title {
	float: left;
	width: 800px;
}

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

	.top_info:before { left:0; }
	.top_info .icon { left:-35px; }

}

/*
JOBS
***************************************************************************/
/* ▼COMMON▼ */
.jobs_tag li {
	display: inline-block;
	margin: 0 5px 10px 0;
	padding: 0 15px 2px;
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
	line-height: 26px;
	border-radius: 13px;
}

.jobs_tag li.gold { background:#cc9500; }
.jobs_tag li.blue { background:#196dc3; }
.jobs_tag li.brown { background:#e5613e; }
.jobs_tag li.lgreen { background:#6da712; }
.jobs_tag li.purple { background:#a267c7; }
.jobs_tag li.dgreen { background:#5cb3bd; }
.jobs_tag li.pink { background:#e27cac; }
.jobs_tag li.gray { background:#b1b1b1; }

.status li {
	display: inline-block;
	margin: 0 5px 10px 0;
	padding: 0 15px 2px;
	font-size: 1.2rem;
	font-weight: 400;
	color: #8fd127;
	line-height: 26px;
	border-radius: 13px;
}

.status li.white { background:#fff; }

.status li.lgreen { background:#8fd127; }


/* ▼SEARCH▼ */
.jobs_search {
	position: relative;
	margin-bottom: 90px;
	padding: 65px 100px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.jobs_search.result {
	margin-bottom: 30px;
	padding: 0;
}

.jobs_search .sec_title {
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	line-height: 75px;
	background: #8fd127;
	border-radius: 20px 20px 0 0;
}

.jobs_search.result .inner {
	padding: 40px 140px 65px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.jobs_search.result dl {
	line-height: 1.8;
}

.jobs_search.result dt {
	float: left;
	width: 120px;
	padding: 20px 0;
	text-align: center;
	font-weight: 700;
	border-bottom: solid 2px #8fd127;
}

.jobs_search.result dd {
	float: right;
	width: 320px;
	padding: 20px 0 20px 10px;
	border-bottom: solid 1px #eaeaea;
}

.jobs_search.result .btn {
	width: 800px;
	margin: 0 auto;
}

.jobs_search .list {
	margin-bottom: 35px;
}

.jobs_search .list li {
	float: left;
	margin-right: 15px;
}

.jobs_search .list li:last-child { margin-right:0; }

.more_search .btn01 {
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
}

.more_search.result {
	position: relative;
	margin-bottom: 90px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.more_search.result .sec_title {
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	line-height: 75px;
	background: #8fd127;
	border-radius: 20px;
	cursor: pointer;
}

.more_search.result .sec_title.opened { border-radius:20px 20px 0 0; }

.more_search.result .sec_title .switch {
	padding-right: 28px;
	background: url(../common_img/arrow01_down.png) right center no-repeat;
}

.more_search.result .sec_title.opened .switch {
	background: url(../common_img/arrow01_up.png) right center no-repeat;
}

.more_search > .inner {
	display: none;
	padding: 15px 0 35px;
}

.more_search.result > .inner {
	padding: 15px 100px 100px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.search_list dl {
	padding: 25px 0;
	border-bottom: solid 1px #eaeaea;
}

.search_list dl:last-child { margin-bottom:50px; }

.search_list dt {
	float: left;
	width: 130px;
	padding-left: 20px;
	line-height: 60px;
}

.search_list dt.ex { line-height:2; }

.search_list dd {
	float: right;
	width: calc(100% - 130px);
	padding-right: 20px;
}

.more_search .btn {
	width: 800px;
	margin: 0 auto 20px;
}

.more_search .reset {
	width: 800px;
	height: 60px;
	margin: 0 auto 75px;
	text-align: center;
	line-height: 60px;
	background: #d4d4d4;
	border-radius: 30px;
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
}

.more_search .reset:hover { opacity:0.7; }

.more_search .reset span { margin-right:8px; }

.more_search .save_box {
	padding: 50px 100px;
	background: #f6f6f6;
	border-radius: 10px;
}

.more_search .save_box dt {
	float: left;
	width: 340px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.8;
}

.more_search .save_box dt span { font-size:1.4rem; }

.more_search .save_box dd {
	float: right;
	width: 400px;
}

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

	.jobs_search { padding:65px 0; }
	.jobs_search form, .jobs_search .more_search { width:1000px; margin:0 auto; }

}

/* ▼LIST▼ */
.jobs_list {
	position: relative;
	padding: 90px 0;
}

.jobs_list:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((900 / 1800) * 100vw);
	height: 900px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.jobs_list .sec_inner {
	width: 1200px;
	margin: 0 auto;
}

.jobs_list .box {
	position: relative;
	margin-bottom: 60px;
	padding: 60px 100px 65px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.jobs_list.detail .box { margin-bottom:125px; }

.jobs_list .box .jobs_like {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	background: url(../common_img/icon_heart_off.png) no-repeat;
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
}

.jobs_list .box .jobs_like:hover { opacity:0.7; }

.jobs_list .box .jobs_like.active {
	background: url(../common_img/icon_heart_on.png) no-repeat;
}

.jobs_list .box .catch {
	margin-bottom: 5px;
	font-size: 1.6rem;
}

.jobs_list .box .title {
	margin-bottom: 25px;
	font-size: 2.2rem;
}

.jobs_list .box .jobs_tag {
	padding-bottom: 10px;
}

.jobs_list .box .jobs_stag {
	padding-bottom: 10px;
}

.jobs_list .box .jobs_stag li {
	display: inline-block;
	margin: 0 5px 10px 0;
	padding: 0 15px 2px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 40px;
	background: #f6f6f6;
	border-radius: 4px;
}

.jobs_list .box .jobs_status {
	margin-bottom: 30px;
	border-top: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
}

.jobs_list .box .jobs_status li {
	float: left;
	width: 50%;
	padding: 20px 0 20px 50px;
	line-height: 40px;
	background-position: left 20px;
	background-repeat: no-repeat;
	border-bottom: dotted 1px #eaeaea;
}

.jobs_list .box .jobs_status li:last-child { border-bottom:none; }

.jobs_list .box .jobs_status li.jenre { background-image:url(../common_img/icon_jenre.png); }
.jobs_list .box .jobs_status li.wage { background-image:url(../common_img/icon_wage.png); }
.jobs_list .box .jobs_status li.traffic { background-image:url(../common_img/icon_traffic.png); }

.jobs_list .box .jobs_place {
	margin-bottom: 100px;
	border-top: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
}

.jobs_list .box .jobs_place dl {
	padding: 20px 0;
	line-height: 40px;
	border-bottom: dotted 1px #eaeaea;
}

.jobs_list .box .jobs_place dl:last-child { border-bottom:none; }

.jobs_list .box .jobs_place dt {
	float: left;
	width: 200px;
	margin-right: 20px;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	background: #aaa8a8;
	border-radius: 4px;
}

.jobs_list .box .jobs_place dd {
	float: left;
	width: 760px;
}

.jobs_list .box .jobs_point {
	margin-bottom: 50px;
}

.jobs_list.detail .box .jobs_point {
	margin-bottom: 40px;
}

.jobs_list .box .jobs_point .content {
	float: left;
	width: 480px;
	padding: 50px 35px;
	background: #fafafa;
}

.jobs_list .box .jobs_point .content li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
	font-size: 1.5rem;
}

.jobs_list .box .jobs_point .content li:last-child { margin-bottom:0; }

.jobs_list .box .jobs_point .content li:before {
	content: '';
	position: absolute;
	top: 14px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #8fd127;
	border-radius: 50%;
}

.jobs_list .box .jobs_point .img {
	float: right;
	width: 500px;
	height: 270px;
	margin-top: 10px;
}

.jobs_list.detail .box .jobs_point .img { margin-top:0; }

.jobs_list .box .btn_list li:first-child {
	float: left;
	width: 480px;
}

.jobs_list .box .btn_list li:last-child {
	float: right;
	width: 500px;
}

.jobs_list .box .jobs_info {
	margin-bottom: 25px;
	border-top: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
}

.jobs_list .box .jobs_info dl {
	display: table;
	width: 100%;
	padding: 20px 0;
	border-bottom: dotted 1px #eaeaea;
}

.jobs_list .box .jobs_info dl:last-child { border-bottom:none; }

.jobs_list .box .jobs_info dt {
	display: table-cell;
	width: 200px;
	min-height: 40px;
	vertical-align: middle;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	line-height: 40px;
	background: #aaa8a8;
	border-radius: 4px;
}

.jobs_list .box .jobs_info dd {
	display: table-cell;
	width: 800px;
	padding-left: 20px;
	vertical-align: middle;
	line-height: 1.85;
}

.jobs_list.detail .btn {
	width: 1000px;
	margin: 0 auto;
}

.jobs_list.detail .btn .btn01 {
	height: 100px;
	font-size: 2rem;
	line-height: 100px;
	border-radius: 50px;
}

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

	.jobs_list .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }
	.jobs_list .box { padding:60px 0 65px; }
	.jobs_list .box > .catch { width:1000px; margin:0 auto 5px; }
	.jobs_list .box > .title { width:1000px; margin:0 auto 25px; }
	.jobs_list .box > article { width:1000px; margin:0 auto; }

}

/* ▼MESSAGE▼ */
.jobs_message {
	position: relative;
	margin-bottom: 100px;
	padding: 80px 115px;
	background: #fafafa;
}

.jobs_message:before, .jobs_message:after {
	content: '';
	position: absolute;
	bottom: -3px;
	right: -3px;
	background: #8fd127;
	z-index: 1;
}

.jobs_message:before {
	width: 3px;
	height: 250px;
}

.jobs_message:after {
	width: 250px;
	height: 3px;
}

.jobs_message .icon {
	position: absolute;
	top: -50px;
	left: -40px;
}

.jobs_message .title {
	margin-bottom: 35px;
	font-size: 2.6rem;
}

.jobs_message dl {
	margin-bottom: 30px;
	line-height: 2.1;
}

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

.jobs_message dt {
	font-size: 1.8rem;
	font-weight: 700;
	color: #8fd127;
}

/* ▼RECOMMEND▼ */
.jobs_recommend {
	position: relative;
	padding: 140px 0 150px;
}

.jobs_recommend:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 495px;
	background: #8fd127;
	z-index: 0;
}

.jobs_recommend.ex:before { bottom:195px; }

.jobs_recommend:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((1300 / 1800) * 100vw);
	height: 860px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.jobs_recommend.ex .bg {
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((900 / 1800) * 100vw);
	height: 195px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.jobs_recommend .sec_inner {
	position: relative;
	width: 1300px;
	margin: 0 auto;
	padding-left: 175px;
	z-index: 1;
}

.jobs_recommend.ex .sec_inner { padding:0 120px 0 175px; }

.jobs_recommend .icon {
	position: absolute;
	top: -140px;
	left: -5px;
}

.jobs_recommend .sec_title {
	margin-bottom: 75px;
	font-size: 3.6rem;
}

.jobs_recommend .box {
	width: 450px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.jobs_recommend .box.first { float:left; }
.jobs_recommend .box.last { float:right; }

.jobs_recommend .box a {
	display: block;
	color: #404040;
}

.jobs_recommend .box a:hover { opacity:1; }

.jobs_recommend .box .img {
	width: 100%;
	height: 280px;
}

.jobs_recommend .box a .img img {
	transition: .5s;
	backface-visibility: hidden;
}

.jobs_recommend .box a:hover .img img {
	-webkit-transform: translate(-50%, -50%) scale(1.15,1.15);
	transform: translate(-50%, -50%) scale(1.15,1.15);
}

.jobs_recommend .box .inner {
	padding: 30px 30px 25px;
	line-height: 1.8;
	background: #fff;
}

.jobs_recommend .box .title {
	margin-bottom: 20px;
	font-size: 2rem;
}

.jobs_recommend .box .date {
	float: left;
	width: 80px;
	font-size: 1.1rem;
	color: #878787;
	line-height: 26px;
	font-style: italic;
}

.jobs_recommend .box .jobs_tag {
	float: left;
	width: 310px;
}

.jobs_recommend .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
}

.jobs_recommend .ex_btn {
	width: 600px;
	margin: 0 auto;
}

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

	.jobs_recommend .sec_inner { width:auto; margin:0 calc((170 / 1800) * 100vw); padding-left:0; }
	.jobs_recommend.ex .sec_inner { margin:0 calc((200 / 1800) * 100vw); padding:0; }
	.jobs_recommend .icon { left:-100px; }

}

/*
COMPANY
***************************************************************************/
/* ▼PHILOSOPHY▼ */
.company_sec .philosophy {
	position: relative;
	text-align: center;
	padding: 120px 0 140px;
}

.company_sec .philosophy:before {
	content: '';
	position: absolute;
	bottom: 115px;
	right: 0;
	width: calc((740 / 1800) * 100vw);
	height: 900px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.company_sec .philosophy:after {
	content: '';
	position: absolute;
	bottom: 215px;
	right: 140px;
	width: calc((900 / 1800) * 100vw);
	height: 500px;
	background: #fafafa;
	z-index: 0;
}

.company_sec .philosophy .catch {
	margin-bottom: 40px;
	font-size: 3rem;
	font-weight: 400;
	color: #8fd127;
	line-height: 1.8;
}

.company_sec .philosophy .sec_title {
	margin-bottom: 50px;
	font-size: 5.4rem;
	color: #8fd127;
	line-height: 1.6;
}

.company_sec .philosophy .sec_txt {
	margin-bottom: 290px;
	line-height: 2.2;
}

.company_sec .philosophy .content {
	float: left;
	width: 580px;
	text-align: left;
	font-size: 1.6rem;
	line-height: 2.2;
}

.company_sec .philosophy .content .title {
	margin-bottom: 45px;
	font-size: 3.6rem;
	line-height: 1.65;
}

.company_sec .philosophy .img {
	float: right;
	width: 620px;
	margin-top: 50px;
}

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

	.company_sec .philosophy .content { width:480px; }

}

/* ▼GREETING▼ */
.company_sec .greeting {
	position: relative;
	padding-bottom: 210px;
}

.company_sec .greeting:before {
	content: '';
	position: absolute;
	top: 90px;
	right: 0;
	width: calc((1100 / 1800) * 100vw);
	height: 410px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.company_sec .greeting .sec_img {
	position: relative;
	width: 100%;
	height: 450px;
	margin: 0 auto 85px;
	background: url(../company/images/greeting_img.jpg) center top no-repeat;
	z-index: 1;
}

@media screen and (min-width: 1600px){

	.company_sec .greeting .sec_img {
		width: calc(100% - 200px);
		height: calc((450 / 1600) * 100vw);
		margin: 0 100px 85px;
		background: url(../company/images/greeting_img.jpg) center center no-repeat;
		background-size: cover;
	}

}

.company_sec .greeting .sec_inner {
	width: 900px;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 2.2;
}

.company_sec .greeting .sec_title {
	margin-bottom: 45px;
	font-size: 3.6rem;
	line-height: 1.65;
}

/* ▼GALLERY▼ */
.company_sec .gallery {
	position: relative;
	padding-bottom: 375px;
}

.company_sec .gallery .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.company_sec .gallery .content {
	position: absolute;
	top: 440px;
	left: 0;
	width: 480px;
	line-height: 2.2;
}

.company_sec .gallery .sec_title {
	margin-bottom: 45px;
	font-size: 3.6rem;
	line-height: 1.8;
}

.company_sec .gallery .img {
	position: relative;
	width: 900px;
	margin-left: 300px;
}

.company_sec .gallery .icon {
	position: absolute;
	top: -30px;
	left: -40px;
	z-index: 500;
}

.company_sec .gallery .gallery_slide {
	position: relative;
}

.company_sec .gallery .bx-wrapper {
	position: relative;
	margin: 0 auto;
}

.company_sec .gallery .bx-wrapper .bx-controls-direction a {
	position: absolute;
	bottom: 0;
	width: 40px;
	height: 40px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	z-index: 101;
}

.company_sec .gallery .bx-wrapper .bx-prev {
	right: 40px;
	background: url(../common_img/slide_prev.jpg) no-repeat;
}

.company_sec .gallery .bx-wrapper .bx-next {
	right: 0;
	background: url(../common_img/slide_next.jpg) no-repeat;
}

.company_sec .gallery .bx-pager {
	position: absolute;
	bottom: -40px;
	right: 0;
	width: 900px;
	text-align: right;
	z-index: 1000;
}

.company_sec .gallery .bx-pager div {
	display: inline-block;
}

.company_sec .gallery .bx-pager div a {
	display: block;
	width: 44px;
	height: 4px;
	margin-left: 4px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: #dedede;
}

.company_sec .gallery .bx-pager div a.active {
	background: #8fd127;
}

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

	.company_sec .gallery .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }
	.company_sec .gallery .img { margin-left:calc(100% - 900px); }

}

/* ▼INFO▼ */
.company_sec .info {
	position: relative;
}

.company_sec .info:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((1600 / 1800) * 100vw);
	height: 1860px;
	background: #fafafa;
	z-index: 0;
}

.company_sec .info:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 600px;
	background: #8fd127;
	z-index: 0;
}

.company_sec .info .sec_frame {
	position: relative;
	padding: 125px 0 150px;
	z-index: 1;
}

.company_sec .info .sec_frame:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: #8fd127;
	z-index: 0;
}

.company_sec .info .sec_frame:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((600 / 1800) * 100vw);
	height: 1200px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.company_sec .info .sec_inner {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	z-index: 1;
}

.company_sec .info .sec_title {
	margin-bottom: 100px;
	text-align: center;
	font-size: 3.6rem;
}

.company_sec .info .icon {
	position: absolute;
	top: -345px;
	right: -110px;
}

.company_sec .info .content {
	padding: 25px 50px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.company_sec .info .map {
	width: 100%;
	height: 500px;
	margin-bottom: 20px;
}

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

	.company_sec .info .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }
	.company_sec .info .icon { right:-40px; }

}

/* ▼SDGS▼ */
.company_sec .sdgs {
	position: relative;
	padding: 175px 0 180px;
	background: #fafafa;
}

.company_sec .sdgs:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((1300 / 1800) * 100vw);
	height: 1150px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.company_sec .sdgs:after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: #8fd127;
	z-index: 10;
}

.company_sec .sdgs .sec_inner {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	z-index: 1;
}

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

	.company_sec .sdgs .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.company_sec .sdgs .sec_title {
	margin-bottom: 60px;
	text-align: center;
	font-size: 2.8rem;
}

.company_sec .sdgs .content {
	padding: 60px 100px 80px;
	line-height: 2.15;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.company_sec .sdgs .list {
	margin-bottom: 65px;
}

.company_sec .sdgs .list dl {
	display: table;
	width: 100%;
	padding: 30px 0;
	border-bottom: solid 1px #eaeaea;
}

.company_sec .sdgs .list dt {
	display: table-cell;
	width: 166px;
	vertical-align: middle;
}

.company_sec .sdgs .list dd {
	display: table-cell;
	width: calc(100% - 166px);
	vertical-align: middle;
	padding: 0 35px;
}

/* ▼CODE▼ */
.company_sec .code {
	position: relative;
	padding: 185px 0 160px;
}

.company_sec .code:before {
	content: '';
	position: absolute;
	bottom: 570px;
	left: calc((105 / 1800) * 100vw);
	width: calc((800 / 1800) * 100vw);
	height: 600px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.company_sec .code:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((1300 / 1800) * 100vw);
	height: 595px;
	background: #fafafa;
	z-index: 0;
}

.company_sec .code .sec_inner {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	line-height: 2.15;
	z-index: 1;
}

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

	.company_sec .code .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.company_sec .code .sec_title {
	margin-bottom: 70px;
	text-align: center;
	font-size: 3.6rem;
}

.company_sec .code .icon {
	position: absolute;
	top: -65px;
	left: -125px;
}

.company_sec .code .content {
	padding: 80px 100px 60px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.company_sec .code .txt {
	padding-bottom: 70px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: #141414;
	line-height: 2;
}

.company_sec .code .txt li {
	margin-bottom: 30px;
}

.company_sec .code .list dl {
	margin-bottom: 35px;
	line-height: 2.4;
}

.company_sec .code .list dt {
	font-size: 1.7rem;
	font-weight: 700;
	color: #141414;
}

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

	.company_sec .code .icon { left:-40px; }

}

/*
INFORMATION
***************************************************************************/
/* ▼LIST▼ */
.info_sec {
	position: relative;
	padding: 90px 0 70px;
}

.info_sec:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((650 / 1800) * 100vw);
	height: 1110px;
	/* background: url(../common_img/bg01.png) repeat; */
	z-index: 0;
}

.info_sec:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1025 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.info_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

.info_sec .content {
	margin-bottom: 60px;
	padding: 35px 100px 55px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.info_list .box a {
	display: block;
	padding: 40px 0;
	font-weight: 400;
	color: #404040;
	border-bottom: solid 1px #eaeaea;
}

.info_list .box:last-child a { border-bottom:none; }

.info_list .box .date {
	position: relative;
	float: left;
	width: 180px;
	padding-left: 35px;
	font-style: italic;
}

.info_list .box .date:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #8fd127;
	border-radius: 50%;
}

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

	.info_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

/* ▼DETAIL▼ */
.info_sec.detail { padding:90px 0 50px; }

.info_sec.detail .content {
	margin-bottom: 85px;
	padding: 85px 100px;
}

.info_sec.detail .content .title {
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-size: 3.6rem;
	border-bottom: solid 1px #eaeaea;
}

.info_sec.detail .content .date {
	position: relative;
	margin-bottom: 55px;
	padding-left: 15px;
	font-style: italic;
}

.info_sec.detail .content .date:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #8fd127;
	border-radius: 50%;
}

/*
STRENGTHS
***************************************************************************/
/* ▼FEATURE▼ */
.strengths_sec .feature {
	padding: 170px 0 60px;
	text-align: center;
	line-height: 2.15;
}

.strengths_sec .feature .sec_title {
	margin-bottom: 30px;
	font-size: 5.4rem;
	color: #8fd127;
	line-height: 1.65;
}

/* ▼SUPPORT▼ */
.strengths_sec .support {
	position: relative;
	padding-bottom: 180px;
}

.strengths_sec .support:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((700 / 1800) * 100vw);
	height: 560px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.strengths_sec .support .sec_title {
	position: relative;
	text-align: center;
}

.strengths_sec .support .sec_title:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(((100% - 1000px) / 2) + 100px);
	height: 330px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.strengths_sec .support .box {
	position: relative;
}

.strengths_sec .support .box:first-child:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: #fafafa;
	z-index: 0;
}

.strengths_sec .support .box:first-child:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 600px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.strengths_sec .support .box:last-child:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc(((100% - 1000px) / 2) + 100px);
	height: 100%;
	background: #fafafa;
	z-index: 0;
}

.strengths_sec .support .box > .inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	z-index: 1;
}

.strengths_sec .support .box:first-child > .inner {
	padding: 105px 0 115px;
	background: #fafafa;
}

.strengths_sec .support .box:last-child > .inner {
	padding: 130px 0 140px;
}

.strengths_sec .support .box:first-child > .inner:after {
	content: '';
	position: absolute;
	bottom: -71px;
	left: 50%;
	width: 142px;
	height: 142px;
	margin-left: -71px;
	background: url(../strengths/images/support_parts.png) no-repeat;
	z-index: 10;
}

.strengths_sec .support .box .set {
	display: table;
	width: 100%;
	margin-bottom: 40px;
}

.strengths_sec .support .box .set .img {
	display: table-cell;
	width: 220px;
	vertical-align: middle;
}

.strengths_sec .support .box .set .img img { width:100%; }

.strengths_sec .support .box .set .content {
	display: table-cell;
	width: 780px;
	vertical-align: middle;
	line-height: 1.8;
}

.strengths_sec .support .box:first-child .set .content { padding:0 110px 0 40px; }
.strengths_sec .support .box:last-child .set .content { padding:0 40px 0 110px; }

.strengths_sec .support .box .set .icon {
	margin-bottom: 10px;
}

.strengths_sec .support .box .set .icon span {
	display: inline-block;
	vertical-align: -8px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
}

.strengths_sec .support .box .set .title {
	margin-bottom: 15px;
	font-size: 1.6rem;
	color: #ee426f;
}

.strengths_sec .support .link {
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
	width: 1260px;
	margin: 0 auto -50px;
	padding: 85px 0;
	background: #8fd127;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.strengths_sec .support .link .content {
	float: left;
	width: 520px;
	margin-left: calc((115 / 1800) * 100vw);
	text-align: center;
	color: #fff;
	line-height: 2.5;
}

.strengths_sec .support .link .title {
	margin-bottom: 10px;
	font-size: 3rem;
	color: #fff;
}

.strengths_sec .support .link .txt .line {
	display: inline-block;
	position: relative;
}

.strengths_sec .support .link .txt .line:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 1px;
}

.strengths_sec .support .link .btn {
	float: right;
	width: 400px;
	margin: 25px calc((160 / 1800) * 100vw) 0 0;
}

/*
EXPERIENCE
***************************************************************************/
/* ▼INTRO▼ */
.experience_sec .intro {
	position: relative;
	padding: 140px 0 230px;
}

.experience_sec .intro:before {
	content: '';
	position: absolute;
	top: -50px;
	right: 0;
	width: calc((745 / 1800) * 100vw);
	height: 950px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.experience_sec .intro .content {
	width: 500px;
	font-size: 1.6rem;
	line-height: 2.2;
}

.experience_sec .intro .sec_title {
	margin-bottom: 45px;
	font-size: 3.6rem;
	line-height: 1.65;
}

.experience_sec .intro .img {
	position: absolute;
	top: 140px;
	right: 0;
	width: calc((950 / 1800) * 100vw);
	z-index: 1;
}

.experience_sec .intro .img img { width:100%; }

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

	.experience_sec .intro .content { width:480px; }

}

/* ▼LIST▼ */
.experience_sec .list {
	position: relative;
	padding: 55px 0 100px;
}

.experience_sec .list:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 390px;
	background: #8fd127;
	z-index: 0;
}

.experience_sec .list:after {
	content: '';
	position: absolute;
	bottom: 50px;
	left: 0;
	width: calc((940 / 1800) * 100vw);
	height: 500px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.experience_sec .list .icon {
	position: absolute;
	top: -55px;
	left: -25px;
	z-index: 2;
}

.experience_sec .list .sec_title {
	margin: 0 0 30px 100px;
	font-size: 3.6rem;
}

.experience_sec .list .sec_txt {
	width: 1000px;
	margin: 0 0 210px 100px;
	line-height: 2.5;
}

.experience_sec .list .box {
	float: left;
	width: 400px;
	margin: 0 50px 50px 0;
}

.experience_sec .list .box:nth-child(3n) { margin-right:0; }

.experience_sec .list .box:nth-child(2n) {
	-webkit-transform: translateY(-60px);
	-moz-transform: translateY(-60px);
	-ms-transform: translateY(-60px);
	transform: translateY(-60px);
}

.experience_sec .list .box:nth-child(3n) {
	-webkit-transform: translateY(-120px);
	-moz-transform: translateY(-120px);
	-ms-transform: translateY(-120px);
	transform: translateY(-120px);
}

.experience_sec .list .box {
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.experience_sec .list .box .img img {
	width: 100%;
	border-radius: 20px 20px 0 0;
}

.experience_sec .list .box .inner {
	position: relative;
	padding: 30px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.experience_sec .list .box .txt {
	display: inline-block;
	position: absolute;
	top: -15px;
	left: 25px;
	padding: 0 20px;
	font-size: 1.3rem;
	color: #fff;
	line-height: 30px;
	background: #8fd127;
	border-radius: 15px;
}

.experience_sec .list .box .title {
	margin-bottom: 15px;
	font-size: 2.2rem;
	line-height: 1.35;
}

.experience_sec .list .box .name {
	font-size: 1.2rem;
	color: #878787;
}

.experience_sec .list .box .link {
	display: inline-block;
	position: absolute;
	bottom: 30px;
	right: 15px;
}

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

	.experience_sec .list .box { width:calc((100% - 100px) / 3); }

}

/* ▼DATA▼ */
.experience_sec .data {
	position: relative;
	padding: 30px 0;
}

.experience_sec .data:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1600 / 1800) * 100vw);
	height: 1px;
	background: #eaeaea;
	z-index: 0;
}

.experience_sec .data .sec_inner {
	width: 1000px;
	margin: 0 auto;
	text-align: right;
}

.experience_sec .data dl {
	display: inline-block;
	margin-left: 25px;
	line-height: 32px;
}

.experience_sec .data dt {
	display: inline-block;
	margin-right: 10px;
	padding: 0 12px;
	vertical-align: middle;
	font-size: 1.3rem;
	color: #fff;
	background: #8fd127;
	border-radius: 5px;
}

.experience_sec .data dd {
	display: inline-block;
	vertical-align: middle;
}

/* ▼DETAIL▼ */
.experience_content .sec_title {
	width: 1300px;
	margin: 85px auto 90px;
	text-align: center;
	font-size: 3.6rem;
	line-height: 1.55;
}

.experience_content .head {
	padding-bottom: 55px;
	border-bottom: solid 1px #eaeaea;
}

.experience_content .head:before {
	content: '';
	position: absolute;
	top: 90px;
	right: 30px;
	width: 1150px;
	height: 550px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.experience_content .head .content {
	position: relative;
	margin-left: 150px;
	line-height: 2.15;
	z-index: 1;
}

.experience_content .head .title {
	position: absolute;
	top: 145px;
	left: 10px;
	width: 520px;
	font-size: 3rem;
	line-height: 1.7;
	z-index: 2;
}

.experience_content .head .title span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 10px;
	background: #fff;
}

.experience_content .interview {
	position: relative;
	padding: 75px 0 125px;
}

.experience_content .interview:before {
	content: '';
	position: absolute;
	top: 150px;
	right: 0;
	width: calc((790 / 1800) * 100vw);
	height: 460px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.experience_content .interview .content {
	width: 600px;
}

.experience_content .interview .content.first {
	float: left;
	margin-left: 50px;
}

.experience_content .interview .content.last {
	float: right;
	margin-right: 10px;
	/*margin: 20px calc(((100vw - 1300px) / 2) + 20px) 0 0;*/
}

.experience_content .interview .content .box {
	margin-bottom: 80px;
	line-height: 2.15;
}

.experience_content .interview .title {
	position: relative;
	margin-bottom: 30px;
	padding-left: 70px;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.65;
}

.experience_content .interview .title:before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	width: 50px;
	height: 60px;
	background: url(../experiences/images/icon_q.png) no-repeat;
	z-index: 1;
}

.experience_content .interview .img {
	position: relative;
	float: left;
	width: calc((850 / 1800) * 100vw);
	height: 565px;
	overflow: hidden;
}

.experience_content .interview .img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.experience_content .message .sec_inner {
	position: relative;
	margin: 0 0 100px 35px;
	padding: 85px 145px 90px;
	line-height: 2.15;
	background: #fafafa;
}

.experience_content .message .sec_inner:before, .experience_content .message .sec_inner:after {
	content: '';
	position: absolute;
	bottom: -3px;
	right: -3px;
	background: #8fd127;
	z-index: 1;
}

.experience_content .message .sec_inner:before {
	width: 3px;
	height: 250px;
}

.experience_content .message .sec_inner:after {
	width: 250px;
	height: 3px;
}

.experience_content .message .icon {
	position: absolute;
	top: -50px;
	left: -40px;
}

.experience_content .message .title {
	margin-bottom: 30px;
	font-size: 2.6rem;
}

.experience_content .btn {
	width: 500px;
	margin: 0 auto 145px;
}

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

	.experience_content .interview .content.first { margin-left:0; }
	.experience_content .interview .content { width:500px; }
	/*.experience_content .interview .content.last { margin:20px calc((80 / 1800) * 100vw) 0 0; }*/
	.experience_content .interview .img { width:calc((900 / 1800) * 100vw); }

}

/*
FORCOMPANY
***************************************************************************/
/* ▼INTRO▼ */
.forcompany_sec .intro {
	padding: 180px 0 115px;
	text-align: center;
	line-height: 2.15;
}

.forcompany_sec .intro .sec_title {
	margin-bottom: 40px;
	font-size: 5.4rem;
	color: #8fd127;
	line-height: 1.65;
}

/* ▼FEATURE▼ */
.forcompany_sec .feature {
	position: relative;
	padding-bottom: 190px;
}

.forcompany_sec .feature:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((950 / 1800) * 100vw);
	height: 240px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.forcompany_sec .feature .box {
	position: relative;
	margin-bottom: 130px;
	z-index: 1;
}

.forcompany_sec .feature .box:before {
	content: '';
	position: absolute;
	height: 600px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.forcompany_sec .feature .box:nth-child(1):before {
	top: 70px;
	left: calc((150 / 1800) * 100vw);
	width: calc((1000 / 1800) * 100vw);
}

.forcompany_sec .feature .box:nth-child(2):before {
	bottom: -190px;
	right: calc((280 / 1800) * 100vw);
	width: calc((1000 / 1800) * 100vw);
}

.forcompany_sec .feature .box:nth-child(3):before {
	bottom: -190px;
	left: 0;
	width: calc((900 / 1800) * 100vw);
}

.forcompany_sec .feature .box .img {
	position: relative;
	width: calc((1000 / 1800) * 100vw);
	height: 600px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.forcompany_sec .feature .box:nth-child(2n+1) .img { float:left; }
.forcompany_sec .feature .box:nth-child(2n) .img { float:right; }

.forcompany_sec .feature .box:nth-child(1) .img { background-image:url(../forcompany/images/feature_img01.jpg); }
.forcompany_sec .feature .box:nth-child(2) .img { background-image:url(../forcompany/images/feature_img02.jpg); }
.forcompany_sec .feature .box:nth-child(3) .img { background-image:url(../forcompany/images/feature_img03.jpg); }
.forcompany_sec .feature .box:nth-child(4) .img { background-image:url(../forcompany/images/feature_img04.jpg); }

.forcompany_sec .feature .box .content {
	position: relative;
	width: calc((600 / 1800) * 100vw);
	line-height: 2.15;
	z-index: 1;
}

.forcompany_sec .feature .box:nth-child(2n+1) .content {
	float: right;
	margin: 150px calc((120 / 1800) * 100vw) 0 0;
}

.forcompany_sec .feature .box:nth-child(2n) .content {
	float: left;
	margin: 150px 0 0 calc((120 / 1800) * 100vw);
}

.forcompany_sec .feature .box:first-child .content { margin-top:110px!important; }

.forcompany_sec .feature .box .title {
	padding-bottom: 45px;
	font-size: 3rem;
	line-height: 1.7;
}

.forcompany_sec .feature .box .title span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 20px;
	background: #fff;
}

.forcompany_sec .feature .box:nth-child(2n+1) .title {
	-webkit-transform: translateX(calc((-180 / 1800) * 100vw));
	-moz-transform: translateX(calc((-180 / 1800) * 100vw));
	-ms-transform: translateX(calc((-180 / 1800) * 100vw));
	transform: translateX(calc((-180 / 1800) * 100vw));
}

.forcompany_sec .feature .box:nth-child(2n) .title {
	-webkit-transform: translateX(calc((380 / 1800) * 100vw));
	-moz-transform: translateX(calc((380 / 1800) * 100vw));
	-ms-transform: translateX(calc((380 / 1800) * 100vw));
	transform: translateX(calc((380 / 1800) * 100vw));
}

/* ▼PLAN▼ */
.forcompany_sec .plan {
	position: relative;
	padding-bottom: 160px;
}

.forcompany_sec .plan:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 670px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.forcompany_sec .plan .title_box {
	position: relative;
	width: 100%;
	height: 550px;
	margin-bottom: 40px;
	background: url(../forcompany/images/plan_bg.jpg) center top no-repeat;
	background-size: cover;
}

.forcompany_sec .plan .title_box:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: #8fd127;
	z-index: 10;
}

.forcompany_sec .plan .title_box .inner {
	position: absolute;
	top: 190px;
	left: 50%;
	width: 50%;
	padding-right: calc((100 / 1800) * 100vw);
}

.forcompany_sec .plan .title_box .sec_title {
	margin-bottom: 30px;
	font-size: 3.6rem;
}

.forcompany_sec .plan .list_box {
	position: relative;
	width: 1240px;
	margin: 0 auto;
	z-index: 1;
}

.forcompany_sec .plan .list_box .set {
	float: left;
	width: 360px;
	margin-right: 80px;
	text-align: center;
}

.forcompany_sec .plan .list_box .set:last-child { margin-right:0; }

.forcompany_sec .plan .list_box .set:nth-child(2) {
	-webkit-transform: translateY(-70px);
	-moz-transform: translateY(-70px);
	-ms-transform: translateY(-70px);
	transform: translateY(-70px);
}

.forcompany_sec .plan .list_box .set:nth-child(3) {
	-webkit-transform: translateY(-140px);
	-moz-transform: translateY(-140px);
	-ms-transform: translateY(-140px);
	transform: translateY(-140px);
}

.forcompany_sec .plan .list_box .img img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.forcompany_sec .plan .list_box .title {
	margin: 30px 0 20px;
	font-size: 2.6rem;
	color: #8fd127;
}

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

	.forcompany_sec .plan .list_box { width:auto; margin:0 calc((80 / 1800) * 100vw); }
	.forcompany_sec .plan .list_box .set {
		width: calc((100% - 100px) / 3);
		margin-right: 50px;
	}

}

/* ▼VOICE▼ */
.forcompany_sec .voice {
	position: relative;
	padding-bottom: 65px;
}

.forcompany_sec .voice:before {
	content: '';
	position: absolute;
	top: 405px;
	left: 0;
	width: calc((1000 / 1800) * 100vw);
	height: 540px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.forcompany_sec .voice .icon {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: 10;
}

.forcompany_sec .voice .sec_title {
	margin: 30px 0 40px;
	text-align: center;
	font-size: 3.6rem;
}

.forcompany_sec .voice .sec_txt {
	margin-bottom: 70px;
	text-align: center;
	line-height: 2.15;
}

.forcompany_sec .voice .box {
	position: relative;
	margin: 0 0 40px 40px;
	padding: 85px 145px;
	background: #fafafa;
}

.forcompany_sec .voice .box:before, .forcompany_sec .voice .box:after {
	content: '';
	position: absolute;
	background: #8fd127;
	z-index: 1;
}

.forcompany_sec .voice .box:before {
	width: 3px;
	height: 250px;
}

.forcompany_sec .voice .box:after {
	width: 250px;
	height: 3px;
}

.forcompany_sec .voice .box:nth-child(2n+1):before, .forcompany_sec .voice .box:nth-child(2n+1):after { top:-3px; right:-3px; }
.forcompany_sec .voice .box:nth-child(2n):before, .forcompany_sec .voice .box:nth-child(2n):after { top:-3px; left:-3px; }

.forcompany_sec .voice .title {
	position: relative;
	margin-bottom: 35px;
	font-size: 2.6rem;
	z-index: 1;
}

.forcompany_sec .voice .inner {
	position: relative;
	line-height: 2.15;
	z-index: 1;
}

.forcompany_sec .voice .list dl {
	display: inline-block;
	margin-right: 40px;
	line-height: 32px;
}

.forcompany_sec .voice .list dt {
	display: inline-block;
	margin-right: 10px;
	padding: 0 35px;
	vertical-align: middle;
	font-size: 1.3rem;
	color: #fff;
	background: #8fd127;
	border-radius: 5px;
}

.forcompany_sec .voice .list dd {
	display: inline-block;
	vertical-align: middle;
}

/* ▼FLOW▼ */
.forcompany_sec .flow {
	position: relative;
	padding: 75px 0 150px;
}

.forcompany_sec .flow:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((900 / 1800) * 100vw);
	height: 590px;
	background: #8fd127;
	z-index: 0;
}

.forcompany_sec .flow:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 800px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.forcompany_sec .flow .img {
	position: absolute;
	top: 75px;
	right: 0;
	width: 100%;
	height: 645px;
	background: url(../forcompany/images/flow_bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: 1;
}

@media screen and (min-width: 1700px){

	.forcompany_sec .flow .img {
		width: calc((1700 / 1800) * 100vw);
	}

}

.forcompany_sec .flow .icon {
	position: absolute;
	top: 0;
	left: 0;
}

.forcompany_sec .flow .sec_title {
	padding: 125px 0 115px;
	text-align: center;
	font-size: 3.6rem;
	color: #fff;
}

.forcompany_sec .flow .box {
	position: relative;
	float: left;
	width: 360px;
	margin-right: 60px;
	padding: 40px 40px 40px;
	text-align: center;
	line-height: 1.8;
	background: #fff;
	border-top: solid 4px #8fd127;
	border-radius: 0 0 20px 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.forcompany_sec .flow .box2 {
	position: relative;
	float: left;
	width: 360px;
	margin-right: 60px;
	padding: 40px 40px 40px;
	text-align: center;40
	line-height: 1.8;
	background: #fff;
	border-top: solid 4px #8fd127;
	border-radius: 0 0 20px 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.forcompany_sec .flow .box:last-child { margin-right:0; }

.forcompany_sec .flow .box:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -36px;
	width: 15px;
	height: 28px;
	background: url(../forcompany/images/flow_icon.png) no-repeat;
}

.forcompany_sec .flow .box2:after {
	content: '';
	position: absolute;
	top: 50%;
	left: -46px;
	width: 15px;
	height: 28px;
	background: url(../forcompany/images/flow_icon.png) no-repeat;
}

.forcompany_sec .flow .box:nth-child(3):after { display:none; }
.forcompany_sec .flow .box:last-child:after { display:none; }

.forcompany_sec .flow .title {
	margin: 30px 0 20px;
	font-size: 2rem;
}

.forcompany_sec .flow .btn {
	width: 450px;
	margin: 0 auto;
}

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

	.forcompany_sec .flow .box { width:320px; }
	.forcompany_sec .flow .box2 { width:320px; }

}

/* ▼MODAL▼ */
.forcompany_modal .box {
	position: relative;
	margin-bottom: 15px;
	padding: 10px 0 5px 80px;
	line-height: 1.8;
}

.forcompany_modal .box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	width: 1px;
	height: 100%;
	background: #8fd127;
}

.forcompany_modal .box:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 60px;
	z-index: 1;
}

.forcompany_modal .box:nth-child(1):after { background:url(../forcompany/images/flow_num01.jpg) no-repeat; }
.forcompany_modal .box:nth-child(2):after { background:url(../forcompany/images/flow_num02.jpg) no-repeat; }
.forcompany_modal .box:nth-child(3):after { background:url(../forcompany/images/flow_num03.jpg) no-repeat; }
.forcompany_modal .box:nth-child(4):after { background:url(../forcompany/images/flow_num04.jpg) no-repeat; }

.forcompany_modal .box .title {
	margin-bottom: 20px;
	font-size: 2rem;
}

/*
STAFF
***************************************************************************/
/* ▼LIST▼ */
.staff_sec .list {
	position: relative;
	padding: 130px 0 120px;
}

.staff_sec .list.detail { padding:0 0 150px; }

.staff_sec .list:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 470px;
	background: #8fd127;
	z-index: 0;
}

.staff_sec .list.detail:before { height:430px; }

.staff_sec .list:after {
	content: '';
	position: absolute;
	bottom: 95px;
	left: 0;
	width: calc((800 / 1800) * 100vw);
	height: 555px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.staff_sec .list.detail:after {
	width: calc((1300 / 1800) * 100vw);
	height: 520px;
}

.staff_sec .list .sec_inner {
	position: relative;
	width: 1260px;
	margin: 0 auto;
	z-index: 1;
}

.staff_sec .list.detail .sec_inner { width:1300px; }

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

	.staff_sec .list .sec_inner, .staff_sec .list.detail .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.staff_sec .list .sec_txt {
	margin: 0 0 180px 130px;
	line-height: 2.5;
}

.staff_sec .list .box {
	float: left;
	width: 380px;
	margin: 0 60px 60px 0;
}

.staff_sec .list.detail .box { width:530px; margin:0; }
.staff_sec .list.detail .box:last-child { float:right; }

.staff_sec .list .box:nth-child(3n) { margin-right:0; }

.staff_sec .list .box:nth-child(2n) {
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.staff_sec .list .box:nth-child(3n) {
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px);
}

.staff_sec .list.detail .box:nth-child(2n), .staff_sec .list.detail .box:nth-child(3n) {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.staff_sec .list .box {
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.staff_sec .list .box .img img {
	width: 100%;
	border-radius: 20px 20px 0 0;
}

.staff_sec .list .box .inner {
	position: relative;
	padding: 25px 30px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.staff_sec .list .box .txt {
	font-size: 1.2rem;
	font-weight: 700;
	color: #878787;
}

.staff_sec .list .box .title {
	font-size: 2.2rem;
}

.staff_sec .list .box .title span {
	margin-left: 15px;
	font-size: 1.2rem;
	color: #878787;
}

.staff_sec .list .box .name {
	font-size: 1.2rem;
	color: #878787;
}

.staff_sec .list .box .link {
	display: inline-block;
	position: absolute;
	bottom: 25px;
	right: 15px;
}

.staff_sec .list .btn {
	position: absolute;
	top: 180px;
	left: 50%;
	margin-left: -30px;
}

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

	.staff_sec .list .box { width:calc((100% - 120px) / 3); }
	.staff_sec .list.detail .box { width:calc((100% - 120px) / 2); }

}

/* ▼INTRO▼ */
.staff_sec .intro {
	position: absolute;
	top: -125px;
	right: 0;
	padding: 120px calc((100 / 1800) * 100vw);
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	z-index: 10;
}

.staff_sec .intro .title {
	margin-top: 5px;
	font-size: 3.4rem;
	color: #fff;
}

.staff_sec .intro .title span {
	margin-left: 20px;
	font-size: 1.6rem;
	font-weight: 400;
}

/* ▼INTEWVIEW▼ */
.staff_sec .interview {
	position: relative;
	padding-bottom: 110px;
}

.staff_sec .interview:before {
	content: '';
	position: absolute;
	bottom: 190px;
	right: 0;
	width: calc((1400 / 1800) * 100vw);
	height: 770px;
	background: #fafafa;
	z-index: 0;
}

.staff_sec .interview .box {
	position: relative;
	margin-bottom: 190px;
	z-index: 1;
}

.staff_sec .interview .box:first-child { padding-top:170px; }
.staff_sec .interview .box:last-child { padding-top:20px; }

.staff_sec .interview .box:before {
	content: '';
	position: absolute;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.staff_sec .interview .box:first-child:before {
	top: 0;
	right: 0;
	width: calc((780 / 1800) * 100vw);
	height: 1080px;
}

.staff_sec .interview .box:last-child:before {
	top: -70px;
	left: 0;
	width: calc((700 / 1800) * 100vw);
	height: 570px;
}

.staff_sec .interview .box .img {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.staff_sec .interview .box:first-child .img {
	float: right;
	width: calc((850 / 1800) * 100vw);
	height: 600px;
	margin-top: 200px;
}

.staff_sec .interview .box:last-child .img {
	float: left;
	width: calc((750 / 1800) * 100vw);
	height: 550px;
	margin-left: calc((80 / 1800) * 100vw);
}

.staff_sec .interview .box .img:before, .staff_sec .interview .box .img:after {
	content: '';
	position: absolute;
	background: #8fd127;
	z-index: 1;
}

.staff_sec .interview .box .img:before {
	width: 3px;
	height: 300px;
}

.staff_sec .interview .box .img:after {
	width: 300px;
	height: 3px;
}

.staff_sec .interview .box:first-child .img:before, .staff_sec .interview .box:first-child .img:after { bottom:-3px; left:-3px; }
.staff_sec .interview .box:last-child .img:before, .staff_sec .interview .box:last-child .img:after { top:-3px; right:-3px; }

.staff_sec .interview .box .content {
	position: relative;
	width: calc((700 / 1800) * 100vw);
	line-height: 2.15;
	z-index: 1;
}

.staff_sec .interview .box:first-child .content {
	float: left;
	margin-left: calc((125 / 1800) * 100vw);
}

.staff_sec .interview .box:last-child .content {
	float: right;
	margin-right: calc((125 / 1800) * 100vw);
}

.staff_sec .interview .box .sec_title {
	margin-bottom: 40px;
	font-size: 4.8rem;
	color: #8fd127;
}

.staff_sec .interview .box .title {
	margin-bottom: 40px;
	font-size: 3.6rem;
	font-weight: 500;
}

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

	.staff_sec .interview .box .sec_title { font-size:4rem; }

}

/*
GUIDE
***************************************************************************/
/* ▼ANCHOR LIST▼ */
.anc_list.guide .inner {
	padding: 30px 0 45px;
}

.anc_list.guide .sec_inner {
	width: 1000px;
	margin: 0 auto;
	font-weight: 400;
	color: #fff;
}

.anc_list.guide .stitle {
	margin-bottom: 25px;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
}

.anc_list.guide .box {
	float: left;
	width: 180px;
	margin-right: 25px;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5;
}

.anc_list.guide .box:last-child { margin-right:0; }

.anc_list.guide .box a {
	display: block;
	color: #fff;
}

.anc_list.guide .box .img {
	margin-bottom: 8px;
}

/* ▼CONSULT▼ */
.guide_consult {
	position: relative;
	height: 730px;
	margin-bottom: 185px;
	background: url(../guide/images/consult_bg.jpg) center top no-repeat;
	background-size: cover;
}

.guide_consult .sec_inner {
	position: absolute;
	top: 145px;
	right: 0;
	width: 50%;
	font-size: 1.6rem;
}

.guide_consult .title {
	margin: 0 0 25px 75px;
	font-size: 4rem;
	color: #8fd127;
}

.guide_consult .title.ex {
	margin: 0 0 25px;
	text-align: center;
}

.guide_consult .txt {
	margin: 0 0 45px 75px;
	line-height: 2.1;
}

.guide_consult .txt.ex {
	margin: 0 0 45px;
	text-align: center;
}

.guide_consult .link a {
	display: block;
	color: #fff;
	line-height: 1.9;
	padding: 65px 75px 70px;
	background: #8fd127 url(../common_img/arrow01_white.png) right 50px center no-repeat;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.guide_consult .box {
	box-sizing: border-box;
	position: absolute;
	top: 220px;
	right: 0;
	width: 1000px;
	padding: 45px 70px;
	text-align: center;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 10;
}

.guide_consult .box dl {
	float: left;
}

.guide_consult .box dl:first-child { width:455px; padding:15px 45px 15px 0; }
.guide_consult .box dl:last-child { width:395px; padding:15px 0 15px 45px; border-left:solid 1px #fff; }

.guide_consult .box dt {
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: 700;
}

/* ▼LIST▼ */
.guide_list {
	position: relative;
	padding: 35px 0 135px;
}

.guide_list:before {
	content: '';
	position: absolute;
	top: -185px;
	right: 0;
	width: calc((1200 / 1800) * 100vw);
	height: calc(100% + 185px);
	background: #fafafa;
	z-index: 0;
}

.guide_list .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

.guide_list .box {
	float: left;
	width: 575px;
	margin: 0 50px 70px 0;
	font-size: 1.4rem;
}

.guide_list .box:nth-child(2n) { margin-right:0; }

.guide_list .box a {
	display: block;
	color: #404040;
}

.guide_list .box .img img {
	display: block;
	margin-bottom: 25px;
	border-radius: 20px;
}

.guide_list .box .title {
	margin-bottom: 15px;
	font-size: 2.4rem;
}

/* ▼INTRO▼ */
.guide_intro {
	position: relative;
	padding: 190px 0 180px;
}

.guide_intro.flow01 { padding-bottom:0; }
.guide_intro.regist01, .guide_intro.regist02 { padding-bottom:140px; }

.guide_intro:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((740 / 1800) * 100vw);
	height: 100%;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_intro .inner {
	position: relative;
	z-index: 1;
}

.guide_intro .img {
	position: absolute;
	top: 0;
	right: 0;
	width: calc((860 / 1800) * 100vw);
	height: 550px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.guide_intro.merit .img { background-image:url(../guide/images/merit_intro.jpg); }
.guide_intro.start .img { background-image:url(../guide/images/start_intro.jpg); }
.guide_intro.flow01 .img { height:820px; background-image:url(../guide/images/flow_intro01.jpg); }
.guide_intro.flow02 .img { height:480px; background-image:url(../guide/images/flow_intro02.jpg); }
.guide_intro.regist01 .img { background-image:url(../guide/images/regist_intro01.jpg); }
.guide_intro.regist02 .img { background-image:url(../guide/images/regist_intro02.jpg); }

.guide_intro .content {
	width: 500px;
	height: 550px;
	padding-top: 30px;
	font-size: 1.6rem;
	line-height: 2.2;
}

.guide_intro.flow01 .content { height:auto; margin-bottom:95px; }
.guide_intro.flow02 .content { height:480px; }

.guide_intro .title {
	margin-bottom: 50px;
	font-size: 3.6rem;
	line-height: 1.6;
}

.guide_intro.flow02 .content a {
	box-sizing: border-box;
	height: 80px;
	padding-top: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	border-radius: 40px;
}

/* ▼FIRST▼ */
.guide_first .link {
	position: relative;
	padding-top: 190px;
}

.guide_first .link:last-child {
	-webkit-transform: translateY(-90px);
	-moz-transform: translateY(-90px);
	-ms-transform: translateY(-90px);
	transform: translateY(-90px);
}

.guide_first .link:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((740 / 1800) * 100vw);
	height: 1050px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_first .link:last-child:after {
	content: '';
	position: absolute;
	top: 700px;
	right: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 1345px;
	background: #fafafa;
	z-index: 0;
}

.guide_first .link .intro {
	position: relative;
	z-index: 1;
}

.guide_first .link:nth-child(1) .intro {
	height: 550px;
	margin-bottom: 180px;
}

.guide_first .link:nth-child(2) .intro {
	height: 510px;
	margin-bottom: 220px;
}

.guide_first .link .intro .img {
	position: absolute;
	top: 0;
	right: 0;
	width: calc((860 / 1800) * 100vw);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.guide_first .link:nth-child(1) .intro .img {
	height: 550px;
	background-image: url(../guide/images/first_img01.jpg);
}

.guide_first .link:nth-child(2) .intro .img {
	height: 510px;
	background-image: url(../guide/images/first_img02.jpg);
}

.guide_first .link .intro .content {
	width: 500px;
	padding-top: 30px;
	font-size: 1.6rem;
	line-height: 2.2;
}

.guide_first .link .intro .title {
	margin-bottom: 110px;
	font-size: 3.6rem;
	line-height: 1.6;
}

.guide_first .link .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

.guide_first .link .box {
	float: left;
	width: 575px;
	margin: 0 50px 70px 0;
	font-size: 1.4rem;
}

.guide_first .link .box:nth-child(2n) { margin-right:0; }

.guide_first .link .box a {
	display: block;
	color: #404040;
}

.guide_first .link .box .img img {
	display: block;
	margin-bottom: 25px;
	border-radius: 20px;
}

.guide_first .link .box .title {
	margin-bottom: 15px;
	font-size: 2.4rem;
}

.guide_first .link .box.ex {
	height: 320px;
	padding-top: 45px;
	text-align: center;
	line-height: 2;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.guide_first .link .box.ex .title {
	color: #8fd127;
}

.guide_first .link .box.ex .btn {
	width: 300px;
	margin: 0 auto;
}

/* ▼MERIT▼ */
.guide_merit .about {
	position: relative;
	padding: 170px 0 100px;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.4;
	background: #fafafa;
}

.guide_merit .about:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: #8fd127;
	z-index: 0;
}

.guide_merit .about .sec_inner {
	width: 1200px;
	margin: 0 auto;
}

.guide_merit .about .sec_title {
	margin-bottom: 30px;
	font-size: 3.6rem;
}

.guide_merit .about .box {
	margin-bottom: 90px;
	padding: 85px 100px 115px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.guide_merit .about .title {
	margin-bottom: 30px;
	font-size: 3.4rem;
	color: #8fd127;
}

.guide_merit .merit_box {
	display: table;
	width: 100%;
	padding: 7px 0;
	border-bottom: solid 2px #e9e9e9;
}

.guide_merit .merit_box:last-child { margin-bottom:30px; }

.guide_merit .merit_title {
	display: table-cell;
	width: 220px;
	vertical-align: middle;
	text-align: center;
	font-size: 1.7rem;
	color: #141414;
}

.guide_merit ul {
	display: table-cell;
	width: 390px;
	padding: 30px 25px 30px 30px;
	vertical-align: middle;
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.8;
}

.guide_merit .merit_list {
	background: #eaf8d5;
	border-right: solid 5px #fff;
}

.guide_merit .demerit_list {
	background: #e9e9e9;
	border-left: solid 5px #fff;
}

/* ▼START▼ */
.guide_start .step {
	position: relative;
	padding-bottom: 200px;
}

.guide_start .step:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((740 / 1800) * 100vw);
	height: 130px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_start .step:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 1050px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_start .step .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

/* ▼FLOW▼ */
.guide_flow .step {
	position: relative;
	padding-bottom: 200px;
}

.guide_flow .step:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((740 / 1800) * 100vw);
	height: 460px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_flow .step:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 625px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_flow .step .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

/* ▼STEP▼ */
.guide_step_box {
	position: relative;
	margin-bottom: 80px;
	padding: 80px 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 2;
}

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

.guide_step_sbox {
	position: relative;
	float: left;
	width: 580px;
	margin: 0 40px 80px 0;
	padding: 60px 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 2;
}

.guide_step_sbox:nth-child(2n) { margin-right:0; }

.guide_step_sbox.first {
	padding: 0;
	text-align: center;
}

.guide_step_sbox.first .sec_title {
	padding: 50px 0 35px;
	font-size: 3rem;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 20px 0 0;
}

.guide_step_sbox.first .sec_title .txt {
	display: block;
	width: 400px;
	margin: 0 auto 15px;
	font-size: 1.6rem;
	color: #8fd127;
	line-height: 32px;
	background: #fff;
}

.guide_step_sbox.first .sec_title .stxt {
	display: block;
	font-size: 2.6rem;
	font-weight: 300;
}

.guide_step_sbox.first .inner {
	height: 200px;
	padding-top: 30px;
	line-height: 1.85;
}

.guide_step_sbox.first .inner .txt {
	margin-bottom: 20px;
	font-size: 2.6rem;
	font-weight: 700;
	color: #ee426f;
}

.guide_step_box .content {
	float: right;
	width: 530px;
}

.guide_step_sbox .content {
	float: right;
	width: 250px;
	line-height: 1.85;
}

.guide_step_box .title, .guide_step_sbox .title {
	margin-bottom: 15px;
	font-size: 2.6rem;
}

.guide_step_box .title img, .guide_step_sbox .title img { display:block; }

.guide_step_box .sbtn li:first-child { width:300px; }
.guide_step_box .sbtn li:last-child { width:210px; }

.guide_step_box .btn .btn01 {
	box-sizing: border-box;
	height: 90px;
	padding-top: 15px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	border-radius: 45px;
}

.guide_step_box:before, .guide_step_sbox:before {
	content: '';
	position: absolute;
	bottom: -80px;
	left: 50%;
	width: 2px;
	height: 80px;
	margin-left: -1px;
	background: #d1d1d1;
	z-index: 1;
}

.guide_step_sbox.ex:before {
	bottom: -700px;
	height: 700px;
}

.guide_step_sbox.sub:before {
	content: '';
	position: absolute;
	left: calc(100% + 1px);
	top: 50%;
	width: 40px;
	height: 2px;
	margin-top: -1px;
	background: #d1d1d1;
	z-index: 1;
}

.guide_step_box:last-child:before { display:none; }

/* ▼FAQ▼ */
.faq_sec.guide {
	padding: 150px 0 180px;
	background: #f3f3f3;
}

.faq_sec.guide .sec_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 100px;
}

.faq_sec.guide .link {
	margin-left: 50%;
}

.faq_sec.guide .link a {
	display: block;
	padding: 46px 70px 50px;
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	background: #8fd127 url(../common_img/arrow01_white.png) right 50px center no-repeat;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

/* ▼STRENGTH▼ */
.guide_flow .strength {
	position: relative;
	padding-bottom: 100px;
}

.guide_flow .strength:before {
	content: '';
	position: absolute;
	top: 730px;
	left: 0;
	width: calc((1400 / 1800) * 100vw);
	height: 1175px;
	background: #fafafa;
	z-index: 0;
}

.guide_flow .strength:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((600 / 1800) * 100vw);
	height: 600px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_flow .strength > .title {
	position: relative;
	margin-bottom: 150px;
	padding-bottom: 100px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 300;
	color: #fff;
	line-height: 2.2;
}

.guide_flow .strength > .title:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 230px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_flow .strength > .title:after {
	content: '';
	position: absolute;
	top: 230px;
	left: 0;
	width: 100%;
	height: 500px;
	background: #8fd127;
	z-index: 0;
}

.guide_flow .strength .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

.guide_flow .strength .box {
	float: left;
	width: 370px;
	margin: 0 45px 65px 0;
	line-height: 1.8;
}

.guide_flow .strength .box:nth-child(3n) { margin-right:0; }

.guide_flow .strength .box .img {
	margin-bottom: 30px;
}

.guide_flow .strength .box .title {
	margin-bottom: 10px;
	font-size: 2.6rem;
	letter-spacing: -0.02rem;
}

/* ▼HOWTO▼ */
.guide_howto {
	position: relative;
	padding: 150px 0 125px;
	background: #fafafa;
}

.guide_howto:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1030px;
	background: #fff;
	z-index: 0;
}

.guide_howto .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

.howto_anc {
	margin-bottom: 100px;
	text-align: center;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.howto_anc .title {
	padding: 25px 0;
	font-size: 2.4rem;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 20px 0 0;
}

.howto_anc ul {
	padding: 40px 0 60px;
}

.howto_anc li {
	display: inline-block;
	position: relative;
	margin: 0 15px;
	font-size: 1.5rem;
}

.howto_anc li a { color:#404040; }

.howto_anc li:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 4px;
	height: 4px;
	margin-left: -2px;
	background: #8fd127;
	border-radius: 50%;
}

.guide_howto .box {
	margin-bottom: 90px;
	padding: 80px 100px 90px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

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

.guide_howto .box .title {
	margin-bottom: 30px;
	font-size: 3.6rem;
}

.guide_howto .box .content {
	float: right;
	width: 520px;
	margin-top: 20px;
}

.guide_howto .box .set {
	margin-bottom: 55px;
	padding-bottom: 55px;
	border-bottom: solid 1px #eaeaea;
}

.guide_howto .box .set:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* ▼REGIST▼ */
.guide_regist .point {
	position: relative;
	padding: 90px 0 160px;
	text-align: center;
	font-size: 1.6rem;
	background: #8fd127;
}

.guide_regist .point:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 490px;
	background: #fff;
	z-index: 0;
}

.guide_regist .point:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1000 / 1800) * 100vw);
	height: 875px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_regist .point .sec_inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	z-index: 1;
}

.guide_regist .point .box {
	float: left;
	width: 480px;
	margin: 0 40px 40px 0;
	padding: 50px 80px;
	font-size: 1.4rem;
	line-height: 1.8;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.guide_regist .point .box:nth-child(2n) { margin-right:0; }

.guide_regist .point .box:last-child {
	width: 100%;
	margin: 0;
	padding: 50px 90px;
}

.guide_regist .point .box .head {
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 300;
	color: #fff;
	line-height: 40px;
	background: #ee426f;
	border-radius: 20px;
}

.guide_regist .point .box .head span {
	margin-left: 5px;
	font-size: 2.4rem;
	font-weight: 700;
}

.guide_regist .point .box .title {
	margin-bottom: 25px;
	font-size: 2.4rem;
	color: #404040;
	line-height: 1.4;
}

.guide_regist .step {
	position: relative;
	padding: 155px 0 190px;
	border-bottom: solid 1px #eaeaea;
}

.guide_regist .step:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 840px;
	background: #fafafa;
	z-index: 0;
}

.guide_regist .step:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 550px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.guide_regist .step .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

/*
FAQ
***************************************************************************/
.faq_sec {
	padding: 80px 0;
}

.faq_sec .sec_inner {
	padding: 80px 150px;
}

.faq_sec .sec_title {
	margin-bottom: 60px;
	font-size: 3.6rem;
}

.faq_sec .box .title {
	position: relative;
	padding: 30px 80px 30px 60px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	border-bottom: solid 1px #eaeaea;
	cursor: pointer;
}

.faq_sec .box .title:before {
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
	width: 50px;
	height: 60px;
	background: url(../faq/images/icon_q.png) no-repeat;
}

.faq_sec .box .title:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	background: url(../common_img/btn_plus.png) no-repeat;
}

.faq_sec .box .title.opened:after { background:url(../common_img/btn_minus.png) no-repeat; }

.faq_sec .box .inner {
	display: none;
	padding: 30px 80px 70px 60px;
	line-height: 2.15;
	background: url(../faq/images/icon_a.png) left 12px no-repeat;
}

.faq_sec .contact {
	position: relative;
	margin: 90px 0 80px 35px;
	padding: 80px 80px 75px;
	text-align: center;
	line-height: 2.15;
	background: #fafafa;
}

.faq_sec .contact .icon {
	position: absolute;
	top: -55px;
	left: -40px;
}

.faq_sec .contact:before, .faq_sec .contact:after {
	content: '';
	position: absolute;
	bottom: -3px;
	right: -3px;
	background: #8fd127;
	z-index: 1;
}

.faq_sec .contact:before {
	width: 3px;
	height: 250px;
}

.faq_sec .contact:after {
	width: 250px;
	height: 3px;
}

.faq_sec .contact .title {
	margin-bottom: 30px;
	font-size: 2.6rem;
}

.faq_sec .contact .btn {
	width: 400px;
	margin: 0 auto;
}

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

	.faq_sec .sec_inner { width:1000px; margin:0 auto; padding:80px 0; }

}

/*
PP
***************************************************************************/
.pp_sec {
	position: relative;
	padding: 90px 0 170px;
	font-weight: 400;
}

.pp_sec:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1015 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.pp_sec:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((650 / 1800) * 100vw);
	height: 5580px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.pp_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 70px 100px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.pp_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.pp_sec .head {
	position: absolute;
	top: 70px;
	right: 100px;
	text-align: right;
	line-height: 2.2;
}

.pp_sec .foot {
	padding-top: 45px;
	border-top: solid 1px #eaeaea;
}

/*
SITEMAP
***************************************************************************/
.sitemap_sec {
	position: relative;
	padding: 90px 0 120px;
	font-weight: 400;
}

.sitemap_sec:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1015 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.sitemap_sec:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((650 / 1800) * 100vw);
	height: 715px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.sitemap_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 70px 100px 90px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.sitemap_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.sitemap_sec .list {
	float: left;
	width: calc(100% / 3);
	padding-right: 30px;
}

.sitemap_sec .list > li {
	margin-bottom: 35px;
}

.sitemap_sec .list li:last-child { margin-bottom:0; }

.sitemap_sec .list > li a {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	color: #404040;
}

.sitemap_sec .list li a:hover { color:#8fd127; opacity:1; }

.sitemap_sec .list > li a:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #8fd127;
	border-radius: 50%;
}

.sitemap_sec .sub {
	margin: 15px 0 0 15px;
}

.sitemap_sec .sub li {
	margin-bottom: 20px;
}

.sitemap_sec .sub li a {
	display: inline-block;
	position: relative;
	padding-left: 25px;
	color: #404040;
}

.sitemap_sec .sub li a:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	width: 10px;
	height: 1px;
	background: #8fd127;
}

/*
LAW
***************************************************************************/
.law_sec {
	position: relative;
	padding: 90px 0 100px;
	font-weight: 400;
}

.law_sec:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1015 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.law_sec:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((650 / 1800) * 100vw);
	height: 395px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.law_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 70px 100px 90px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.law_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.law_sec .box {
	margin-bottom: 50px;
	line-height: 2.15;
}

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

/*
CONTACT
***************************************************************************/
.contact_sec {
	position: relative;
	padding: 90px 0 95px;
}

.contact_sec:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1015 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.contact_sec:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((650 / 1800) * 100vw);
	height: 1900px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.contact_sec:after { max-height:100%; }

.contact_sec.comp:after { height:360px; }

.contact_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 70px 100px 120px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.contact_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

.contact_sec.comp .sec_inner { padding:70px 100px; }

.contact_sec .sec_title {
	margin-bottom: 30px;
	text-align: center;
	font-size: 3rem;
}

.contact_sec .sec_txt {
	margin-bottom: 60px;
	text-align: center;
	line-height: 2.15;
}

.contact_sec .sec_txt a {
	padding-bottom: 4px;
	border-bottom: solid 1px #70b108;
}

/* ▼FORM COMMON▼ */
.pp_box {
	margin-bottom: 70px;
	padding: 40px 0 50px;
	background: #fafafa;
}

.pp_box .title {
	margin-bottom: 30px;
	text-align: center;
	font-size: 2.4rem;
}

.pp_box .stitle {
	margin-bottom: 15px;
	font-size: 1.8rem;
}

.pp_box .scroll_box {
	height: 270px;
	margin: 0 25px 30px 70px;
	padding: 25px 0;
	overflow-y: auto;
}

.pp_box .agree {
	width: 900px;
	margin: 0 auto;
	padding: 30px 0;
	text-align: center;
	background: #fff;
}

.pp_box .agree .chk_icon {
	display: inline-block;
}

.btn_form {
	width: 800px;
	margin: 0 auto;
}

.btn_form .conf { display:none; }

.btn_form li {
	margin-bottom: 50px;
}

.btn_form li:last-child { margin-bottom:0; }

.btn_form.col li {
	float: left;
	width: 380px;
	margin: 0;
}

.btn_form.col li:last-child { float:right; }

.btn_form.col li .btn01 { font-weight:500; }

#mfp_hidden, #mfp_overlay_background, #mfp_loading_screen, #mfp_loading, #mfp_overlay { display:none; }

.mfp_err {
	display: none;
	margin-top: 20px;
	padding: 0 15px;
	text-align: left;
	font-size: 1.4rem;
	color: #fff;
	line-height: 40px;
	background: #8fd127;
	clear: both;
}

.error_txt {
	margin: -30px 0 40px;
	text-align: center;
	font-size: 1.3rem;
	color: #ed2929;
	line-height: 1.8;
}

.err_txt {
	margin: 10px 15px 0;
	font-size: 1.3rem;
	color: #ed2929;
	line-height: 1.8;
}

.noagree_txt {
	margin-top: 10px;
	text-align: center;
	font-size: 1.3rem;
	color: #ed2929;
}

.end_txt {
	margin-bottom: 35px;
	padding: 20px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 400;
	color: #fff;
	background: #ed2929;
}

/*
USER FORM
***************************************************************************/
.user_form {
	margin-bottom: 75px;
	text-align: left;
	line-height: 2;
}

.user_form.conf { margin-bottom:95px; }
.user_form.resume { margin-bottom:0!important; }

.user_form dl {
	padding: 30px 0;
	border-bottom: solid 1px #eaeaea;
}

.user_form.conf dl { padding:25px 0; }
.user_form dl.ex, .user_form.ex dl { padding:20px 0; }
.user_form.resume dl:last-child { border-bottom:none; }

.user_form dt {
	position: relative;
	float: left;
	width: 22%;
	padding: 0 30px 0 20px;
	text-align: right;
	font-weight: 700;
	line-height: 60px;
}

.user_form.resume dt { width:25%; }
.user_form.conf dt { line-height:2; }
.user_form dt.ex { margin-top:-5px; }

.user_form dt.must { padding:0 30px 0 50px; }

.user_form dt.must:before {
	content: '必須';
	position: absolute;
	top: 18px;
	left: 0;
	width: 50px;
	height: 24px;
	padding-bottom: 2px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
	line-height: 24px;
	background: #8fd127;
	border-radius: 12px;
}

.user_form dt.must .size12 { margin-right:-10px; }

.user_form dt .mark {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}

.user_form dt .mark:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: #ee426f;
	border-radius: 50%;
}

.user_form dd {
	float: right;
	width: 78%;
	padding-right: 10px;
	font-weight: 500;
}

.user_form.resume dd { width:75%; }

.user_form .box {
	margin-bottom: 15px;
}

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

.user_form .box .txt {
	float: left;
	width: 110px;
	line-height: 60px;
}

.user_form .box .input {
	float: left;
	width: calc(95% - 80px);
}

/* ▼CATEGORY SELECT▼ */
.cat_select {
	position: relative;
	width: 100%;
	height: 60px;
	margin-bottom: 20px;
	text-align: center;
	line-height: 60px;
	border: solid 1px #ccc;
	border-radius: 4px;
	cursor: pointer;
}

.cat_select.opened {
	border-radius: 4px 4px 0 0;
}

.cat_select:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;
	width: 12px;
	height: 8px;
	margin-top: -4px;
	background: url(../common_img/arrow_select.png) no-repeat;
}

.cat_select.opened:after {
	-moz-transform: rotateX(180deg);
	-webkit-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.cat_select_list {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: calc(100% - 20px);
	background: #fff;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-radius: 0 0 4px 4px;
	z-index: 10;
}

.cat_select_list li {
	text-align: center;
	line-height: 60px;
	border-bottom: solid 1px #ccc;
	cursor: pointer;
}

.cat_select_list li:last-child { border-bottom:none; }

.cat_select_content ul { display:none; }
.cat_select_content ul:first-child { display:block; }

.cat_select_sec.ex {
	width: 570px;
	margin-bottom: 35px;
}

.cat_select_sec.ex:last-child { margin-bottom:0; }

.cat_select_sec.ex:last-child .cat_select_content ul { display:none; }
.mypage_sec .cat_select_sec.ex:last-child .cat_select_content ul:first-child { display:block; }

.cat_select_sec.ex .cat_select_list { width:100%; }

/* ▼CATEGORY SELECT▼ */
.form_add {
	margin: 0 15px;
	color: #8fd127;
	line-height: 24px;
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
}

.form_add span {
	display: inline-block;
	padding-right: 32px;
	background: url(../common_img/btn_add.png) right center no-repeat;
}

.form_add:hover { opacity:0.7; }

.form_add_sec .set {
	display: none;
	padding: 25px 0;
	border-top: solid 1px #eaeaea;
}

.form_add_sec .set:first-child {
	display: block;
	padding-top: 0;
	border-top: none;
}

/* ▼FORM SAVE▼ */
.form_save {
	padding: 70px 0 75px;
	text-align: center;
	background: #fafafa;
}

.save_fixed.btn01 {
	position: fixed;
	top: 50%;
	right: 0;
	width: 190px;
	height: 110px;
	margin-top: -55px;
	padding-top: 28px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.65;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 50;
}

.save_fixed.btn01 .arrow { right:10px; }

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

	.save_fixed.btn01 { width:160px; }

}

/*
USER EDIT ARTICLE
***************************************************************************/
.user_content h2 {
	margin-bottom: 25px;
	font-size: 3rem;
	color: #8fd127;
}

.user_content h3 {
	margin-bottom: 20px;
	font-size: 2.2rem;
}

.user_content h4 {
	margin-bottom: 25px;
	padding: 8px 12px;
	font-size: 1.6rem;
	color: #fff;
	background: #8fd127;
}

.user_content p {
	margin-bottom: 40px;
	line-height: 2.15;
}

.user_content img {
	display: block;
	max-width: 100%;
	margin-bottom: 50px;
}

.user_content ul {
	margin-bottom: 25px;
}

.user_content li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
}

.user_content li:last-child { margin-bottom:0; }

.user_content li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #8fd127;
	border-radius: 50%;
}

/*
MYPAGE
***************************************************************************/
.mypage_sec {
	position: relative;
	padding: 110px 0 0;
}

.mypage_sec.ex { padding:140px 0 0; }

.mypage_sec:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((900 / 1800) * 100vw);
	height: 1100px;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.mypage_sec.ex:before { display:none; }

.mypage_sec:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((1200 / 1800) * 100vw);
	height: 1520px;
	background: #fafafa;
	z-index: 0;
}

.mypage_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 105px 100px;
	text-align: center;
	line-height: 2.15;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

.mypage_sec.ex .sec_inner {
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.mypage_sec .btn_app a {
	display: block;
	position: relative;
	width: 1200px;
	margin: 0 auto 30px;
	padding: 55px 0;
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	line-height: 2.15;
	background: #ee426f;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

.mypage_sec .btn_app a .arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 50px;
	width: 10px;
	height: 18px;
	margin-top: -9px;
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.mypage_sec .btn_app a:hover { background:#f35b83; opacity:1; }

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

	.mypage_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); padding:60px 0; }
	.mypage_sec .sec_inner .user_form { width:1000px; margin:0 auto 75px; }
	.mypage_sec .btn_app a { width:auto; margin:0 calc((80 / 1800) * 100vw) 30px; }

}

/* ▼INTRO▼ */
.mypage_sec .intro {
	position: absolute;
	top: -70px;
	right: 0;
	padding: 40px calc((90 / 1800) * 100vw);
	text-align: center;
	font-size: 1.6rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.8;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	z-index: 10;
}

/* ▼LIST▼ */
.mypage_list {
	position: relative;
	width: 1200px;
	margin: 135px auto 0;
	z-index: 1;
}

.mypage_list .box {
	float: left;
	width: 575px;
	margin: 0 50px 70px 0;
}

.mypage_list .box:nth-child(2n) { margin-right:0; }

.mypage_list .box a {
	display: block;
	color: #404040;
}

.mypage_list .box .img {
	margin-bottom: 25px;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.mypage_list .box .img img {
	width: 100%;
	border-radius: 20px;
}

.mypage_list .box .title {
	margin-bottom: 10px;
	font-size: 2.4rem;
	color: #141414;
}

.mypage_list .slist {
	padding: 30px 0 50px;
	text-align: right;
	border-top: solid 1px #eaeaea;
}

.mypage_list .slist li {
	display: inline-block;
	margin-left: 50px;
}

.mypage_list .slist li a {
	display: block;
	position: relative;
	padding-left: 15px;
	color: #404040;
}

.mypage_list .slist li a:before {
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #8fd127;
	border-radius: 50%;
}

.mypage_list .slist li a:hover { color:#8fd127; opacity:1; }

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

	.mypage_list { width:auto; margin:135px calc((80 / 1800) * 100vw) 0; }
	.mypage_list .box { width:calc((100% - 50px) / 2); }

}

/* ▼RESUME▼ */
.resume_fixed {
	position: fixed;
	top: 50%;
	right: 0;
	width: 190px;
	height: 100px;
	margin-top: -170px;
	padding-top: 12px;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.5;
	background: #3a3a3a;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 50;
}

.resume_fixed .num {
	font-size: 3rem;
	font-weight: 700;
}

.mypage_sec.resume:before, .mypage_sec.resume:after { display:none; }

.mypage_sec.resume .sec_inner {
	width: 100%;
	margin: 40px auto 0;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.mypage_sec.resume .step {
	width: 1200px;
	margin: 0 auto 90px;
	padding: 25px 50px 35px;
	background: #8fd127;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.mypage_sec.resume .step ul {
	text-align: center;
	border-bottom: solid 1px #fff;
}

.mypage_sec.resume .step li {
	display: inline-block;
	position: relative;
	padding: 0 25px 20px;
	text-align: center;
	color: #fff;
	line-height: 1.6;
}

.mypage_sec.resume .step li span {
	display: block;
	font-size: 2rem;
	font-weight: 700;
}

.mypage_sec.resume .step li:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}

.mypage_sec.resume .step li.active:before {
	bottom: -10px;
	width: 20px;
	height: 20px;
	margin-left: -10px;
}

.mypage_sec.resume .step li.active:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background: #ee426f;
	border-radius: 50%;
	z-index: 2;
}

.mypage_sec .sec_inner .slist {
	padding-bottom: 60px;
	border-bottom: solid 1px #eaeaea;
}

.resume_box {
	width: 1200px;
	margin: 0 auto 90px;
	text-align: left;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.resume_box:last-child { margin-bottom:120px; }

.resume_box .sec_title {
	padding: 30px 100px;
	font-size: 3.4rem;
	font-weight: 500;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 20px 0 0;
}

.resume_box .sec_title span {
	margin-right: 30px;
	vertical-align: -2px;
	font-size: 4rem;
	font-weight: 700;
}

.resume_box > .inner {
	padding: 40px 100px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.resume_box .photo {
	display: table;
	width: 100%;
	padding-bottom: 30px;
	border-bottom: solid 1px #eaeaea;
}

.resume_box .photo .img_box {
	display: table-cell;
	width: 40%;
	padding: 30px 0;
	vertical-align: middle;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	background: #fafafa;
	border: solid 1px #eaeaea;
}

.resume_box .photo .img_box .img {
	width: 200px;
	margin: 0 auto;
}

.resume_box .photo .img_box .img img { width:100%; }

.resume_box .photo .input_box {
	display: table-cell;
	width: 60%;
	padding: 0 20px 0 50px;
	vertical-align: middle;
}

.resume_box .radio_list.wage_input li {
	margin-bottom: 15px;
}

.resume_box .radio_list.wage_input li:last-child { margin-bottom:0; }

.resume_box .wage_input label {
	display: inline-block;
	width: 110px;
	line-height: 60px;
}

.resume_save {
	padding: 115px 0 150px;
	text-align: center;
	background: #fafafa;
}

.resume_save > .inner {
	width: 1200px;
	margin: 0 auto;
}

.resume_save .btn_form { width:1000px; }

.resume_save .btn_form li:first-child { width:480px; }
.resume_save .btn_form li:last-child { width:500px; }

.resume_save .box {
	padding: 90px 100px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

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

	.resume_fixed { width:160px; }
	.mypage_sec.resume .step, .resume_box { width:auto; margin:0 calc((80 / 1800) * 100vw) 90px; }
	.resume_box > .inner { width:1000px; margin:0 auto; padding:40px 0; }
	.resume_save > .inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

/* ▼USER DATA▼ */
.user_save_data {
	margin-bottom: 90px;
	padding: 120px 0;
	text-align: center;
	font-size: 2.2rem;
	color: #8fd127;
	background: #fff;
	border: solid 1px #eaeaea;
	border-radius: 20px;
}

.user_data_list {
	padding-bottom: 50px;
	text-align: left;
}

.user_data_list .box {
	position: relative;
	width: calc((100% - 40px) / 2);
	margin-bottom: 40px;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.user_data_list .box:nth-child(2n+1) { float:left; }
.user_data_list .box:nth-child(2n) { float:right; }

.user_data_list .box a {
	display: block;
	color: #404040;
}

.user_data_list .box a:hover { opacity:1; }

.user_data_list .box .img {
	width: 100%;
	height: 320px;
	border-radius: 20px 20px 0 0;
}

.user_data_list .box a .img img {
	transition: .5s;
	backface-visibility: hidden;
}

.user_data_list .box a:hover .img img {
	-webkit-transform: translate(-50%, -50%) scale(1.15,1.15);
	transform: translate(-50%, -50%) scale(1.15,1.15);
}

.user_data_list .box .inner {
	padding: 30px 30px 25px;
	line-height: 1.8;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.user_data_list .box .title {
	margin-bottom: 20px;
	font-size: 2rem;
}

.user_data_list .box .date {
	float: left;
	width: 80px;
	font-size: 1.1rem;
	color: #878787;
	line-height: 26px;
	font-style: italic;
}

.user_data_list .box .jobs_tag {
	float: left;
	width: 420px;
}

.user_search_list .box {
	position: relative;
	margin-bottom: 80px;
	text-align: left;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.user_search_list .box:last-child { margin-bottom:50px; }

.user_search_list .box .title {
	padding: 25px 0;
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	background: #8fd127;
	border-radius: 20px 20px 0 0;
}

.user_search_list .box .inner {
	padding: 40px 100px 60px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}

.user_search_list .box dl {
	padding: 20px 0;
	border-bottom: solid 1px #eaeaea;
}

.user_search_list .box dt {
	float: left;
	width: 18%;
	padding: 0 20px;
	font-weight: 700;
}

.user_search_list .box dd {
	float: right;
	width: 82%;
}

.user_search_list .box .list li {
	display: inline-block;
	position: relative;
	margin-right: 35px;
}

.user_search_list .box .list > li { padding-left:15px; }

.user_search_list .box .list > li:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #8fd127;
	border-radius: 50%;
}

.user_search_list .box .sub {
	margin-top: 10px;
}

.user_search_list .box .sub li { padding-left:20px; }

.user_search_list .box .sub li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 1px;
	margin-top: -0.5px;
	background: #8fd127;
}

.data_delete {
	position: absolute;
	top: -15px;
	right: -15px;
	cursor: pointer;
	z-index: 10;
}

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

	.user_data_list .box .img { height:305px; }

}

/*
APPLICATION
***************************************************************************/
.application_sec {
	position: relative;
	padding: 90px 0 110px;
}

.application_sec:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((1100 / 1800) * 100vw);
	height: 100%;
	background: url(../common_img/bg01.png) repeat;
	z-index: 0;
}

.application_sec .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 105px 100px;
	text-align: center;
	line-height: 2.15;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.application_sec .sec_inner { width:auto; margin:0 calc((80 / 1800) * 100vw); }

}

/* ▼INTRO▼ */
.application_sec .intro {
	position: absolute;
	top: -70px;
	right: 0;
	text-align: center;
	font-weight: 400;
	color: #fff;
	line-height: 1.8;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	z-index: 10;
}

.application_sec .intro.link > a {
	display: block;
	padding: 40px calc((90 / 1800) * 100vw);
	color: #fff;
	background: url(../common_img/arrow01_white.png) right 20px center no-repeat;
}

.application_sec .intro.ex.link > a { padding:80px calc((90 / 1800) * 100vw); }

.application_sec .intro .title {
	margin-bottom: 20px;
	font-size: 2.4rem;
	color: #fff;
}

.application_sec .intro.ex .title {
	margin-bottom: 0;
	font-size: 2.2rem;
}

.application_sec .intro .btn {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -12px;
}

/* ▼STEP▼ */
.application_sec .step {
	position: relative;
	width: 1200px;
	margin: 0 auto 30px;
	padding: 25px 100px 35px;
	background: #8fd127;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
	z-index: 1;
}

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

	.application_sec .step { width:auto; margin:0 calc((80 / 1800) * 100vw) 30px; padding:25px 50px 35px; }

}

.application_sec .step ul {
	border-bottom: solid 1px #fff;
}

.application_sec .step li {
	position: relative;
	float: left;
	width: 220px;
	margin-right: 170px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.6;
}

.application_sec .step li:last-child { margin-right:0; }

.application_sec .step li span {
	display: block;
	font-size: 2rem;
	font-weight: 700;
}

.application_sec .step li:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}

.application_sec .step li.active:before {
	bottom: -10px;
	width: 20px;
	height: 20px;
	margin-left: -10px;
}

.application_sec .step li.active:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background: #ee426f;
	border-radius: 50%;
	z-index: 2;
}

/* ▼AGREE▼ */
.application_sec.agree:before { height:730px; }

.application_sec.agree:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((1015 / 1800) * 100vw);
	height: 345px;
	background: #8fd127;
	z-index: 0;
}

.application_sec.agree .sec_inner {
	padding: 75px 50px 110px 100px;
	text-align: left;
	line-height: 2;
}

.application_sec.agree .agree_sec {
	height: 520px;
	margin-bottom: 30px;
	overflow-y: auto;
}

.application_sec.agree .agree_sec .box {
	margin: 0 40px 60px 0;
}

/* ▼SMART ENTRY▼ */
.application_sec .box_smart_entry .inner {
	background: #ffdfe8;
	border-radius: 20px;
	padding: 30px 10px;
	margin-bottom: 20px;
}

.application_sec .box_smart_entry h2 {
	display: inline-block;
	font-size: 3.4rem;
	padding-bottom: 5px;
  border-bottom: solid 3px #8fd127;
}

/*
REGIST LIST
***************************************************************************/
.regist_list {
	position: relative;
	padding: 175px calc((80 / 1800) * 100vw) 75px;
	background: url(../common_img/bg01.png) repeat;
}

.regist_list .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 680px;
	background: url(../common_img/regist_bg.jpg) center top no-repeat;
	background-size: cover;
}

.regist_list .sec_inner {
	position: relative;
}

.regist_list .sec_title {
	margin-bottom: 30px;
	font-size: 7rem;
}

.regist_list .sec_title span { color:#8fd127; }

.regist_list .sec_txt {
	margin-bottom: 85px;
	font-size: 1.6rem;
	color: #141414;
}

.regist_list .content .box {
	float: left;
	width: 50%;
	text-align: center;
}

.regist_list .content .box a {
	display: block;
	padding: 35px 0 70px;
	color: #fff;
}

.regist_list .content .box:first-child a {
	background: #d62a57;
	border-radius: 20px 0 0 20px;
}

.regist_list .content .box:last-child a {
	background: #eb4973;
	border-radius: 0 20px 20px 0;
}

.regist_list .content .box a:hover { opacity:1; }

.regist_list .content .box:first-child a:hover { background:#e9406c; }
.regist_list .content .box:last-child a:hover { background:#fb628a; }

.regist_list .content .box .inner {
	width: 600px;
	margin: 0 auto;
	padding-right: 75px;
	background: url(../common_img/arrow01_white.png) right 140px no-repeat;
}

.regist_list .content .box .title {
	display: inline-block;
	margin: 0 0 10px -60px;
	padding-left: 130px;
	font-size: 3.6rem;
	color: #fff;
	line-height: 112px;
}

.regist_list .content .box:first-child .title {
	background: url(../common_img/regist_icon01.png) left center no-repeat;
}

.regist_list .content .box:last-child .title {
	background: url(../common_img/regist_icon02.png) left center no-repeat;
}

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

	.regist_list .content .box .inner {
		width: 530px;
		padding-right: 0;
	}

}

/*
FOOTER
***************************************************************************/
footer {
	position: relative;
	padding: 105px 0;
	background: #f2f2f2;
}

footer .link_list {
	padding-bottom: 50px;
}

footer .link_list .list {
	float: left;
	width: 50%;
}

footer .link_list .list nav {
	margin-bottom: 45px;
}

footer .link_list .list nav:last-child { margin-bottom:0; }

footer .link_list .list .head {
	margin-bottom: 5px;
}

footer .link_list .list .head a { color:#404040; }

footer .link_list .list li {
	display: inline-block;
	margin-right: 40px;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 2.25;
}

footer .link_list .list li a { color:#616161; }

footer .link_list .list a:hover { color:#8fd127; opacity:1; }

footer .link_list .list .sub li {
	position: relative;
}

footer .link_list .list .sub li:after {
	content: '/';
	position: absolute;
	top: 0;
	right: -25px;
}

footer .link_list .list .sub li:last-child:after { display:none; }

footer .fnavi_list {
	margin-bottom: 45px;
	padding: 30px 0;
	border-top: solid 1px #dbdbdb;
	border-bottom: solid 1px #dbdbdb;
}

footer .fnavi_list li {
	display: inline-block;
	margin-right: 55px;
	font-size: 1.3rem;
}

footer .fnavi_list li a {
	display: block;
	position: relative;
	padding-left: 12px;
	color: #404040;
}

footer .fnavi_list li a:before {
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #8fd127;
	border-radius: 50%;
}

footer .fnavi_list li a:hover { color:#8fd127; opacity:1; }

footer .f_btn {
	width: 300px;
	margin-bottom: 60px;
}

footer .info {
	margin-bottom: 50px;
	padding-bottom: 60px;
	border-bottom: solid 1px #dbdbdb;
}

footer .info .txt {
	float: left;
	width: 600px;
	margin: -5px 0 0 100px;
	font-size: 1.3rem;
	color: #616161;
}

footer .info .txt span {
	display: block;
	margin-top: 5px;
	font-size: 1.5rem;
	font-weight: 700;
}

footer .sinfo .copy {
	float: right;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 300;
	color: #a8a8a8;
	line-height: 28px;
}

footer .btn_ptop {
	position: absolute;
	bottom: 105px;
	right: 25px;
	padding-top: 15px;
}

footer .btn_ptop a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 4px;
	height: 4px;
	margin-left: -4px;
	background: #8fd127;
	border-radius: 50%;
}

footer .btn_ptop a:hover:before { top:-10px; }

/*
OVERLAY WINDOW
***************************************************************************/
.modal_switch, .modal_switch span {
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
}

#overlay_window {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 10000;
	overflow: auto;
}

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

.overlay_inner {
	position: absolute;
	top: 120px;
	left: 50%;
	width: 900px;
	height: auto;
	margin-left: -450px;
}

.overlay_content {
	display: none;
	position: relative;
	margin: 0 auto;
	padding: 60px 25px 60px 65px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.overlay_content .scroll_box {
	max-height: calc(100vh - 360px);
	padding-right: 30px;
	overflow-y: auto;
}

#overlay_window .modal_close {
	position: absolute;
	top: -55px;
	right: 0;
	cursor: pointer;
	transition: .5s;
	backface-visibility: hidden;
	z-index: 10001;
}

#overlay_window .modal_close:hover { opacity:0.7; }

/*
ORIGINAL SCROLL
***************************************************************************/
.scroll_box::-webkit-scrollbar {
	width: 6px;
}

#overlay_window .scroll_box::-webkit-scrollbar { width:3px; }

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

.pp_box .scroll_box::-webkit-scrollbar-track { width:1px; background:#ddd; }

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

.pp_box .scroll_box::-webkit-scrollbar-thumb { background:#8fd127; }

.gecko .scroll_box {
	scrollbar-width: 6px;
	scrollbar-color: #575757 #d9d9d9;
}

.gecko #overlay_window .scroll_box { scrollbar-width:3px; }

.gecko .pp_box .scroll_box {
	scrollbar-width: 3px;
	scrollbar-color: #8fd127 #ddd;
}

/*
LINE BANNER
***************************************************************************/
.line_banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #03c754;
	z-index: 1000;
}

.line_banner a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	line-height: 100px;
}

.line_banner a span {
	display: inline-block;
	padding-right: 40px;
	background: url(../common_img/arrow_circle.png) right center no-repeat;
}

/*
PARTS
***************************************************************************/
/* ▼TITLE▼ */
.title01 {
	padding-bottom: 15px;
	font-size: 2.4rem;
	font-weight: 500;
	border-bottom: solid 2px #8fd127;
}

/* ▼TEXT▼ */
.txt_parts {
	text-align: center;
}

.txt_parts span {
	display: inline-block;
	position: relative;
	padding: 0 25px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 24px;
}

.txt_parts.black span { color:#141414; }
.txt_parts.pink span { color:#ee426f; }
.txt_parts.white span { color:#fff; }
.txt_parts.green span { color:#8fd127; }
.txt_parts.yellow span { color:#fff; }

.txt_parts span:before, .txt_parts span:after {
	content: '';
	position: absolute;
	top: 0;
	width: 16px;
	height: 24px;
}

.txt_parts span:before { left:0; }
.txt_parts span:after { right:0; }

.txt_parts.black span:before { background:url(../common_img/txt_parts_left_black.png) no-repeat; }
.txt_parts.black span:after { background:url(../common_img/txt_parts_right_black.png) no-repeat; }

.txt_parts.pink span:before { background:url(../common_img/txt_parts_left_pink.png) no-repeat; }
.txt_parts.pink span:after { background:url(../common_img/txt_parts_right_pink.png) no-repeat; }

.txt_parts.white span:before { background:url(../common_img/txt_parts_left_white.png) no-repeat; }
.txt_parts.white span:after { background:url(../common_img/txt_parts_right_white.png) no-repeat; }

.txt_parts.green span:before { background:url(../common_img/txt_parts_left_green.png) no-repeat; }
.txt_parts.green span:after { background:url(../common_img/txt_parts_right_green.png) no-repeat; }

.txt_parts.yellow span:before { background:url(../common_img/txt_parts_left_yellow.png) no-repeat; }
.txt_parts.yellow span:after { background:url(../common_img/txt_parts_right_yellow.png) no-repeat; }


.txt01 {
	position: relative;
	margin-bottom: 5px;
	padding-left: 12px;
	font-size: 1.4rem;
	font-weight: 700;
}

.txt01:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #8fd127;
	border-radius: 50%;
}

/* ▼BOX▼ */
.box01 {
	padding: 15px 20px;
	background: #f6f6f6;
	border-radius: 10px;
}

.box02 {
	padding: 45px 50px;
	background: #f6f6f6;
}

.box03 {
	padding: 40px;
	text-align: center;
	background: #f6f6f6;
	border-radius: 20px;
}

.box04 {
	padding: 25px 30px;
	background: #f6f6f6;
}

.box05 {
	padding: 20px;
	background: #fff;
	border: solid 1px #eaeaea;
}

/* ▼BUTTON▼ */
.btn01 {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 70px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	line-height: 70px;
	font-family: "Noto Sans JP", sans-serif;
	background: transparent;
	border-radius: 35px;
	overflow: hidden;
	cursor: pointer;
	z-index: 0;
}

.btn01.edge { border-radius:4px!important; }

.btn01:before, .btn01:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: .5s;
	backface-visibility: hidden;
}

.btn01:before { z-index:-1; }
.btn01:after { z-index:-2; }

.btn01.pink:before { background:linear-gradient(to right, #d62a57, #ef4370); }
.btn01.green:before { background:linear-gradient(to right, #71b900, #8fd127); }
.btn01.black:before { background:#3a3a3a; }
.btn01.white { color:#8fd127; background:#fff; border:solid 2px #fff; }
.btn01.gray { color:#141414; background:#d4d4d4; }
.btn01.d_gray { color:#FFFFFF; background:#42413d; }
.btn01.white_bf { color:#00babd; background:#fff; border:solid 2px #fff; }

.btn01.pink:after { background:linear-gradient(to right, #f74473, #ff678f); }
.btn01.green:after { background:linear-gradient(to right, #8acd21, #aae946); }
.btn01.black:after { background:#727272; }
.btn01.white:hover { color:#fff; background:#8fd127; border:solid 2px #fff; }
.btn01.white_bf:hover { color:#fff; background:#00babd; border:solid 2px #fff; }

.btn01:hover { opacity:1; }
a.btn01.gray:hover { opacity:0.7; }
a.btn01.d_gray:hover { opacity:0.9; }
.btn01:hover:before { opacity:0; }

.btn01.mx_small {
	height: 50px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 50px;
	border-radius: 25px;
}

.btn01.small {
	height: 60px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 60px;
	border-radius: 30px;
}

.btn01.large {
	height: 80px;
	font-size: 1.8rem;
	line-height: 80px;
	border-radius: 40px;
}

.btn01.large.ex {
	box-sizing: border-box;
	padding-top: 8px;
	line-height: 1.45;
}

.btn01.mx_large {
	height: 90px;
	font-size: 2rem;
	line-height: 90px;
	border-radius: 45px;
}

.btn01 .arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 25px;
	width: 10px;
	height: 18px;
	margin-top: -9px;
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.btn01 .arrow.rev {
	right: 0;
	left: 25px!important;
}

.btn01.white .arrow {
	background: url(../common_img/arrow01_green.png) no-repeat;
	background-size: 10px;
}

.btn01.white:hover .arrow {
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.btn01.white_bf .arrow {
	background: url(../common_img/arrow01_blue.png) no-repeat;
	background-size: 10px;
}

.btn01.white_bf:hover .arrow {
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.btn01.gray .arrow {
	background: url(../common_img/arrow01_black.png) no-repeat;
	background-size: 10px;
}

.btn01.gray .arrow.rev {
	background: url(../common_img/arrow01_black_rev.png) no-repeat;
	background-size: 10px;
}

.btn01.disp_switch .switch {
	padding-right: 28px;
	background: url(../common_img/arrow01_down.png) right center no-repeat;
}

.btn01.disp_switch.opened .switch {
	background: url(../common_img/arrow01_up.png) right center no-repeat;
}

.btn02 {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 60px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 60px;
	font-family: "Noto Sans JP", sans-serif;
	border-radius: 30px;
	cursor: pointer;
}

.btn02 .arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 25px;
	width: 10px;
	height: 18px;
	margin-top: -9px;
}

.btn02.white { color:#fff; background:transparent; border:solid 2px #fff; }
.btn02.green { color:#8fd127; background:transparent; border:solid 2px #8fd127; }

.btn02.white .arrow {
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.btn02.green .arrow {
	background: url(../common_img/arrow01_green.png) no-repeat;
	background-size: 10px;
}

.btn02.white:hover { color:#8fd127; background:#fff; border:solid 2px #fff; }
.btn02.green:hover { color:#fff; background:#8fd127; border:solid 2px #8fd127; }

.btn02:hover { opacity:1; }

.btn02.white:hover .arrow {
	background: url(../common_img/arrow01_green.png) no-repeat;
	background-size: 10px;
}

.btn02.green:hover .arrow {
	background: url(../common_img/arrow01_white.png) no-repeat;
	background-size: 10px;
}

.btn02.large {
	height: 70px;
	font-size: 1.8rem;
	line-height: 70px;
	border-radius: 35px;
}

/* ▼LINK▼ */
.link01 {
	position: relative;
	padding-right: 12px;
}

.link01:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.link01.pink:before { background:#ee426f; }

.link01:hover:before { right:-5px; }

a.file {
	padding-right: 30px;
	background: url(../common_img/icon_file.png) right center no-repeat;
}

/* ▼LIST▼ */
.li_mb0 > li { margin-bottom:0px!important; }
.li_mb5 > li { margin-bottom:5px!important; }
.li_mb10 > li { margin-bottom:10px!important; }
.li_mb20 > li { margin-bottom:20px!important; }
.li_mb30 > li { margin-bottom:30px!important; }
.li_mb40 > li { margin-bottom:40px!important; }
.li_mb50 > li { margin-bottom:50px!important; }

.list01 > li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
}

.list01 > li:last-child { margin-bottom:0; }

.list01 > li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #8fd127;
	border-radius: 50%;
}

.list02 > li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 45px;
}

.list02 > li:last-child { margin-bottom:0; }

.list02 > li:before {
	position: absolute;
	top: 0;
	left: 0;
}

.list02 > li:nth-child(1):before { content:'（1）'; }
.list02 > li:nth-child(2):before { content:'（2）'; }
.list02 > li:nth-child(3):before { content:'（3）'; }
.list02 > li:nth-child(4):before { content:'（4）'; }
.list02 > li:nth-child(5):before { content:'（5）'; }
.list02 > li:nth-child(6):before { content:'（6）'; }
.list02 > li:nth-child(7):before { content:'（7）'; }
.list02 > li:nth-child(8):before { content:'（8）'; }
.list02 > li:nth-child(9):before { content:'（9）'; }

.list03 > li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
}

.list03 > li:last-child { margin-bottom:0; }

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

.list03.green > li:before { color:#71b900; }

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

.list04 > li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 30px;
}

.list04 > li:last-child { margin-bottom:0; }

.list04 > li:before {
	position: absolute;
	top: 0;
	left: 0;
}

.list04 > li:nth-child(1):before { content:'ア)'; }
.list04 > li:nth-child(2):before { content:'イ)'; }
.list04 > li:nth-child(3):before { content:'ウ)'; }
.list04 > li:nth-child(4):before { content:'エ)'; }
.list04 > li:nth-child(5):before { content:'オ)'; }
.list04 > li:nth-child(6):before { content:'カ)'; }
.list04 > li:nth-child(7):before { content:'キ)'; }
.list04 > li:nth-child(8):before { content:'ク)'; }
.list04 > li:nth-child(9):before { content:'ケ)'; }

.list05 > li {
	position: relative;
	margin-bottom: 5px;
	padding-left: 25px;
}

.list05 > li:last-child { margin-bottom:0; }

.list05 > li:before {
	position: absolute;
	top: 0;
	left: 0;
}

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

.list06 > li {
	position: relative;
	margin-bottom: 5px;
	padding-left: 32px;
}

.list06 > li:last-child { margin-bottom:0; }

.list06 > li:before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 500;
}

.list06 > li:nth-child(1):before { content:'4-1.'; }
.list06 > li:nth-child(2):before { content:'4-2.'; }
.list06 > li:nth-child(3):before { content:'4-3.'; }
.list06 > li:nth-child(4):before { content:'4-4.'; }
.list06 > li:nth-child(5):before { content:'4-5.'; }
.list06 > li:nth-child(6):before { content:'4-6.'; }
.list06 > li:nth-child(7):before { content:'4-7.'; }
.list06 > li:nth-child(8):before { content:'4-8.'; }
.list06 > li:nth-child(9):before { content:'4-9.'; }

/* ▼DL▼ */
.dlist01 dl {
	line-height: 1.8;
}

.dlist01 dt {
	float: left;
	width: 24%;
	padding: 35px 0;
	text-align: center;
	font-weight: 700;
	border-bottom: solid 2px #8fd127;
}

.dlist01 dd {
	float: right;
	width: 76%;
	padding: 35px 20px;
	border-bottom: solid 1px #eaeaea;
}

.dlist01 dl:last-child dt, .dlist01 dl:last-child dd { border-bottom:none; }

.dlist02 dt {
	float: left;
	width: 60px;
	padding-bottom: 2px;
	text-align: center;
	font-weight: 500;
	color: #fff;
	line-height: 28px;
	border-radius: 15px;
}

.dlist02 dt.pink { background:#ee426f; }
.dlist02 dt.green { background:#8fd127; }

.dlist02 dd {
	float: left;
	width: calc(100% - 60px);
	padding: 0 0 0 15px;
}

/* ▼TABLE▼ */
.table01 table tr {
	border-bottom: solid 2px #e9e9e9;
	padding: 7px 0;
}

.table01 table thead tr th {
	vertical-align: middle;
	font-size: 1.7rem;
	font-weight: 700;
	color: #000;
	line-height: 1.8;
	padding: 15px 25px 15px 30px;
}

.table01 table tbody tr th {
	width: 220px;
	vertical-align: middle;
	font-size: 1.7rem;
	font-weight: 700;
	color: #000;
	line-height: 1.8;
	padding: 30px 25px 30px 30px;
}

.table01 table tbody tr td {
	padding: 30px 25px 30px 30px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.8;
}

.table01 table tbody tr td.col-2 {
	width: 240px;
}

.table01 table tbody tr td.col-num {
	position: relative;
	left: 30px;
}

.table01 table tbody tr td.col-num span {
	position: absolute;
	left: -8px;
}

/* ▼MYPAGE LINK▼ */
.mypage_link {
	position: absolute;
	top: calc((250 / 760) * 100vh);
	right: 0;
	width: 190px;
}
@media screen and (max-height: 800px){
	.mypage_link {
		top: calc((250 / 870) * 100vh);
	}
}

.mypage_link .box {
	margin-bottom: 25px;
	background: #8fd127;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 20px rgba(118,118,118,0.25);
}

.mypage_link .box a {
	display: block;
	padding: 5px 15px 10px 50px;
}

.mypage_link .box dl:last-child {
	border-bottom: none;
}
.mypage_link .box dl {
	position: relative;
	padding: 17px 0 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
}

.mypage_link .box dl::before {
	content: '';
	display: inline-block;
	background-image: url('../common_img/hbtn_mypage.png');
	background-size: cover;
	width: 70px;
	height: 60px;
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(-50%);
	filter: invert(1);
}

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.block { display:block!important; }
.inline { display:inline!important; }
.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▼ */
.w4per { width:4%; }
.w5per { width:5%; }
.w7per { width:7%; }
.w8per { width:8%; }
.w10per { width:10%; }
.w12per { width:12%; }
.w14per { width:14%; }
.w15per { width:15%; }
.w16per { width:16%; }
.w18per { width:18%; }
.w20per { width:20%; }
.w22per { width:22%; }
.w24per { width:24%; }
.w25per { width:25%; }
.w30per { width:30%; }
.w32per { width:32%; }
.w35per { width:35%; }
.w36per { width:36%; }
.w40per { width:40%; }
.w50per { width:50%; }
.w55per { width:55%; }
.w56per { width:56%; }
.w60per { width:60%; }
.w70per { width:70%; }
.w75per { width:75%; }
.w80per { width:80%; }
.w100per { width:100%!important; }

.w40 { width:40px!important; }
.w60 { width:60px!important; }
.w75 { width:75px!important; }
.w80 { width:80px!important; }
.w90 { width:90px!important; }
.w100 { width:100px!important; }
.w120 { width:120px!important; }
.w130 { width:130px!important; }
.w140 { width:140px!important; }
.w150 { width:150px!important; }
.w170 { width:170px!important; }
.w180 { width:180px!important; }
.w200 { width:200px!important; }
.w210 { width:210px!important; }
.w220 { width:220px!important; }
.w230 { width:230px!important; }
.w250 { width:250px!important; }
.w260 { width:260px!important; }
.w280 { width:280px!important; }
.w290 { width:290px!important; }
.w300 { width:300px!important; }
.w310 { width:310px!important; }
.w320 { width:320px!important; }
.w335 { width:335px!important; }
.w350 { width:350px!important; }
.w355 { width:355px!important; }
.w360 { width:360px!important; }
.w380 { width:380px!important; }
.w400 { width:400px!important; }
.w440 { width:440px!important; }
.w450 { width:450px!important; }
.w460 { width:460px!important; }
.w470 { width:470px!important; }
.w500 { width:500px!important; }
.w570 { width:570px!important; }
.w600 { width:600px!important; }
.w800 { width:800px!important; }
.w1000 { width:1000px!important; }

.h90 { height:90px!important; }
.h100 { height:100px!important; }
.h150 { height:150px!important; }
.h200 { height:200px!important; }
.h300 { height:300px!important; }
.h360 { height:360px!important; }

.area_h200 { height:200px; }

.zoom05 { zoom:0.5; }

/* ▼area▼ */
.mb150 { margin-bottom:150px!important; }
.mb140 { margin-bottom:140px!important; }
.mb120 { margin-bottom:120px!important; }
.mb110 { margin-bottom:110px!important; }
.mb100 { margin-bottom:100px!important; }
.mb95 { margin-bottom:95px!important; }
.mb90 { margin-bottom:90px!important; }
.mb85 { margin-bottom:85px!important; }
.mb80 { margin-bottom:80px!important; }
.mb75 { margin-bottom:75px!important; }
.mb70 { margin-bottom:70px!important; }
.mb65 { margin-bottom:65px!important; }
.mb60 { margin-bottom:60px!important; }
.mb55 { margin-bottom:55px!important; }
.mb50 { margin-bottom:50px!important; }
.mb45 { margin-bottom:45px!important; }
.mb40 { margin-bottom:40px!important; }
.mb35 { margin-bottom:35px!important; }
.mb30 { margin-bottom:30px!important; }
.mb25 { margin-bottom:25px!important; }
.mb20 { margin-bottom:20px!important; }
.mb15 { margin-bottom:15px!important; }
.mb12 { margin-bottom:12px!important; }
.mb10 { margin-bottom:10px!important; }
.mb8 { margin-bottom:8px!important; }
.mb5 { margin-bottom:5px!important; }
.mb0 { margin-bottom:0!important; }

.mlr150 { margin-left:150px!important; margin-right:150px!important; }
.mlr115 { margin-left:115px!important; margin-right:115px!important; }
.mlr100 { margin-left:100px!important; margin-right:100px!important; }
.mlr80 { margin-left:80px!important; margin-right:80px!important; }
.mlr75 { margin-left:75px!important; margin-right:75px!important; }
.mlr70 { margin-left:70px!important; margin-right:70px!important; }
.mlr60 { margin-left:60px!important; margin-right:60px!important; }
.mlr55 { margin-left:55px!important; margin-right:55px!important; }
.mlr50 { margin-left:50px!important; margin-right:50px!important; }
.mlr45 { margin-left:40px!important; margin-right:45px!important; }
.mlr40 { margin-left:40px!important; margin-right:40px!important; }
.mlr35 { margin-left:35px!important; margin-right:35px!important; }
.mlr30 { margin-left:30px!important; margin-right:30px!important; }
.mlr25 { margin-left:25px!important; margin-right:25px!important; }
.mlr20 { margin-left:20px!important; margin-right:20px!important; }
.mlr15 { margin-left:15px!important; margin-right:15px!important; }
.mlr10 { margin-left:10px!important; margin-right:10px!important; }
.mlr5 { margin-left:5px!important; margin-right:5px!important; }
.mlr-1 { margin-left:-1px!important; margin-right:-1px!important; }
.mlr-5 { margin-left:-5px!important; margin-right:-5px!important; }
.mlr-10 { margin-left:-10px!important; margin-right:-10px!important; }
.mlr-20 { margin-left:-20px!important; margin-right:-20px!important; }
.mlr_auto { margin-left:auto!important; margin-right:auto!important; }

.mr60 { margin-right:60px!important; }
.mr50 { margin-right:50px!important; }
.mr40 { margin-right:40px!important; }
.mr30 { margin-right:30px!important; }
.mr25 { margin-right:25px!important; }
.mr20 { margin-right:20px!important; }
.mr15 { margin-right:15px!important; }
.mr10 { margin-right:10px!important; }
.mr5 { margin-right:5px!important; }
.mr0 { margin-right:0px!important; }
.mr-5 { margin-right:-5px!important; }

.ml260 { margin-left:260px!important; }
.ml180 { margin-left:180px!important; }
.ml80 { margin-left:80px!important; }
.ml50 { margin-left:50px!important; }
.ml40 { margin-left:40px!important; }
.ml32 { margin-left:32px!important; }
.ml30 { margin-left:30px!important; }
.ml20 { margin-left:20px!important; }
.ml15 { margin-left:15px!important; }
.ml10 { margin-left:10px!important; }
.ml0 { margin-left:0px!important; }
.ml-5 { margin-left:-5px!important; }
.ml-10 { margin-left:-10px!important; }
.ml-15 { margin-left:-15px!important; }
.ml-20 { margin-left:-20px!important; }

.ml_em5 { margin-left:5em!important; }

.mt140 { margin-top:140px!important; }
.mt130 { margin-top:130px!important; }
.mt120 { margin-top:120px!important; }
.mt90 { margin-top:90px!important; }
.mt80 { margin-top:80px!important; }
.mt70 { margin-top:70px!important; }
.mt60 { margin-top:60px!important; }
.mt55 { margin-top:55px!important; }
.mt50 { margin-top:50px!important; }
.mt45 { margin-top:45px!important; }
.mt40 { margin-top:40px!important; }
.mt30 { margin-top:30px!important; }
.mt20 { margin-top:20px!important; }
.mt15 { margin-top:15px!important; }
.mt10 { margin-top:10px!important; }
.mt5 { margin-top:5px!important; }
.mt3 { margin-top:3px!important; }
.mt0 { margin-top:0!important; }
.mt-5 { margin-top:-5px!important; }
.mt-10 { margin-top:-10px!important; }
.mt-20 { margin-top:-20px!important; }
.mt-30 { margin-top:-30px!important; }
.mt-40 { margin-top:-40px!important; }
.mt-50 { margin-top:-50px!important; }
.mt-80 { margin-top:-80px!important; }
.mt-125 { margin-top:-125px!important; }

.pb100 { padding-bottom:100px!important; }
.pb80 { padding-bottom:80px!important; }
.pb50 { padding-bottom:50px!important; }
.pb30 { padding-bottom:30px!important; }
.pb20 { padding-bottom:20px!important; }
.pb15 { padding-bottom:15px!important; }
.pb10 { padding-bottom:10px!important; }
.pb5 { padding-bottom:5px!important; }
.pb0 { padding-bottom:0!important; }

.p20 { padding:20px!important; }
.p15 { padding:15px!important; }
.p10 { padding:10px!important; }

.pt60 { padding-top:60px!important; }
.pt50 { padding-top:50px!important; }
.pt20 { padding-top:20px!important; }
.pt18 { padding-top:18px!important; }
.pt15 { padding-top:15px!important; }
.pt12 { padding-top:12px!important; }

.ptb30 { padding-top:30px!important; padding-bottom:30px!important; }
.ptb20 { padding-top:20px!important; padding-bottom:20px!important; }
.ptb15 { padding-top:15px!important; padding-bottom:15px!important; }
.ptb5 { padding-top:5px!important; padding-bottom:5px!important; }
.ptb0 { padding-top:0!important; padding-bottom:0!important; }

.pl23 { padding-left:23px!important; }
.pl10 { padding-left:10px!important; }

.pr10 { padding-right:10px!important; }

.plr40 { padding-left:40px!important; padding-right:40px!important; }
.plr25 { padding-left:25px!important; padding-right:25px!important; }

/* ▼font▼ */
.weight_300 { font-weight:300!important; }
.weight_400 { font-weight:400!important; }
.weight_500 { font-weight:500!important; }
.weight_700 { font-weight:700!important; }

.size10 { font-size:1rem!important; }
.size11 { font-size:1.1rem!important; }
.size12 { font-size:1.2rem!important; }
.size13 { font-size:1.3rem!important; }
.size14 { font-size:1.4rem!important; }
.size16 { font-size:1.6rem!important; }
.size17 { font-size:1.7rem!important; }
.size18 { font-size:1.8rem!important; }
.size19 { font-size:1.9rem!important; }
.size20 { font-size:2.0rem!important; }
.size22 { font-size:2.2rem!important; }
.size24 { font-size:2.4rem!important; }
.size26 { font-size:2.6rem!important; }
.size28 { font-size:2.8rem!important; }
.size30 { font-size:3.0rem!important; }
.size32 { font-size:3.2rem!important; }
.size34 { font-size:3.4rem!important; }
.size36 { font-size:3.6rem!important; }
.size54 { font-size:5.4rem!important; }
.size64 { font-size:6.4rem!important; }

.lh25 { line-height:2.5!important; }
.lh22 { line-height:2.2!important; }
.lh2 { line-height:2!important; }
.lh18 { line-height:1.8!important; }
.lh16 { line-height:1.6!important; }
.lh15 { line-height:1.5!important; }
.lh12 { line-height:1.2!important; }

.c_pink { color:#ee426f!important; }
.c_green { color:#8fd127!important; }
.c_gray { color:#b5b5b5!important; }
.c_dgray { color:#7c7c7c!important; }
.c_black { color:#141414!important; }
.c_white { color:#ffffff!important; }

/* ▼link▼ */
.u_line { padding-bottom:4px; border-bottom:solid 1px #70b108; }
.u_line.white { color:#fff; border-bottom:solid 1px #fff; }
.u_line.green { padding-bottom:2px; color:#8fd127; border-bottom:solid 1px #8fd127; }
.u_line.black { color:#404040; border-bottom:solid 1px #404040; }

/* ▼frame▼ */
.img_frame01 { border:solid 1px #fff; }

/* ▼line▼ */

/* ▼indent▼ */
.indent1 { margin-left:1em; text-indent:-1em; }
.indent2 { margin-left:2em; text-indent:-2em; }
.indent3 { margin-left:3em; text-indent:-3em; }
.indent4 { margin-left:4em; text-indent:-4em; }
.indent5 { margin-left:5em; text-indent:-5em; }
.indent6 { margin-left:6em; text-indent:-6em; }


/* ▼background▼ */
.bg_none { background:none!important; }

/* ▼border▼ */
.border_none { border:none!important; }

/* ▼form▼ */
input[type="text"], input[type="date"], input[type="tel"], input[type="email"], input[type="file"], input[type="password"], select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 60px;
	padding: 0 15px;
	vertical-align: middle;
	font-size: 1.4rem;
	font-weight: 500;
	color: #404040;
	line-height: 60px;
	background: #fff;
	border: solid 1px #ccc;
	font-family: "Noto Sans JP", sans-serif;
	border-radius: 4px;
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	box-sizing: border-box;
	position: relative;
	width: 100%!important;
	padding: 15px;
	font-size: 1.4rem;
	font-weight: 500;
	color: #404040;
	background: #fff;
	border: solid 1px #ccc;
	font-family: "Noto Sans JP", sans-serif;
	border-radius: 4px;
}

input[type="text"]:focus, input[type="date"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="file"]:focus, input[type="password"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
	border: solid 1px #ccc;
	outline: none;
}

input::-webkit-input-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

input:-ms-input-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

input::-moz-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

textarea::-webkit-input-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

textarea:-ms-input-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

textarea::-moz-placeholder {
	font-size: 1.4rem!important;
	color: #b5b5b5;
	font-weight: normal;
}

select {
	line-height: 58px;
	background: #fff url(../common_img/arrow_select.png) right 12px center no-repeat;
}

.pwd_look {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 20px;
	height: 20px;
	margin-top: -11px;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
}

input[type="radio"], input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
}

.radio_list li, .chk_list li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 40px;
	line-height: 30px;
	background-position: left center;
	background-repeat: no-repeat;
}

.radio_list li { background-image:url(../common_img/radio_box_off.png); }
.radio_list li.active { background-image:url(../common_img/radio_box_on.png); }

.chk_list li { background-image:url(../common_img/chk_box_off.png); }
.chk_list li.active { background-image:url(../common_img/chk_box_on.png); }

.radio_list.col, .chk_list.col { display:inline-block; vertical-align:middle; }

.radio_list.col li, .chk_list.col li {
	display: inline-block;
	margin: 10px 35px 10px 0;
}

.radio_list.col li:last-child, .chk_list.col li:last-child { margin-right:0; }

.radio_list.col.line_1 li, .chk_list.col.line_1 li { margin:0 35px 0 0; }

.chk_list.chk li { display:inline-block; }

.radio_icon, .chk_icon {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	line-height: 30px;
}

.radio_icon { background:url(../common_img/radio_box_off.png) left center no-repeat; }
.chk_icon { background:url(../common_img/chk_box_off.png) left center no-repeat; }

.radio_icon.active { background:url(../common_img/radio_box_on.png) left center no-repeat; }
.chk_icon.active { background:url(../common_img/chk_box_on.png) left center no-repeat; }

.radiobtn_list li, .chkbtn_list li {
	position: relative;
	float: left;
	height: 60px;
	margin: 0 10px 10px 0;
	text-align: center;
	line-height: 58px;
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 4px;
}

.radiobtn_list, .chkbtn_list { margin-bottom:-10px; }

.radiobtn_list.col_2 li, .chkbtn_list.col_2 li { width:350px; }
.radiobtn_list.col_2 li:nth-child(2n), .chkbtn_list.col_2 li:nth-child(2n) { margin-right:0; }

.radiobtn_list.col_3 li, .chkbtn_list.col_3 li { width:calc((100% - 20px) / 3); }
.radiobtn_list.col_3 li:nth-child(3n), .chkbtn_list.col_3 li:nth-child(3n) { margin-right:0; }

.radiobtn_list.app, .chkbtn_list.app { width:570px; }
.radiobtn_list.app li, .chkbtn_list.app li { width:275px; margin:10px 0; }
.radiobtn_list.app li:nth-child(2n), .chkbtn_list.app li:nth-child(2n) { float:right; }

.radiobtn_list li label, .chkbtn_list li label { display:block; width:100%; cursor:pointer; }

.radiobtn_list li.active, .chkbtn_list li.active {
	color: #fff;
	background: #8fd127;
	border: solid 1px #8fd127;
}

.input_file {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

.input_file.ex {
	height: 50px;
	line-height: 50px;
}

.input_file .input_txt {
	float: left;
	width: 505px;
	height: 60px;
	padding: 0 15px;
	color: #b5b5b5;
	line-height: 58px;
	border: solid 1px #ccc;
	border-radius: 4px;
}

.input_file.ex .input_txt {
	width: 350px;
	height: 50px;
	line-height: 48px;
}

.input_file .input_btn {
	float: right;
	width: 240px;
	margin-top: -2px;
}

.input_file.ex .input_btn {
	width: 170px;
}

.input_file input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	cursor: pointer;
	opacity: 0;
	z-index: 1;
}

.input_file.ex input[type="file"] {
	height: 50px;
}

.input_file:hover .btn01:before { opacity:0; }
