@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=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #F5F5F5;
    --color-font: #272727;
    --color-primary: #272727;
    --color-primary-shade: #7E7E7E;
    --color-primary-tint: #D1D1D1;
    --color-secondary: #E75331;
    --color-border: #ccc;
    --color-table-border: #ccc;

    --body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Noto Serif JP', serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #272727;
    --header-color-primary: #E75331;
    --header-color-primary-shade: #D1D1D1;

    --footer-background: #272727;
    --footer-color-font: #fff;
    --footer-color-primary: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    color: var(--color-font);
    font-size: var(--px16);
}
.pad_anchor{
    display: block;
    margin-top: -100px !important;
    padding-top: 100px !important;
}

/*--メディアクエリ--------------------------------------------*/
@media print, screen and (min-width: 1024px) {}
@media print, screen and (max-width: 1023px) {}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}


/*------------------------------------------------------
ベース修正
------------------------------------------------------*/
#front_top_content, #front_bottom_content {
    background: #fff;
}
#front-sectionPost {
    width: 90%;
}
.postlist .post_text {
    padding: 20px 0;
}
.page_contents_inner + .page_contents_inner {
    margin-top: var(--px120);
}
.txt_c_l {
    text-align: center !important;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left !important;
    }
}
.w50.text_box {
    margin-bottom: 0;
}
/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: var(--px100) 0;
	margin-top: 0;
	background: var(--color-background02);
}
.wide_inner {
    margin: 0 auto;
    max-width: var(--content-max-width);
    width: 90%;
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

/*------------------------------------------------------
カラムリスト
------------------------------------------------------*/
/*---------col02-----------*/

.post .col2_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col2_list > li {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 600px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col03-----------*/

.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
}
.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}
.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
@media print, screen and (max-width: 768px) {
	.post .col3_list > li {
		width: 49%;
        margin-bottom: 8%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/

.post .col4_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col4_list > li {
    width: 24%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*------------------------------------------------------
Hover
------------------------------------------------------*/
a:hover {
    opacity: .7;
    cursor: pointer;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
.color_w {
    color: #fff !important;
}

.post p, p {
    font-size: var(--rem16);
    line-height: 2;
}
.post p.txtstyle01, p.txtstyle01 {
    font-family: var(--font-family02);
    font-weight: 700;
    line-height: 1.65;
    font-size: min(calc(2.4rem + (1vw - 1.92rem) * 0.3883) ,24px);
}
.post .read_text p, .read_text p {
    font-size: var(--rem16);
    margin-bottom: 1em;
}
.post .read_text p:last-child, .read_text p:last-child {
    font-size: var(--rem16);
    margin-bottom: 0;
}


h1.title, .post h1, header#h1Header h1.title {
    font-family: var(--font-family02);
    font-weight: 800;
    letter-spacing: .1em;
}

.post h2, h2,
h1.title.top-loop,
h1.title.bottom-loop {
    font-size: var(--rem36);
    font-family: var(--font-family02);
    font-weight: 600;
    letter-spacing: .14em;
    padding: 0;
    margin: 0 auto var(--px60);
}
.post h2::after, h2::after,
h1.title.top-loop::after,
h1.title.bottom-loop::after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: 2.2em;
    height: 2px;
    background: var(--color-primary);
    margin: 0.3em auto 0;
}
.post h2.color_w::after,
h2.color_w::after {
    background: #fff;
}
.post h2.txt_l::after,
h2.txt_l::after {
    margin: 0.3em 0 0;
}
.post h3, h3 {
    font-family: var(--font-family02);
    font-weight: 700;
    font-size: var(--rem24w);
    padding: 0 0 .4em;
    margin: 0 auto var(--px30);
    border-bottom: 1px solid var(--color-primary);
}


/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary);
    font-weight: 600;
    padding: var(--rem20) 30px var(--rem20) 20px;
    margin: 0 auto;
    border: solid 2px;
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: var(--color-primary);
    background: #fff;
    border-color: var(--color-primary);
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: var(--color-primary);
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}

