@charset "utf-8";
/* CSS Document */

/*
Theme Name: Careritz CMS
Version: 2022.01
Author: Star-labo inc.
Author URI: https://star-labo.co.jp/
Description: Original Theme Of Careritz&Partners Recruit Official Site
*/

@font-face {
	font-family: 'noto';
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400; 700&display=swap");
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400; 700&display=swap") format("opentype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'notoBold';
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap");
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap") format("opentype");
	font-weight: bold;
	font-style: bold;
}

@font-face {
	font-family: 'notoBL';
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap");
	src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap") format("opentype");
	font-weight: bolder;
	font-style: bolder;
}


/* ************************************************************* */
/*          COMMON Rayout 
/* ************************************************************* */
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "noto";
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	color: #022B1C;
	line-height: 25px;
	text-align: justify;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* ************************************************************* */
/*          Read More Button
/* ************************************************************* */
.readmore {
	width: 100%;
	margin: 0;
	float: left;
	z-index: 0;
}

.button{
	width:200px;
	height:70px;
	margin: 0 auto;
	border:1px solid #022B1C;
	border-radius: 5px;
	box-sizing: border-box;
	text-align:center;
	cursor:pointer;
	position:relative;
	box-sizing:border-box;
	overflow:hidden;
	background-color: #FFF;
}

.button.wide { width:800px; }

.button a{
	display: block;
	font-size:16px;
	color:#022B1C;
	text-decoration:none;
	line-height:68px;
	transition:all .5s ease;
	z-index:0;
	position:relative;
	background-image: url("../images/images/common/arr-more.png");
	background-repeat: no-repeat;
	background-position: center left 20px;
}

.button.wide a { background-position: center right 40%; }

.eff{
	width:200px;
	height:70px;
	left:-200px;
	background:#022B1C;
	background-image: url("../images/common/arr-more-w.png");
	background-repeat: no-repeat;
	background-position: center left 20px;
	position:absolute;
	font-size:16px;
	color: #FFF;
	line-height: 68px;
	transition:all .5s ease;
	z-index:1;
}

.wide .eff{ width:800px;left:-800px;background-position: center right 40%; }

.button:hover .eff{ left:0; }
.button:hover a{ color:#fff; }

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

	.button.wide { width:80%; }
	.button.wide a { background-position: center right 5%; }
	.wide .eff{ width:100%;left:-100%;background-position: center right 5%; }
}


/* ************************************************************* */
/*          Header Rayout 
/* ************************************************************* */
.head {
	width: 100%;
	margin: 0;
	padding: 0;
	height: 90px;
	background-color: #FFF;
	top:0;
	position: fixed;
	display: block;
	z-index: 999999;
}

.head .logo-common {
	display: block;
	width: 300px;
	height: 140px;
	margin: 0 auto;
	background-image: url("../images/common/logo_bg.png");
	background-position: bottom;
	background-repeat: no-repeat;
	text-align: center;
}

.head .logo-common a {
	display: block;
	color: #FFF;
	font-size: 16px;
	font-family: Georgia, "Times New Roman", Times, "serif";
	text-decoration: none;
}

.head .logo-common img {
	width: 230px;
	margin: 20px auto 10px;
}

.head .head_bar {
	top:25px;
	right:100px;
	display: block;
	position: fixed;
	z-index: 3;
}

.head .head_bar .btn {
	float: left;
	width: 240px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	margin: 0 10px 0 0;;
}

.head .head_bar .btn a {
	display: block;
	text-decoration: none;
	background-color: #399F4A;
	border: #399F4A 1px solid;
	box-sizing: border-box;
	border-radius: 25px 0 0 25px;
	color: #FFF;
	transition:all .5s ease;
}

.head .head_bar.single .btn a {
	border-color: #022B1C;
	border-radius: 0 0 0 0;
	background-color: #022B1C;
}

.head .head_bar .btn a:hover,
.head .head_bar .btn.entry a:hover {
	background-color: #FFF;
	color: #022B1C;
}

