@charset "utf-8";

/* ---------------------------------------------
CSS Info

 File name:  layout.css
 Style Info: 共通レイアウト

------------------------------------------------ */
.container {
	position: relative;
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.container.medium {max-width: 980px;}
.container.small {max-width: 800px;}

@media screen and (max-width:767px) {
	.pc-only {display: none;}
}
@media screen and (min-width:768px) {
	.sp-only {display: none;}
}



/* HEADER
------------------------------------------------ */
.l-header a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.header__functions_item {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.header__functions_item li {border-right: 1px solid #e3e3e3;}
.header__functions_item li a {color: #111;}
.header__functions_item li a:hover {
	background: #f3f3f3;
}
.header__functions_btn {
	display: block;
	text-align: center;
}
.header__functions_btn i {
	display: block;
	color: #f7a3bc;
}

@media screen and (max-width:979px) {
	.l-header {
		position: fixed;
		width: 100%;
		height: 96px;
		top: 0;
		left: 0;
		background: #FFF;
		box-shadow: 0px 0px 5px 1px rgba(0,0,0,.15);
		z-index: 900;
	}
	.header__inner {position: relative;}

	.header__logo-block {
		position: absolute;
		top: 8px;
		left: 2%;
	}
	.header__logo-block_logo img {
		width: 147px;
		height: 24px;
		vertical-align: bottom;
	}

	.header__tel-block {
		position: absolute;
		top: 10px;
		right: 2%;
		line-height: 1;
	}
	.header__tel-block a {
		display: block;
		height: 28px;
		line-height: 28px;
		padding: 0 1em;
		background: #ff7c35;
		border-radius: 4px;
		font-size: 12px;
		font-size: 1.2rem;
		font-weight: 700;
		color: #FFF;
	}
	.header__tel-block a i {margin-right: 2px;}

	.header__functions {
		position: absolute;
		width: 100%;
		height: 48px;
		left: 0;
		top: 47px;
		border-top: 1px solid #e3e3e3;
	}
	.header__functions_item li {flex: 1;}
	.header__functions_item li a {height: 48px;}
	.drawer-hamburger {
		display: block;
		width: 100%;
		height: 48px;
		border: 0;
		outline: 0;
		background: #e3e3e3;
		text-align: center;
	}
	.drawer-hamburger:hover {cursor: pointer;}
	.drawer-hamburger i {
		display: block;
		color: #dd134f;
	}
	.header__functions_btn,
	.drawer-hamburger {
		padding-top: 5px;
		font-size: 11px;
		font-size: 1.1rem;
	}
	.header__functions_btn i,
	.drawer-hamburger i {
		margin-bottom: 2px;
		font-size: 16px;
		font-size: 1.6rem;
	}
	.header__functions_btn {padding-top: 8px;}
	.drawer-hamburger {padding-top: 5px;}

	.drawer-open {overflow: hidden !important;}
	.drawer-nav {
		position: fixed;
		z-index: 999;
		top: 0;
		overflow: hidden;
		width: 272px;
		height: 100%;
		padding: 0 0 40px;
		background-color: #f3f3f3;
		color: #111;
		line-height: 1;
		overflow-y: scroll;
	}
	.drawer-overlay {
		position: fixed;
		z-index: 920;
		top: 0;
		left: 0;
		display: none;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .75);
	}
	.drawer-overlay:after {
		position: absolute;
		content: "";
		top: 16px;
		right: 8px;
		width: 32px;
		height: 32px;
		background: url("../images/nav-close.png") no-repeat left top;
		background-size: 32px;
	}
	.drawer-open .drawer-overlay {display: block;}
	.drawer--left .drawer-nav {
		left: -272px;
		-webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
		transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	}
	.drawer--left.drawer-open .drawer-nav {left: 0;}
	.drawer--left .drawer-hamburger,
	.drawer--left.drawer-open .drawer-navbar .drawer-hamburger,
	.drawer--left.drawer-open .drawer-hamburger {right: 0;}




	#mobileNavi .mn-wrap {margin-top: 24px;}
	#mobileNavi .mn-wrap .mn-tit {
		margin-bottom: 24px;
		text-align: center;
	}
	#mobileNavi .mn-wrap .mn-tit img {
		width: 150px;
		height: auto;
		vertical-align: bottom;
	}
	#mobileNavi .mn-box {padding: 0 16px;}
	#mobileNavi .mn-box .mn-main-nav {border-top: 1px solid rgba(0,0,0,.15);}
	#mobileNavi .mn-box li {border-bottom: 1px solid rgba(0,0,0,.15);}
	#mobileNavi .mn-box li a {
		display: block;
		position: relative;
		padding: 1em 1.5em 1em 0;
		color: #111;
		line-height: 1;
	}
	#mobileNavi .mn-box .mn-main-nav li a {font-weight: bold;}
	#mobileNavi .mn-box .mn-main-nav li a i {
		margin-right: .5em;
		color: #dd134f;
	}
	#mobileNavi .mn-box li a:hover {color: #dd134f;}
	#mobileNavi .mn-box li a:after {
		position: absolute;
		right: 0;
		font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
		color: #f7a3bc;
	}
	#mobileNavi .mn-box .mn-sub-nav {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#mobileNavi .mn-box .mn-sub-nav li {width: 48%;}
	#mobileNavi .mn-box .mn-sub-nav li:nth-child(odd) {margin-right: 4%;}
	#mobileNavi .mn-box .mn-sub-nav li a {
		font-size: 12px;
		font-size: 1.2rem;
	}
	#mobileNavi .mn-wrap .mn-contact {
		margin-top: 28px;
		padding: 0 16px;
		text-align: center;
	}
	#mobileNavi .mn-wrap .mn-contact a {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 40px;
		background: #2ca681;
		border-bottom: 2px solid #258d6e;
		border-radius: 4px;
		font-weight: bold;
		color: #FFF;
		text-align: center;
	}
	#mobileNavi .mn-wrap .mn-contact a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f044";
		margin-right: 8px;
	}

	.header__logo-block_txt,
	.header__tel-block .pc,
	.gnavi {display: none;}
}
@media screen and (min-width:980px) {
	.l-header {border-bottom: 1px solid #e3e3e3;}
	.header__inner {
		width: 96%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.header__upper {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack:end;
    -webkit-flex-pack:end;
    -ms-flex-pack:end;
    -webkit-justify-content:flex-end;
    justify-content:flex-end;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		padding: 12px 0;
	}

	.header__logo-block {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		margin-right: auto;
	}
	.header__logo-block_logo {margin-right: 16px;}
	.header__logo-block_logo img {
		width: 164;
		height: 32px;
		vertical-align: bottom;
	}
	.header__logo-block_txt {
		font-size: 12px;
		font-size: 1.2rem;
	}

	.header__tel-block {
		margin-right: 24px;
		line-height: 1.2;
	}
	.header__tel-block_num {
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 30px;
		font-size: 3rem;
		font-weight: 700;
		letter-spacing: -0.03em;
	}
	.header__tel-block_num:before {
		display: inline-block;
		content: "";
		width: 34px;
		height: 22px;
		margin-right: 4px;
		background: url("../images/freedial.png") no-repeat;
		background-size: 34px 22px;
	}
	.header__tel-block_time {
		font-size: 12px;
		font-size: 1.2rem;
	}

	.header__functions_item {border-left: 1px solid #e3e3e3;}
	.header__functions_btn {
		padding: 4px 12px;
		font-size: 13px;
		font-size: 1.3rem;
	}
	.header__functions_btn i {
		font-size: 28px;
		font-size: 2.8rem;
	}

	.header__tel-block .sp,
	.sp-toggle,
	.drawer-hamburger,
	#mobileNavi {display: none;}

	/*----- G NAVI -----*/
	.gnavi ul {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
	.gnavi ul li {flex: 1;}
	.gnavi ul li:not(:last-child) {margin-right: 1px;}
	.gnavi ul li a {
		display: block;
		padding: 12px 0;
		background: #e91e63;
		font-size: 18px;
		font-size: 1.8rem;
		font-weight: bold;
		color: #FFF;
		text-align: center;
		line-height: 1;
	}
	.gnavi ul li a:hover {background: #f48aae;}
	.gnavi ul li:first-child a {border-radius: 8px 0 0 0;}
	.gnavi ul li:last-child a {border-radius: 0 8px 0 0;}
}


/* メインコンテンツ
------------------------------------------------ */
.mainContainer {
	display:block; /* IE対策 */
}
#contents {background: #f0e5e8;}

@media screen and (max-width:979px) {
	.mainContainer {margin-top: 96px !important;}
	.idx-contents .l-wrap,
	.cm-contents .l-wrap {padding: 24px 0 64px;}
}
@media screen and (min-width:980px) {
	.l-wrap {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
	.idx-contents .l-wrap {padding: 40px 0 80px;}
	.cm-contents .l-wrap {padding: 24px 0 80px;}
	.l-main {
		margin-right: 32px;
		flex: 1;
	}
	.l-side {width: 300px;}
}


/* サイド
------------------------------------------------ */
/*--- サイド：共通要素 ---*/
.side-cm-sec {
	position: relative;
	margin-bottom: 24px;
	padding: 0 16px 24px;
	background: #FFF;
}
.side-cm-sec:before {
	display: block;
	content: "";
	width: 100%;
	border-top: 4px solid #dd134f;
}
.side-sec_ttl {
	margin-top: .75em;
	padding-bottom: .75em;
	border-bottom: 2px solid #d3d3d3;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.side-sec_ttl i {
	margin-right: .5em;
	color: #dd134f;
}


/*--- サイド：検索---*/
.searchform-wrap {
	font-size: 15px;
	font-size: 1.5rem;
}
.searchform-wrap .form__heading {
	margin-bottom: .25em;
	font-weight: bold;
	color: #454545;
}
.searchform-wrap .form__value {margin-bottom: 1em;}
.form__value select,
.form__value input[type="text"] {
	width: 100%;
	height: 40px;
	padding: .25em .5em;
	border: 1px solid #cacaca;
	border-radius: 4px;
}
.form__value .salary-box {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.form__value .salary-box span {margin: 0 4px;}
.form__value .checkbox-box {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-style: solid;
	border-color: #e3e3e3;
	border-width: 1px 0 0 1px;
}
.form__value .checkbox-box label {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
	padding: .75em .5em;
	border-style: solid;
	border-color: #e3e3e3;
	border-width: 0 1px 1px 0;
	cursor: pointer;
}
.form__value .checkbox-box input {display: none;}
.form__value .checkbox-box .form-check__parts {
	position: relative;
	display: block;
	padding-left: 1.5em;
	line-height: 1.2;
}
.form__value .checkbox-box .form-check__parts:before {
  content: "\f0c8";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.5em;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	color: #ccc;
}
.form__value .checkbox-box input:checked + .form-check__parts:after{
  content: "\f14a";
  display: block;
  position: absolute;
	top: 50%;
	margin-top: -.5em;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #f63876;
}
.form__submit {margin-top: 24px;}
.form__submit_btn {
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	border: none;
	overflow: hidden;
	width: 100%;
	height: 48px;
	line-height: 48px;
	border-radius: 24px;
	padding: 0 40px;
	background: #ff7c35;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #FFF !important;
	cursor: pointer;
}

/*--- サイド：ブログ ---*/
.side-blog {
	margin: 16px 0;
	padding-bottom: 24px;
	background: #FFF;
	border-radius: 8px 8px 0 0;
}
.side-blog_ttl {
	padding: .75em;
	background: #fac3d3;
	border-radius: 8px 8px 0 0;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.side-blog_ttl i {
	margin-right: .5em;
	color: #dd134f;
}
.side-blog_list {padding: 0 16px;}
.side-blog_list li {border-bottom: 1px solid #d3d3d3;}
.side-blog_list li a {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	position: relative;
	padding: 16px 0;
	color: #111;
}
.side-blog_list li a:hover {opacity: .5;}
.side-blog_list .thumb {width: 64px;}
.side-blog_list .thumb img {vertical-align: bottom;}
.side-blog_list .desc {
	padding-left: 16px;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.5;
	flex: 1;
}
.side-blog_list .desc .date {
	font-size: 12px;
	font-size: 1.2rem;
	color: #787878;
}
.side-blog .more {
	margin-top: 16px;
	padding: 0 16px;
	font-weight: bold;
	text-align: right;
	line-height: 1;
}
.side-blog .more a {
	display: block;
	color: #f7a3bc;
}
.side-blog .more a i {margin-left: 8px;}

/*--- サイド：採用担当 ---*/
.for-client {
	margin: 16px 0;
	border: 4px solid #e3e3e3;
	background: #FFF;
}
.for-client a {
	position: relative;
	display: block;
	padding: 12px 2em 12px 12px;
	color: #111;
}
.for-client a:after {
	position: absolute;
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #ccc;
	right: 12px;
	top: 50%;
	margin-top: -.85em;
}
.for-client .ttl {
	font-weight: bold;
	text-align: center;
}
.for-client .txt {
	font-size: 13px;
	font-size: 1.3rem;
}


/* FOOTER
------------------------------------------------ */
.footer-contents {background: #f7f7f7;}
.footer-contents_ttl {
	margin-bottom: .25em;
	font-weight: bold;
}
.footer-relation {border-bottom: 1px solid #CCC;}
.footer-relation__list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.footer-relation__list li a img {vertical-align: bottom;}
.footer-about {border-top: 1px solid #FFF;}
.footer-about p {
	font-size: 12px;
	font-size: 1.2rem;
}
.footer-btm {background: #f7a3bc;}
.footer-btm a {color: #FFF;}
.footer-btm a:hover {color: #dd134f;}
.footer-logo img {
	width: 196px;
	height: 32px;
	vertical-align: bottom;
}
.footer-navi {
	letter-spacing: -.40em;
	font-size: 14px;
	font-size: 1.4rem;
}
.footer-navi li {
	letter-spacing: normal;
	display: inline-block;
}
.footer-navi li:not(:last-child) {margin-right: 1.5em;}
.footer-navi a:before {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 4px;
}
.footer-copy {
	padding: .5em .25em;
	background: #dd134f;
	font-size: 12px;
	font-size: 1.2rem;
	color: #FFF;
	text-align: center;
}

@media screen and (max-width:767px) {
	.footer-contents {padding: 24px 0;}
	.footer-relation {padding-bottom: 24px;}
	.footer-relation__list {
		 display: flex;
		-webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	}
	.footer-relation__list li {
		width: 49%;
		margin-bottom: 8px;
	}
	.footer-relation__list li:nth-child(odd) {margin-right: 2%;}
	.footer-about {padding-top: 16px;}
	.footer-btm {
		padding: 16px 0;
		text-align: center;
	}
	.footer-navi {margin-top: 16px;}
}
@media screen and (min-width:768px) {
	.footer-contents {padding: 40px 0;}
	.footer-relation {padding-bottom: 32px;}
	.footer-relation__list li {width: 150px;}
	.footer-relation__list li:not(:last-child) {margin-right: 8px;}
	.footer-about {padding-top: 24px;}
	.footer-btm {padding: 24px 0;}
	.footer-btm__inner {
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-direction:row-reverse;
    -moz-flex-direction:row-reverse;
    flex-direction:row-reverse;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
	}
}