/* 小さいボタン */
.linkBtn.btn_s, .post .linkBtn.btn_s, a.linkBtn.btn_s, .post .subimitarea .linkBtn.btn_s input[type="submit"] {
    font-size: var(--rem14);
    max-width: 200px;
    padding: var(--rem14) 30px var(--rem14) 20px;
}
/* 白ボタン */
.linkBtn.color_w, .post .linkBtn.color_w, a.linkBtn.color_w, .post .subimitarea .linkBtn.color_w input[type="submit"] {
    color: var(--color-primary) !important;
    background: #fff !important;
}
.post .linkBtn.color_w::after, .linkBtn.color_w::after, a.linkBtn.color_w::after {
    border-color: var(--color-primary) !important;
}
.post .linkBtn.color_w:hover, .linkBtn.color_w:hover, a.linkBtn.color_w:hover, .post .subimitarea .linkBtn.color_w input[type="submit"]:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: 2px solid #fff;
}
.post .linkBtn.color_w:hover::after, .linkBtn.color_w:hover::after, a.linkBtn.color_w:hover::after {
    border-color: #fff !important;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}
nav#mainNav ul li a b, nav#mainNav ul li a span {
    font-family: var(--font-family02);
    font-weight: 700;
}
.spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
    background: var(--header-color-font);
}
.spmenu #menu p {
    color: var(--header-color-font);
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
}
#header ul.header__contact {
    margin-left: var(--px20);
}

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: var(--header-color-primary-shade);
    color: var(--header-color-font);
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
}
#header a.head_btn.tel_btn .tel_icon::before {
    content: '\f095';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1;
    padding-right: 6px;
}
#header a.head_btn .tel_text-sub {
    font-size: 1.2rem;
}
#header a.head_btn.tel_btn:hover {
    opacity: .7;
}

/* メールボタン */
#header a.head_btn.mail_btn {
    flex-direction: row;
    gap: 8px;
    background: var(--header-color-font);
}


nav#mainNav ul li a:hover {
	background: #fff !important;
	opacity: 1 !important;
}
/* SP */
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a {
		padding: 16px;
	}
	nav#mainNav ul li a {
		border-bottom: 1px solid var(--color-border);
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.post ul#sitemap_list li {
	margin-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	padding-left: 0;
	padding-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	border-bottom: 1px solid var(--color-border);
}

/*------------------------------------------------------
お問い合わせ
------------------------------------------------------*/
.post h2.contact_title {
	font-family: var(--font-family01);
	text-align-last: left;
	font-size: min(calc(3.0rem + (1vw - 1.92rem) * 0.6472), 3.0rem);
	margin: 0 auto var(--px30);
    text-align: left;
}
.post h2.contact_title::after {
    content: none;
}
.aligncenter {
	text-align-last: left;
	font-family: var(--font-family01);
	font-weight: normal;
    line-height: 1.85;
}
.wpcf7-form .must {
	background: var(--color-secondary);
}
.contact_area {
	font-family: var(--font-family01);
	font-weight: normal;
}
.contact_area th {
	font-weight: bold;
}
.contact_area th.sup {
	font-size: 1.2rem;
	color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
	font-family: var(--font-family01);
}
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select, textarea {
    margin-bottom: 0;
}
.agreement_text {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 完了 */
.post .thanks_btn {
    margin: var(--px60) auto 0 !important;
    display: block;
}
@media print, screen and (max-width: 768px) {
    .post .thanks {
        text-align: left;
    }
}


/*------------------------------------------------------
CTA
------------------------------------------------------*/
#foot-contact_pt05 {
    clear: both;
    position: relative;
    background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding: min(calc(90px + (1vw - 19.2px) * 1.9417), 90px) calc((100vw - 100%) / 2);
    z-index: 0;
}
body.home #foot-contact_pt05.foot_bottom {
	display: none;
}
#foot-contact_pt05 .wrapper_content {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, .8);
    padding: var(--px100) var(--px60);
    max-width: 1600px;
}
#foot-contact_pt05 .wrapper_content h2 {
    text-align: center;
}

#foot-contact_pt05 ul.contactbtn_list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: min(calc(15px + (1vw - 19.2px) * 0.6472), 15px);
    max-width: 1000px;
    margin: min(calc(40px + (1vw - 1.92rem) * 1.2945),40px) auto;
    z-index: 10;
}
#foot-contact_pt05 ul.contactbtn_list > li {
    width: 100%;
}
#foot-contact_pt05 ul.contactbtn_list > li a.f-contact_btn {
    width: 100%;
    max-width: none;
    min-width: inherit;
}
#foot-contact_pt05 ul.contactbtn_list:first-child {
    margin-top: 0;
}
#foot-contact_pt05 ul.contactbtn_list:last-child {
    margin-bottom: 0;
}
/*レスポンシブ対応*/
@media print, screen and (min-width: 769px) {
    #foot-contact_pt05 ul.contactbtn_list > li {
            width: calc((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2);
    }
}
/*FireFox対応*/
@-moz-document url-prefix() {
    @media print, screen and (min-width: 769px) {
            #foot-contact_pt05 ul.contactbtn_list > li {
                    width: calc(((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2) - 1px);
            }
    }
}