.head .head_bar .btn.entry a {
	background-color: #022B1C;
	border-radius: 0 25px 25px 0;
	border: #022B1C 1px solid;
	box-sizing: border-box;
	transition:all .5s ease;
}

.head .head_bar.single .btn.entry a { border-radius: 0 0 0 0; }


/*************************************************/
/*　　　　　画像表示効果
/*************************************************/
ul.list { margin: 0;padding: 0; }
.list li{ margin: 0;transition: .8s;list-style: none; }

/* 1つ目：縮小・拡大 */
.list-mv01{
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
}
.mv01{
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

/* 2つ目：opacity*/
.list-mv02{ opacity: 0; }
.mv02{ opacity: 1.0; }

/* 3つ目：回転 */
.list-mv03{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.mv03{
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}

/* 4つ目：3D回転 */
.list-mv04{
	transform:rotateY(0deg);
	-webkit-transform:rotateY(0deg);
}
.mv04{
	transform:rotateY(360deg);
	-webkit-transform:rotateY(360deg);
}

/* 5つ目：移動 */
.list-mv05{
	transform: translate(0,100px); 
	-webkit-transform: translate(0,100px); 
}
.mv05{
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/* ６つ目：縮小・拡大＆3D回転 */
.list-mv06{
	transform: scale(0, 0) rotateY(180deg);
	-webkit-transform: scale(0, 0) rotateY(180deg);
}
.mv06{
	transform: scale(1, 1) rotateY(360deg);
	-webkit-transform: scale(1, 1) rotateY(360deg);
}

/* ７つ目：移動（左から右）＋透明度 */
.list-mv07{
	opacity: 0;
	transform: translate(-100px,0); 
	-webkit-transform: translate(-100px,0); 
}
.mv07{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/* 8つ目：移動（右から左）＋透明度 */
.list-mv08{
	opacity: 0;
	transform: translate(100px,0); 
	-webkit-transform: translate(100px,0); 
}
.mv08{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

@media screen and (max-width:580px) {
	.list-mv08{
		transform: translate(-100px,0); 
		-webkit-transform: translate(-100px,0); 
	}
	.mv08 {
		transform: translate(0,0); 
		-webkit-transform: translate(0,0);
	}
}


/* **************************************************************** */
/*             CONTENTS  LAYOUT
/* **************************************************************** */
.contents {
	width: 100%;
	margin: 0;
	padding: 0;
	float: left;
	margin: 0;
}

.contents.common {
	width: 100%;
	margin: 0;
	padding: 100px 0;
	float: left;
	margin: 0;
}

.contents h1 {
	font-size: 7vw;
	font-weight: normal;
	font-style: italic;
	color: #FFF;
	margin: -10% 0 8.5% 50px;
	z-index: 99;
}

.contents h1 span {
	font-size: 4vw;
}

.contents.common h1 {
	width: 90%;
	margin: 100px 5%;
	padding: 0;
	text-align: center;
	color: #022B1C;
	font-size: 30px;
	text-shadow: initial;
}

.contents .main-img {
	width: 100%;
	/*margin: 90px 0 0;*/
	float: left;
	z-index: 0;
}

.contents .main-img img {
	z-index: 1;
}

.contents .main-img h1.title {
	width: 400px;
	height: 100px;
	/*top:190px;*/
	left:0;
	display: block;
	position: absolute;
	z-index: 99;
	text-align: center;
	font-size: 50px;
	font-family: 'noto';
	font-weight: normal;
	text-shadow: initial;
	line-height: 100px;
	padding: 0 130px 0 50px;
	/*margin: 30px 0 0;
	margin: 0;*/
	margin: -37px 0 0;
	background-image: url("../images/common/mainimg-h1bg.png");
	background-repeat: no-repeat;
	background-position: right;
}

.contents h2.common {
	width: 35%;
	height: 100px;
	background-color: #022B1C;
	color: #FFF;
	font-size: 25px;
	line-height: 100px;
	padding: 0 50px;
	margin: 50px 0;
	float: left;
}


/* **************************************************************** */
/*             Breadcrumbs  LAYOUT
/* **************************************************************** */
.custom-breadcrumbsWrap {
	color: #c8c8c8;
	text-align: left;
}
.custom-breadcrumbs a {
	color: #c8c8c8;
	text-decoration: none;
}
.custom-breadcrumbs .arrow {
	display: inline-block;
	content: '';
	width: 6px;
	height: 6px;
	border-top: solid 1.5px #c8c8c8;
	border-right: solid 1.5px #c8c8c8;
	margin-right: 10px;
	margin-left: 10px;
	transform: rotate(45deg);
}

@media screen and (min-width: 1101px) {
	.custom-breadcrumbsWrap{
		width: 1200px;
		margin: 9em 3em 0;
	}
	.contents.careerpath .custom-breadcrumbsWrap {
		margin: 9em 3em 3em;
	}
	.contents.interview .custom-breadcrumbsWrap,
	.contents.crosstalk .custom-breadcrumbsWrap {
		margin: 6.5em 3em 0.7em;
	}
	.contents.iv_detail .custom-breadcrumbsWrap {
		margin: 9em 3em 1em;
	}
}

@media screen and (max-width:1100px) {
	.custom-breadcrumbsWrap {
		margin: 9em 2em 0;
		display: flex;
		overflow-x: scroll;
		white-space: nowrap;
		word-break: keep-all;
	}
	.contents.ceo_message .custom-breadcrumbsWrap {
		margin: 9em 1.5em 0;
	}
	.contents.interview .custom-breadcrumbsWrap,
	.contents.crosstalk .custom-breadcrumbsWrap{
		margin: 7.2em 2em 0;
	}
	.contents.iv_detail .custom-breadcrumbsWrap {
		margin: 9em 3em 0;
	}
}	

@media screen and (max-width:980px) {
	.custom-breadcrumbsWrap {
		margin: 6.8em 2em 0;
	}
	.contents.ceo_message .custom-breadcrumbsWrap {
		margin: 7.3em 1.5em 0;
	}
	.contents.careerpath .custom-breadcrumbsWrap,
	.contents.entry .custom-breadcrumbsWrap {
		margin: 7em 2em 0;
	}
	.contents.interview .custom-breadcrumbsWrap,
	.contents.crosstalk .custom-breadcrumbsWrap {
		margin: 6.5em 2em 0;
	}
	.contents.iv_detail .custom-breadcrumbsWrap {
		margin: 6.6em 3em 0;
		padding-bottom: 1px;
		text-shadow: 0px 0px 1px #ffffff;
	}
}

@media screen and (max-width:480px) {
	.custom-breadcrumbsWrap {
		margin: 6.5em 1.5em 0;
	}
	.contents.ceo_message .custom-breadcrumbsWrap {
		margin: 4.3em 1.5em 0;
	}
	.contents.careerpath .custom-breadcrumbsWrap,
	.contents.entry .custom-breadcrumbsWrap {
		margin: 6em 1.5em 0;
	}
	.contents.interview .custom-breadcrumbsWrap {
		margin: 5.6em 1.5em 0;
	}
	.contents.iv_detail .custom-breadcrumbsWrap {
		margin: 5.7em 1.5em 0;
		padding-bottom: 2px;
	}
	.contents.crosstalk .custom-breadcrumbsWrap {
		margin: 4.8em 1.5em 0;
	}
}


/* **************************************************************** */
/*             お申し込み完了  LAYOUT
/* **************************************************************** */

@media screen and (min-width: 981px) {
	.contents.single .main-img h1.title {
		margin-top: 3px;
	}
	.contents.single h2 {
		margin-top: 16%;
	}
}

@media screen and (max-width: 980px) {
	.contents.single {
		margin-top: 5px;
	}
}


/* **************************************************************** */
/*             FOOTER  LAYOUT
/* **************************************************************** */
.footer.fixed-bg {
	min-height: 100vh;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	width: 100%;
	float: left;
}

.footer.bg-01 { background-image: url("../images/common/footer_bg.jpg"); }

.footer .btn {
	width: 800px;
	height: 180px;
	margin: 100px auto 0px;
}

.footer .btn a {
	display: block;
	width: 100%;
	height: 150px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-decoration: none;
	background-color: #c8c8c8;
	color: #022b1c;
	font-size: 3vw;
	font-style: normal;
	font-weight: bold;
	border: #022B1C 2px solid;
	border-radius: 10px;
	transition:all .5s ease;
	background-image: url("../images/common/arr-more-l.png");
	background-repeat: no-repeat;
	background-position: center right 20px;
}

.footer .btn a:hover {
	background-color: #399F4A;
	color: #FFF;
	background-image: url("../images/common/arr-more-l.png");
	border: #022B1C 2px solid;
}

.footer .btn a .title {
	top: 50px;
	display: block;
	position: relative;
	font-size: 3vw;
}

.footer .btn a .title span {
	display: inline-block;
	font-size: 1.2vw;
	padding-top: 20px;
}


.footer .blog {
	width: 100%;
	height: 120px;
	margin: 0px auto 120px;
	text-align: center;
}

.footer .blog a {
	display: inline-block;
	width: 382px;
	height: 120px;
	margin: 0px 15px 10px;
	padding: 0;
	text-align: center;
	text-decoration: none;
	background-color: #c8c8c8;
	color: #022B1C;
	font-size: 3vw;
	font-style: normal;
	font-weight: bold;
	border: #022B1C 2px solid;
	border-radius: 10px;
	transition:all .5s ease;
	background-image: url("../images/common/arr-more-l.png");
	background-repeat: no-repeat;
	background-position: center right 20px;
	background-size: 30px;
}

.footer .blog a:hover {
	background-color: rgba(255,255,255,0.70);
	color: #022B1C;
	background-image: url("../images/common/arr-more-l.png");
	border: #022B1C 2px solid;
}

.footer .blog a .title {
	top:35px;
	display: block;
	position: relative;
	font-size: 1.8vw;
}

.footer .blog a .title span { font-size: 1.0vw; }

.footer .foot-nav {
	bottom: 0;
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 60px 0 20px;
	background-color: rgba(0,0,0,0.50);
	float: left;
}

.footer .foot-nav .pc {
	width: 23%;
	float: left;
	margin: 0 1% 50px;
	padding: 0;
	list-style: none;
}

.footer .foot-nav ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer .foot-nav ul a {
	padding: 3px 0;
	/*display: block;*/
	color: #FFF;
	text-decoration: none;
	transition:all .5s ease;
	box-sizing: border-box;
}

.footer .foot-nav ul a:hover {
	border-bottom: #FFF 1px solid;
}

.footer .foot-nav ul a:hover:after {
	content: " →";
}

.footer .foot-nav ul li {
	margin: 0 0 10px;
}

.footer .foot-nav ul li ul {
	width: 95%;
	margin: 10px 0 0 5%;
}

.footer .foot-nav .logo {
	width: 90%;
	margin: 20px 5%;
	float: left;
	text-align: right;
}


/****************************************************
/*               page-top
*****************************************************/
.pagetop {
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 99999;
	display: block;
}

.pagetop a { 
	font-size: 10px;
	font-weight:bold;
	display: block;
	line-height: 13px;
	padding-top: 20px;
	width: 52px;
	height: 52px;
	background-color: #399F4A;
	border-radius: 10px;
	box-sizing: border-box;
	color: #ffffff;
	background-image: url("../images/common/arr-top-w.png");
	background-position: center top 4px;
	background-repeat: no-repeat;
	transition:all .7s ease;
	text-align: center;
}

.pagetop a:hover { 
	background-color: rgba(2,43,28,0.7);
	cursor: pointer;
}