/*!
 * Custom Stylesheet
 * Copyright © マイナビ介護・福祉のシゴト
 */

/* --- Global --- */

body,
html {
	max-width: 100%;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	overflow-x: hidden;
	font-size: 100%;
	color: #333333;
	letter-spacing: 1px;
	line-height: 1.7;
	overflow-x: hidden;
}
a:hover,
.btn:hover,
button:hover {
	opacity: 0.9;
	cursor: pointer;
}
.relative {
	position: relative;
}
h1,
h2,
h3,
h4,
h5 {
	line-height: 1.8;
	font-weight: bold;
}
h1,
.sub-title {
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 15px;
}
h1.larger {
	font-size: 2.3em;
}
.sub-title {
	margin-bottom: 0;
	line-height: 2;
}
.txt-smaller {
	font-size: 0.9em;
	display: block;
}
.txt-small {
	font-size: 0.6em;
	display: block;
}
h2 {
	font-weight: bold;
	margin-bottom: 1.3em;
	font-size: 2em;
}
h3 {
	font-size: 1.4em;
	margin-bottom: 1em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.0em;
}
a {
	border-radius: 3px;
	font-weight: bold;
}
p {
	line-height: 2em;
	letter-spacing: 0.5px;
}
br.sp {
	display: none;
}
.mark {
	background-image: linear-gradient(#ffffff 50%, #f8f9fa 0%);
}
.triagle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 27.5px 0 27.5px;
	border-color: #009fe8 transparent transparent transparent;
	display: block;
	margin: 0 auto 5%;
}
.triagle.white {
	border-color: #ffffff transparent transparent transparent;
	border-color: #ffffff transparent transparent transparent;
	position: absolute;
	left: 50%;
	z-index: 10000;
	margin: 0 0 0 -25px;
	bottom: -24px;
}
.callout {
	height: 20px;
	width: 1px;
	border-right: 1px solid #333333;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: -3px;
}
.callout.white {
	border-color: #ffffff;
}
.callout.left {
	margin-right: 10px;
	-moz-transform: skew(30deg);
	-webkit-transform: skew(30deg);
	transform: skew(30deg);
}
.callout.right {
	margin-left: 10px;
	-moz-transform: skew(-30deg);
	-webkit-transform: skew(-30deg);
	transform: skew(-30deg);
    margin-right: 0;
}
.txt-larger {
	font-size: 1.3em;
	line-height: 1.5;
}
.txt-orange {
	color: #fe9900;
}
.txt-blue {
	color: #00abeb;
}
.txt-blue-dark {
	color: #105fad;
}
.txt-white {
	color: #ffffff;
}
.txt-light {
	color: #9ca7ab;
}
.bold {
	font-weight: bold;
}
.thin {
	font-weight: normal;
}
.border {
	border: 1px solid #eeeeee;
}
.border-b {
	border-bottom: 1px solid #eeeeee;
}
.divider-circle {
	border: 1px solid;
	border-radius: 500px;
	text-transform: uppercase;
	height: 45px;
	width: 45px;
	display: block;
	text-align: center;
	line-height: 44px;
	margin-top: -40px;
	background-color: #00a2de;
}
.btn-primary {
	width: 100%;
	max-width: 400px;
	padding: 1em;
	font-weight: bold;
	letter-spacing: 1px;
	border: none;
}
.btn-primary.icon {
	position: relative;
}
.btn-primary.icon svg {
	position: absolute;
	right: 15px;
	top: calc(50% - 10px);
}
.btn-primary.blue,
.btn-primary.blue:focus {
	background: #009ee8!important;
}
.btn-primary.orange,
.btn-primary.orange:focus {
	background: #fe9900!important;
}
.sp-show {
	display: none;
}
ul {
	padding: 0;
}
ul li {
	list-style: none;
}
ul.two-columns {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
	margin-bottom: 0;
}
.row.center,
.list-group.center {
	justify-content: center;
}
.container-fluid {
	padding: 0;
}
#main-content .container {
	padding: 3em 0;
}
.shadow-box {
	box-shadow: 0 1px 10px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .05);
}
.speech-bubble {
	background: #fff;
	margin: 0 auto;
	padding: 40px;
	text-align: center;
	position: relative;
}
.speech-bubble:after {
	content: "";
	position: absolute;
	box-shadow: 2px 2px 1px rgba(50, 50, 93, .05);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	bottom: -14px;
	left: 50%;
	border-width: 15px;
	border-style: solid;
	border-color: transparent #FFF #FFF transparent;
}
.rounded-corner-s {
	border-radius: 0.2em;
}
.rounded-corner-l {
	border-radius: 0.6em;
}
/* The animation starts here */

