@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #333;
	--color-primary: #F6AD3C;
	--color-primary-shade: #30B1AE;
	--color-primary-tint: #30B1AE;
	--color-secondary: #ED6A5A;
	--color-table-border: #DDD;
	--color-table-th: #f2f2f2;
	--body-font-family: 'Zen Maru Gothic', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #444;
	--header-color-primary: #F6AD3C;
	--header-color-primary-shade: #30B1AE;
	--header-color-primary-tint: #30B1AE;
	/*------▼フッター設定▼------*/
	--footer-background: #30B1AE;
	--footer-color-font: #FFF;
	--footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Zen Maru Gothic', sans-serif;
	--font-family02: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}
/*--------------------------------------------------
	親CSS調整
--------------------------------------------------*/
.post {
	background: none;
}
.post table th {
	background: var(--color-table-th);
}
@media print, screen and (min-width: 1024px) {
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
}
/*--------------------------------------------------
	オリジナル設定
--------------------------------------------------*/
.fs { font-size: 85%; }
.fm { font-size: 115%; }
.fm2 { font-size: 130%; }
.red { color: #FC0000; }
.b { font-weight: bold; }
.pick { color: var(--color-primary); }
p.txt_ind { text-indent: -1em; margin-left: 1em; }
p.nm { padding-bottom: 0; }
/**/
.cen { text-align: center; }
.lft { text-align: left; }
.rit { text-align: right; }
.pad_anchor { margin-top: -115px; padding-top: 115px; }
/* 非表示用 */
@media print, screen and (min-width: 641px){ /* PC用 */
	.dsp_smt { display: none; }
	.cen_pc { text-align: center; }
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.dsp_hp { display: none; }
}
/*--------------------------------------------------
	ヘッダ
--------------------------------------------------*/
@media only screen and (min-width: 1024px) {
	#header a.head_btn.tel_btn {
		background: none;
		color: var(--color-primary-shade);
		text-align: center;
	}
	#header a.head_btn.tel_btn span:not(.note) {
		font-size: 20px;
		font-family: var(--font-family01);
	}
	#header a.head_btn.tel_btn span:not(.note)::before {
		margin-right: 8px;
		font-size: 80%;
		font-weight: 400;
		font-family: 'FontAwesome';
		content: '\f095';
	}
	#header a.head_btn.tel_btn .note {
		font-size: 11px;
	}
	#header a.head_btn {
		text-align: center;
	}
	#header a.head_btn::before {
		display: none;
	}
	#header a.head_btn.mail_btn b {
		display: block;
		font-size: 14px;
	}
	#header a.head_btn.mail_btn b+span {
		font-size: 10px;
		font-weight: normal;
	}
	/**/
	nav#mainNav {
		height: auto;
	}
	nav#mainNav ul li a span {
		color: var(--header-color-primary) !important;
	}
	nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover, nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-parent a, nav#mainNav ul li.current-menu-ancestor a {
		background: none;
	}
	nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-ancestor li.current-menu-item a, nav#mainNav ul li.current-menu-ancestor li a:hover {
		background: #f6f6f6;
	}
}
@media only screen and (max-width: 1300px) and (min-width: 1024px){
	#header .logo {
		width: 20%;
	}
	#header .logo img {
		width: auto;
		height: auto;
		max-width: 100%;
	}
	nav#mainNav ul li a {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media only screen and (max-width: 1023px) {
	body.mobile { margin-top: 60px; }
	body.mobile #breadcrumb { margin-top: 0; }
	body.mobile #header { z-index: 200; }
}
/*--------------------------------------------------
	フッタ
--------------------------------------------------*/
#footer {
	
}
/* ロゴの大きさ調整
#footer .footer__logo img {
	max-height: var(--px100);
}
*/
#copyright {
	background: none;
}
/*--------------------------------------------------
	共通
--------------------------------------------------*/
.bg_wide { position: relative; }
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
.box_w2_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_w2_sp.rev { flex-direction: row-reverse; }
.box_w2_sp.vtop { align-items: flex-start; }
.box_w2_sp.vcen { align-items: center; }
.box_w2_sp.vbtm { align-items: flex-end; }
.box_pad { padding: 20px; box-sizing: border-box; }
.box_w2 .column2_50:not(.cen) { text-align: left; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.bg_fix::before { background-attachment: fixed !important; }
	.box_w2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_w2.rev { flex-direction: row-reverse; }
	.box_w2.vtop { align-items: flex-start; }
	.box_w2.vcen { align-items: center; }
	.box_w2.vbtm { align-items: flex-end; }
	.box_pad { padding: 30px; }
	.box_w2 .column3_33 { width: 32%; }
	.box_w2 .column2_50 { width: 48.5%; }
	.box_w2 .column2_60 { width: 57%; }
	.box_w2 .column2_70 { width: 67%; }
	.box_w2 .column2_80 { width: 77%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
.post p {
	line-height: 1.8;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }
/**/
.post .time, .postlist .time, .post2b .time, .post4b .time {
	background: var(--color-primary-shade);
}
/**/
#front-sectionPost .txt_c .linkBtn,
.post .linkBtn {
	width: auto;
	max-width: 95%;
	padding: 10px 50px;
	padding-right: 70px;
	border-radius: 999px;
}
/*--------------------------------------------------
	トップページ
--------------------------------------------------*/
#front-sectionPost .listTitle h1.title,
#content h1 {
	font-family: var(--font-family02);
}
#front-sectionPost .listTitle h1.title::after,
#content h1::after {
	content: "";
	display: block;
	width: 75px;
	height: 3px;
	background: var(--color-primary-shade);
	margin: auto;
	margin-top: 10px;
}
.home #content h1,
#front-sectionPost .listTitle h1.title {
	background: url(/wp-content/uploads/bg-title.png) no-repeat center center / contain;
	padding: 60px 0;
	margin-bottom: 0;
}
#front-sectionPost .listTitle h1.title span span,
#content h1 b {
	display: block;
	color: var(--color-primary-shade);
	font-size: var(--rem20);
}
/**/
#top_service .txt {
	padding: 30px;
}
#top_service .photo01 {
	border-top-right-radius: 80px;
	overflow: hidden;
}
#top_service .photo02 {
	border-bottom-left-radius: 80px;
	overflow: hidden;
}
@media print, screen and (min-width: 641px){ /* PC用 */	
	#top_service .txt {
		padding: 60px 5%;
	}
}
/**/
#top_recruit::before {
	background: url(/wp-content/uploads/bg-top-recruit.jpg) no-repeat center center / cover;
}
#top_greeting::before {
	background: url(/wp-content/uploads/bg-top-greeting.jpg) no-repeat center center / cover;
}
.top_box .txt {
	background: #fff;
	padding: 30px;
}