#foot-contact_pt05 a.f-contact_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #FFF;
    font-family: var(--font-family02);
    font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    padding: min(calc(20px + (1vw - 19.2px) * 0.5178), 20px) min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
    transition: .3s;
}
#foot-contact_pt05 a.f-contact_btn::after {
    content: none;
}
#foot-contact_pt05 a.f-contact_btn.telBtn {
    color: var(--color-font);
    background: #fff;
    border: 3px solid var(--color-font);
}
#foot-contact_pt05 a.f-contact_btn.telBtn:hover {
    color: #fff;
    background: var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn {
    color: #fff;
    background: var(--color-primary);
    border: 3px solid var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn:hover {
    color: var(--color-primary);
    background: #FFF;
}

#foot-contact_pt05 a.f-contact_btn .ico::before {
    display: inline-block;
    font-size: min(calc(3rem + (1vw - 19.2px) * 0.5825), 3rem);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: .4em;
}
#foot-contact_pt05 a.f-contact_btn.telBtn .ico {
    display: block;
    font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.4531), 3.2rem);
}
#foot-contact_pt05 a.f-contact_btn .ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.5178), 2.4rem);
}
#foot-contact_pt05 a.f-contact_btn.telBtn .ico::before {
    content: '\f3cd';
}
#foot-contact_pt05 a.f-contact_btn.mailBtn .ico::before {
    content: '\f0e0';
}
#foot-contact_pt05 a.f-contact_btn .note {
    font-size: var(--rem14);
    font-weight: 500;
    letter-spacing: .1rem;
}

@media print, screen and (max-width: 768px) {
    #foot-contact_pt05 a.f-contact_btn {
            height: 110px;
    }
    #foot-contact_pt05 ul.contactbtn_list {
            gap: 15px;
    }
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
.about {
	position: relative;
	background: url(/wp-content/uploads/bg_greet.jpg) no-repeat center / cover;
	padding: var(--px80) 0 var(--px100);
}
.about_inner {
    max-width: 720px;
    width: 90%;
    margin: 0 auto;
}
.post .about h2, .about h2 {
    margin: 0 auto var(--px40);
}


.job {
    position: relative;
	background: url(/wp-content/uploads/bg_topService.png) no-repeat center / cover;
	padding: var(--px120) 0;
}
.job_inner {
    max-width: 1320px;
    width: 90%;
    margin: 0 auto;
}

.post ul.job_list.col2_list li {
    width: 48%;
    margin-bottom: 6%;
}
.post ul.job_list li img {
    display: block;
    width: 100%;
    margin-bottom: var(--px30);
}
.post ul.job_list li h3 {
    font-size: var(--rem30);
    margin: 0 0 var(--px20) 0;
    padding: 0;
    border-bottom: none;
    letter-spacing: .14em;
    font-weight: 600;
}
@media print, screen and (max-width: 414px) {
    .post ul.job_list.col2_list {
        display: flex;
        flex-direction: column;
        gap: var(--px60);
    }
    .post ul.job_list.col2_list li {
        width: 100%;
        margin-bottom: 0;
    }
}

.column {
	position: relative;
    background: url(/wp-content/uploads/bg_company.jpg) no-repeat center /cover;
    padding: 0 0 var(--px120);
}
.column_wrap {
	position: relative;
    width: 100%;
    margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: center;
	z-index: 20;
}
.column .imgarea {
	position: relative;
	overflow: hidden;
	width: 60%;
}
.column .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column .txtarea {
	position: relative;
	width: 45%;
	 display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px80) var(--px40);
	margin: 0 auto -70px -5%;
	z-index: 10;
}
.column .txtarea .txtinner {
    max-width: 540px;
}
.column_wrap + .column_wrap {
	margin-top: var(--px80);
}
.post .column .txtarea h2 {
    margin: 0 0 var(--px30);
}

@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column_wrap.rev .txtarea {
		margin: 0 -5% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column_wrap.rev {
		flex-direction: row;
	}
	.column .imgarea, .column .txtarea {
		width: 90%;
	}
	.column .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
	}
}

.postlist .time {
    background: var(--color-primary-shade);
}

/*------------------------------------------------------
事業内容
------------------------------------------------------*/
.teleco_v1_inner {
    display: flex;
    flex-direction: column;
    gap: var(--px80);
}
.teleco_v1 {
    align-items: center;
    gap: var(--px60);
}


/*------------------------------------------------------
採用情報
------------------------------------------------------*/
.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem); /* 3.2-2.4rem (1920-375) */
    font-family: var(--font-family02);
	font-weight: 700;
}
.marker.gray {
    background: linear-gradient(transparent 60%, #D1D1D1 60%);
    padding: 0 20px;
}


/*------------------------------------------------------
投稿
------------------------------------------------------*/
.single-post h1.title {
    text-align: center;
    border-bottom: 1px solid var(--color-font);
    padding-bottom: 12px;
    margin: 0 auto var(--px40);
}
.dateLabel {
    display: none;
}
article.category-work .post >*,
article.category-news .post >*  {
    margin-bottom: 2em;
}