.animated-box {
	position: relative;
	padding: 1.5em;
    border: 1px solid #01A4E9;
}
.updown {
	animation: updown 1s ease-in infinite;
}
@keyframes updown {
	0% {
		transform: translateY(-5%);
	}
	50% {
		transform: translateY(3%);
	}
	100% {
		transform: translateY(-5%);
	}
}
#top-banner {
	animation: fadein ease-in 1s;
	-moz-animation: fadein ease-in 1s;
	/* Firefox */
	-webkit-animation: fadein ease-in 1s;
	/* Safari and Chrome */
	-o-animation: fadein ease-in 1s;
	/* Opera */
}
@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-moz-keyframes fadein {
	/* Firefox */
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes fadein {
	/* Safari and Chrome */
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-o-keyframes fadein {
	/* Opera */
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*-- Header Styles --*/

header {
	width: 100%;
	height: 100%;
}
header:after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background: -webkit-gradient(linear, left top, right bottom, from(#3baced), to(#3497d9));
	background: -moz-linear-gradient(left, #3baced, #3497d9);
	background: linear-gradient(left, #3baced, #3497d9);
	margin-top: 1.4em;
}
header object {
	width: 300px;
}
header .bt-reg {
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 0.9em;
	text-transform: uppercase;
	padding: 0.5em 2em;
	background-size: 200% auto;
	color: white;
	box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
	background-image: linear-gradient(to right, #155dc9 0%, #98deff 50%, #01a4e9 100%);
	transition: 0.5s;
	margin-top: -0.3em;
}
header .bt-reg:hover {
	background-position: right center;
}
#top-banner h3 {
	font-size: 1.2em;
	font-weight: normal;
}
#search-keywords ul li {
	width: 19%;
	float: left;
	margin: 0.5%;
}
.line {
	border-bottom: 1px solid;
	padding-bottom: 3px;
}
.line-orange {
	border-bottom: 2px solid #fe9900;
	padding-bottom: 5px;
}
.col-md-6 {
	max-width: 49%;
	margin: 0.5%;
}
.col-md-4 {
	max-width: 32%;
	margin: 0.5%;
}
.clear:after {
	content: "";
	display: block;
	clear: both;
}
.bubble-angled {
	background: url(../images/bg_callout_bubble_l.png) center center no-repeat;
	background-size: cover;
	width: 400px;
	height: 128px;
	line-height: 62px;
	margin: 0 auto;
	color: #333333;
	position: absolute;
	top: -41px;
	left: 50%;
	margin-left: -208px;
}
.bubble-s {
	background: url(../images/bg_callout_bubble_s.png) center center no-repeat;
	background-size: cover;
	width: 123px;
	height: 45px;
	line-height: 0;
	font-size: 12px;
	position: absolute;
	left: 35px;
	top: -15px;
	text-align: center;
	z-index: 100000;
}
.bubble-s .txt-larger {
	font-size: 1.5em;
}
#call-to-action .buttons {
	background-color: #00a2de;
	width: 50%;
	max-width: 650px;
	padding: 5em 4em;
	margin-top: -1em;
}
.social-login-list li.list-group-item {
	border: none;
}
/*-- LP1 Styles --*/

#lp1 #top-banner {
	background: url(../images/lp1/image-firstview.jpg) left top no-repeat;
	background-size: 100% auto;
	padding: 10% 0;
}
#lp1 #top-banner .container .title {
	margin-top: -3em;
	margin-right: -6em;
}
.bg-light {
	background-color: #f3f7f9;
}
.bg-light-blue {
	background-color: #eef5f7;
}
.bg-blue {
	background-color: #00abeb;
}
#features .title {
    display: flex;
    align-items: center;
    height: 130px;
}
#features .numbers {
	font-size: 3.5em;
	font-weight: bold;
	background: linear-gradient(to bottom, #01a4e9 0%, #155dc9 100%);
	background: -webkit-linear-gradient(to bottom, #01a4e9 0%, #155dc9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	float: left;
	width: 10%;
    min-width: 50px;
}
#features h4 {
    font-size: 1.3em;
	float: right;
	width: calc(100% - 50px);
}
/*-- LP2 Styles --*/

#lp2 #top-banner {
	background: url(../images/lp2/image-firstview.jpg) right top no-repeat;
	background-size: cover;
	padding: 10% 0;
}
#lp2 #top-banner .container .title {
	max-width: 600px;
}
#lp2 #top-banner .message {
	margin: 0;
}
#lp2 #search-keywords strong {
	color: #0f64b1;
}
#lp2 #call-to-action button img {
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -28px;
	width: 55px;
	height: auto;
}
#lp2 #job-list .col-md-4 {
	padding: 0;
}
#lp2 #job-list .col-md-4 h5 {
	position: relative;
	float: left;
	border-radius: 10px 0 0 10px;
	width: 40%;
	height: 100%;
	padding: 10% 2% 5%;
	text-align: center;
	color: #ffffff;
	font-size: 1em;
}
#lp2 #job-list .col-md-4 h5:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 30px 30px;
	border-color: transparent transparent #fe9900 transparent;
	right: 0;
	bottom: 0;
	position: absolute;
}
#lp2 #job-list .col-md-4.part-time h5:after {
	;
	border-color: transparent transparent #00abeb transparent;
}
#lp2 #job-list .col-md-4 h5 span {
	display: block;
}
#lp2 #job-list .col-md-4 h5 span.cross {
	font-size: 1.5em;
	font-weight: 100;
	line-height: initial;
}
#lp2 #job-list .col-md-4 h5 span.role {
	background-color: #ffffff;
	border-radius: 500px;
	width: fit-content;
	padding: 0 10%;
	font-size: 0.8em;
	margin: 15px auto 0;
}
#lp2 #job-list .col-md-4.full-time h5 {
	background-color: #245da0;
}
#lp2 #job-list .col-md-4.full-time h5 span.role {
	color: #245da0;
}
#lp2 #job-list .col-md-4.part-time h5 {
	background-color: #3f76b6;
}
#lp2 #job-list .col-md-4.part-time h5 span.role {
	color: #ffffff;
	background-color: #3f76b6;
	border: 1px solid;
}
#lp2 #job-list .col-md-4 ul {
	float: right;
	width: 50%;
	padding: 5% 2%;
	padding-inline-start: 0px;
	margin-bottom: 0;
}
#lp2 #job-list .col-md-4 ul li {
	list-style: disc;
	padding-left: 5%;
	margin: 8px 0;
}
#job-list .col-md-4 ul .txt-larger {
	font-size: 1.5em;
	margin: 0 2px;
}
/*-- LP3 Styles --*/