@media print, screen and (min-width: 960px){ /* PC用 */	
	.top_box .txt {
		width: 50vw;
		padding: 60px 5%;
		position: relative;
	}
	.top_box .photo {
		width: 75vw;
		overflow: hidden;
	}
	#top_recruit .photo {
		margin-right: -25vw;
		border-radius: 0 80px 80px 0;
	}
	#top_recruit .txt {
		border-radius: 80px 0 0 80px;
	}
	#top_greeting .photo {
		margin-left: -25vw;
		border-radius: 80px 0 0 80px;
	}
	#top_greeting .txt {
		border-radius: 0 80px 80px 0;
	}
}

/**/
#contact_box::before {
	background: url(/wp-content/uploads/bg-contact-box.jpg) no-repeat center center / cover;
}
#contact_box h1 {
	padding: 0 !important;
	background: none !important;
}
#contact_box .in {
	background: #fff;
	border-radius: 30px;
}
#contact_box .btn {
	width: 800px;
	max-width: 100%;
	margin: auto;
}
#contact_box .btn a {
	height: 100%;
	min-height: 100px;
	padding: 15px;
	background: var(--color-primary-shade);
	color: #fff;
	line-height: 1.5;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 999px;
}
#contact_box .btn a i {
	margin-right: 8px;
}
#contact_box .btn .tel a b {
	font-size: 150%;
}
#contact_box .btn a:hover,
#contact_box .btn .mail a {
	background: var(--color-primary);
	color: #fff;
}
#contact_box .btn .mail a:hover {
	background: var(--color-primary-shade);
	color: #fff;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#contact_box .btn li {
		width: 48%;
	}
	#contact_box .in {
		border-radius: 80px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#contact_box .btn li {
		margin-bottom: 1rem;
	}
}