#lp3 #top-banner {
	background: url(../images/lp3/image-firstview.jpg) right top no-repeat;
	background-size: cover;
	padding: 5% 0 4%;
}
#lp3 h1 {
	font-size: 2.1em;
}
#lp3 .call-to-action {
	max-width: 400px;
	margin-top: -35px;
}
#lp3 .call-to-action .bubble-s {
	left: -25px;
}
#lp3 .bubble-s {
	line-height: 30px;
}
#lp3 #job-list {
	margin-top: -68px;
	padding-top: 2em;
}
#lp3 .message ul li {
	padding: 1.2em 0.5em;
	max-width: 29.3333333%;
	margin: 2%;
	line-height: 30px;
	border: 1px solid #b7e2f1;
    background-color: #ffffff;
    opacity: 0.9;
}
#lp3 .message ul li img {
	display: block;
	margin: 0 auto 15px;
	max-width: 50px;
}
#lp3 #job-list .job-item p span {
	background-color: #004aa3;
	border-radius: 500px;
	width: fit-content;
	padding: 7px 5%;
	font-size: 0.8em;
	margin: 15px 5px 0;
	color: #ffffff;
}
#lp3 #job-list .job-item p span.role {
	background-color: #00abeb;
	color: #ffffff;
}
#lp3 #job-list .job-item p span.part-time {
	background-color: #ffffff;
	border: 1px solid;
	color: #00abeb;
}
#lp3 #job-list .job-item {
	border: 1px solid #b7e2f1;
    background-color: #ffffff;
}
#lp3 #job-list .col-12 {
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}
#lp3 #job-list ul {
	max-width: 230px;
	margin: 0 auto;
}
#lp3 #job-list ul li {
	padding: 5px;
	border-bottom: 1px solid #b7e2f1;
}
#lp3 #job-list ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
#lp3 #job-list ul li img {
	max-width: 25px;
}
#lp3 #job-list .txt-larger {
	font-weight: bold;
}
.line-subtitle {
	line-height: 0.5;
	text-align: center;
	margin: 0 0 15px 62px;
}
.line-subtitle span {
	display: inline-block;
	position: relative;
}
.line-subtitle span:before,
.line-subtitle span:after {
	content: "";
	position: absolute;
	height: 5px;
	border-bottom: 1px solid #00abeb;
	top: 0;
	width: 45px;
}
.line-subtitle span:before {
	right: 100%;
	margin-right: 15px;
}
.line-subtitle span:after {
	left: 100%;
	margin-left: 15px;
}
#main-content .line-subtitle {
	margin: 0 0 10px 0px;
}
#main-content .line-subtitle span:before,
#main-content .line-subtitle span:after {
	width: 35px;
}
#points .row {
	padding: 2% 0;
}
#points img {
	height: fit-content;
}
#call-to-action .two-columns .arrow {
	position: absolute;
	left: 50%;
	margin-left: -54px;
	top: 50%;
	margin-top: -25px;
}
#call-to-action .two-columns li {
	height: 150px;
	background-size: contain;
	padding: 6% 0 5% 120px!important;
	font-size: 15px;
	font-weight: bold;
	color: #333333;
}
#call-to-action .two-columns li .txt-larger{
	font-size: 1.2em;
}
#call-to-action .two-columns li.question {
	padding-top: 12%!important;
	background: url(../images/lp3/bg-worry-customer.png) center center no-repeat;
}
#call-to-action .answer {
	background: url(../images/lp3/bg-idea-customer.png) center center no-repeat;
}
span.attention,p.attention{font-size: 12px;}