/**/
#front_top_content,
#front_bottom_content {
	background: none;
	padding-top: 0;
}
/*--------------------------------------------------
	見出し
--------------------------------------------------*/
h1.title, .post h1, .post h2, .post h3, .post h4 {
	color: var(--color-font);
}
.post h2.noline::after {
	display: none;
}
.post h3.noline {
	padding: 0;
	border: none;
}
.post h2.sub {
	font-family: var(--font-family02);
	text-align: left;
	font-size: var(--rem30);
}
.post h2.sub b {
	display: block;
	color: var(--color-primary-shade);
	font-size: var(--rem20);
}
.post h2.sub::after {
	background: var(--color-primary-shade);
	margin-left: 0;
	width: 4.2em;
}
.post h2.sub_ttl b {
	display: block;
	color: var(--color-primary);
	font-size: var(--rem16);
}
.post h2.sub_ttl b+span {
	color: var(--color-primary-shade);
}
.post h3.sub {
	padding: 0;
	border: 0;
}
.post h3.sub b {
	color: var(--color-primary-shade);
	display: inline-block;
	margin-right: 5px;
}
.post h3.sub b+span {
	color: var(--color-primary);
	font-size: var(--rem16);
}
/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
/**/
.post table,
.post table th,
.post table td {
	background-color: transparent;
}
.post table th {
	background: #E4F6E0;
}
/*--------------------------------------------------
	ぽかぽか・COZY
--------------------------------------------------*/
#pokapoka.sub_msg_box {
	background: url(/wp-content/uploads/bg-pokapoka01.jpg) no-repeat center center / cover;
	position: relative;
}
#pokapoka.sub_msg_box::after {
	content: "";
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(left, rgba(246,173,60,0.8), rgba(136,90,19,0.1) 80%); 
	background: -webkit-linear-gradient(left, rgba(246,173,60,0.8), rgba(136,90,19,0.1) 80%); 
	background: linear-gradient(to right, rgba(246,173,60,0.8), rgba(136,90,19,0.1) 80%); 
	position: absolute;
	top: 0;
	left: 0;
}
#cozy.sub_msg_box {
	background: url(/wp-content/uploads/bg-cozy01.jpg) no-repeat center center / cover;
	position: relative;
}
#cozy.sub_msg_box::after {
	content: "";
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(left, #30B1AE, rgba(41,196,180,0.1) 70%); 
	background: -webkit-linear-gradient(left, #30B1AE, rgba(41,196,180,0.1) 70%); 
	background: linear-gradient(to right, #30B1AE, rgba(41,196,180,0.1) 70%); 
	position: absolute;
	top: 0;
	left: 0;
}
.sub_msg_box .txt {
	color: #fff;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.sub_msg_box .pickup_txt {
	font-size: var(--rem28);
}
@media print, screen and (min-width: 960px){ /* PC用 */	
	.sub_msg_box .txt {
		margin-right: 50%;
		padding: 80px 30px;
	}
}
@media only screen and (max-width: 959px) { /* タブレット用 */
	#pokapoka.sub_msg_box::after {
		background: -moz-linear-gradient(left, rgba(246,173,60,0.8), rgba(136,90,19,0.1)); 
		background: -webkit-linear-gradient(left, rgba(246,173,60,0.8), rgba(136,90,19,0.1)); 
		background: linear-gradient(to right, rgba(246,173,60,0.8), rgba(136,90,19,0.1)); 
	}
}
@media only screen and (max-width: 959px) and (min-width: 641px) { /* タブレット用 */
	.sub_msg_box .txt {
		margin-right: 20%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.sub_msg_box .txt {
		margin-right: 0;
		text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	}
}
#feature {
	column-gap: 2%;
	row-gap: 1.5rem;
}
#feature dl dd b {
	display: block;
	margin: 1rem auto;
	text-align: center;
}
@media print, screen and (min-width: 641px){ /* PC用 */	
	#feature dl {
		width: 32%;
	}
}
/**/
.sub_service_detail .box_w2_sp {
	border-bottom: solid 1px #DEDEDE;
}
.txt_yellow {
	color: var(--color-primary);
}
@media print, screen and (min-width: 641px){ /* PC用 */	
	.sub_service_detail .illust {
		width: 30%;
	}
	.sub_service_detail .txt {
		width: 65%;
	}
}
#company_tbl th {
	width: 20%;
	white-space: nowrap;
}
#company_tbl.bg_pink th {
	background: #FBECD5;
}
/*--------------------------------------------------
	採用情報
--------------------------------------------------*/
#recruit_tbl th {
	width: 20%;
	white-space: nowrap;
}
.marker.orange {
	background:linear-gradient(transparent 60%, rgba(246,173,60,0.6) 0%);
	background: -moz-linear-gradient(transparent 60%, rgba(246,173,60,0.6) 0%); 
    background: -webkit-linear-gradient(transparent 60%, rgba(246,173,60,0.6) 0%);
}
.ex_text {
	font-size: var(--rem24);
}
/*--------------------------------------------------
	プライバシーポリシー その他
--------------------------------------------------*/
#breadcrumb ul li b,
#sitemap_list li a b {
	display: none;
}
/*--------------------------------------------------
	お問い合わせ
--------------------------------------------------*/
.wpcf7-form select {
	width: auto;
}
.wpcf7-form .must_fn {
	float: none;
}
/* ボタン */
.post form.wpcf7-form .linkBtn {
	width: 200px !important;
	padding: 0;
}
.post form.wpcf7-form .linkBtn .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.post form.wpcf7-form .linkBtn input[type="submit"] {
	padding: 15px 35px;
}