@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');


/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #eee;
    --color-font: #111;
    --color-primary: #242422;
    --color-primary-shade: #F5F5F5;
    --color-primary-tint: #EDEDED;
    --color-secondary: #E80303;
    --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: 'Oswald', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #F5F5F5;
    --header-color-font: #111;
    --header-color-primary: #242422;
    --header-color-primary-shade: #EDEDED;
    --header-color-primary-tint: #EDEDED;

    --footer-background: #F5F5F5;
    --footer-color-font: #111;
    --footer-color-primary: #242422;
}

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;
}
/* .post h2::after {
    content: none;
}
.post h3 {
    padding: 0;
    border: none;
} */
#front-sectionPost {
    width: 94%;
}
.postlist .post_text {
    padding: 20px 0;
}
.front_contents {
    padding-top: 0;
}

/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: var(--color-background01);
}
.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;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
h1.title.top-loop,
h1.title.bottom-loop {
    font-size: var(--rem48);
    line-height: 1.45;
    font-weight: 800;
    text-align: center;
    margin: 0 0 var(--px50);
}
.post .txtarea h2.top_ttl {
    font-size: var(--rem48);
    line-height: 1.45;
    font-weight: 800;
    text-align: left;
    margin: 0 0 var(--px30);
}
.post .txtarea h2.top_ttl::after {
    content: none;
}
.post .txtarea p.sub_ttl {
    font-size: var(--rem28);
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: var(--px20);
}
.post .txtarea p.top_text {
    font-size: var(--rem16);
    line-height: 1.85;
}
@media print, screen and (min-width: 1400px) {
    h1.title.top-loop,
    h1.title.bottom-loop {
        font-size: var(--rem60);
        margin: 0 0 var(--px50);
    }
    .post .txtarea h2.top_ttl {
        font-size: var(--rem60);
        margin: 0 0 var(--px50);
    }
    .post .txtarea p.sub_ttl {
        font-size: var(--rem36);
        margin-bottom: var(--px40);
    }
}

.post h2.lower_ttl, h2.lower_ttl {
    font-size: var(--rem40);
    font-weight: 800;
}
.post h2.lower_ttl::after, h2.lower_ttl::after {
    content: none;
}


/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    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: 1px solid var(--color-primary);
    border-radius: 0;
    transition: all .3s;
}
.linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn:hover input[type="submit"] {
    background: #fff;
    color: var(--color-font);
}
.post .subimitarea .linkBtn input[type="submit"] {
    border: none;
}
.post .subimitarea .linkBtn:hover input[type="submit"] {
    border: none;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
.sticky-header #header > .inner {
    background: var(--header-background);
}
#header a.head_btn.tel_btn::before {
    display: none;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) min(calc(3.5rem + (1vw - 1.92rem) * 2.1205), 35px);
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
}
#header a.head_btn:hover {
    background: #fff;
    color: var(--header-color-font);
}

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: var(--color-secondary-tint);
    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 {
    margin-bottom: 0.2em;
}
#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 {
    background: var(--header-color-font);
    color: #fff;
}
/* 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
------------------------------------------------------*/
#footer .social ul li {
	text-align: center;
	margin-bottom: 30px;
}
#footer .social ul {
	display: flex;
    gap: 10px;
    margin: 0 auto;
    justify-content: center;
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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);
    padding: 0;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select, textarea {
    margin-bottom: 0;
}

.post .wpcf7 table {
    border: none;
}
.post .wpcf7 table th,
.post .wpcf7 table td {
    padding: 20px 16px;
    border: none;
    border-top: 1px solid var(--color-table-border);
    border-bottom: 1px solid var(--color-table-border);
}
.post .wpcf7 table th {
    width: 30%;
    background: #fff;
}

.post p.contact_message, p.contact_message {
    font-size: var(--rem16);
    margin-bottom: var(--px60);
    line-height: 2.4;
}

@media print, screen and (max-width: 640px) {
    .post .wpcf7 table th {
            border-right: none;
            border-bottom: none;
            border-top: none;
            padding-bottom: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            justify-content: space-between;
    }
    .post .wpcf7 table td {
            border-top: none;
            padding-top: 5px;
    }
    .post .wpcf7 table tr:first-child {
            border-top: 1px solid var(--color-table-border);
    }
}

/* 完了 */
.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: var(--color-primary);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding: var(--px120) 0;
    z-index: 0;
}
body.home #foot-contact_pt05.footer_bottom {
    display: none;
}
.wrapper_content {
    position: relative;
    z-index: 3;
}
#foot-contact_pt05 .wrapper_content h2.cta_ttl {
    color: #fff;
    font-size: var(--rem48);
    line-height: 1.45;
    font-weight: 800;
    text-align: center;
    margin: 0 0 var(--px50);
}
@media print, screen and (min-width: 1400px) {
    #foot-contact_pt05 .wrapper_content h2.cta_ttl {
        font-size: var(--rem60);
        margin: 0 0 var(--px60);
    }
}
#foot-contact_pt05 .wrapper_content h2.cta_ttl::after {
    content: none;
}
#foot-contact_pt05 .wrapper_content .cta_text {
    color: #fff;
    font-size: var(--rem16);
    font-weight: 700;
    text-align: center;
    margin: 0 auto var(--px30);
}
#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%;
    text-align: center;
    line-height: 1.6;
    padding: 24px;
    transition: .3s;
}
#foot-contact_pt05 a.f-contact_btn.telBtn {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid #fff;
}
#foot-contact_pt05 a.f-contact_btn.telBtn:hover {
    color: var(--color-font);
    background: var(--color-primary-shade);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn {
    color: var(--color-font);
    background: #fff;
    border: 1px solid #fff;
}
#foot-contact_pt05 a.f-contact_btn.mailBtn:hover {
    background: var(--color-primary);
    color: #fff;
}

#foot-contact_pt05 a.f-contact_btn::after {
    content: none;
}
#foot-contact_pt05 a.f-contact_btn .ico::before {
    display: inline-block;
    font-size: var(--rem28);
    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);
    font-weight: 700;
    margin: 4px 0;
}
#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.mailBtn .ico {
    background: transparent;
    color: var(--color-font);
    width: 80%;
    font-weight: 700;
    margin: 10px auto;
}
#foot-contact_pt05 a.f-contact_btn.mailBtn .ico:hover {
    background: transparent;
    color: #fff;
}

#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: 1.5rem;
    font-weight: 700;
    letter-spacing: .15rem;
}
#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: center;
    max-width: 94%;
    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: 789px) {
    #foot-contact_pt05 ul.contactbtn_list > li {
            width: calc((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2);
    }
    #foot-contact_pt05 ul.contactbtn_list {
            max-width: 100%;
    }
}

/*FireFox対応*/
@-moz-document url-prefix() {
    @media print, screen and (min-width: 789px) {
            #foot-contact_pt05 ul.contactbtn_list > li {
                    width: calc(((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2) - 1px);
            }
    }
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
.about {
	position: relative;
	padding: 0 0 var(--px80);
	margin: var(--px100) 0 0;
}
.about:before {
    content: "";
    background: var(--color-primary-tint);
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.about_wrap {
	position: relative;
	max-width: 1600px;
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.about .txtarea {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: var(--px60);
}
.about .txtarea .txtinner {
    max-width: 610px;
}
.about .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.about .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .about .txtarea {
        padding: var(--px40) 0 var(--px80);
    }
}


.job {
	position: relative;
}
.job_wrap {
	align-items: center;
    gap: var(--px60);
}
.job .txtarea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.job .txtarea .txtinner {
    max-width: 720px;
}
.job .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.job .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .job .txtarea {
        width: 90%;
        margin: 0 auto;
        padding: var(--px40) 0 var(--px80);
    }
}

.map_inner {
    position: relative;
	max-width: 1600px;
	width: 90%;
    margin: 0 auto;
    padding: var(--px80);
    border: 10px solid var(--color-font);
    background: var(--color-primary-shade);
}
.map_wrap {
    align-items: center;
    gap: var(--px50);
}
.map_area img {
    max-width: 217px;
    width: 217px;
    margin-bottom: var(--px40);
}
.post ul.map_list li {
    margin-bottom: .3em;
}
.post ul.map_list li:last-child {
    margin-bottom: 0;
}
@media print, screen and (max-width: 768px) {
    .map_wrap iframe {
        width: 100%;
        margin-bottom: var(--px30);
    }
    .map_inner {
        border: 5px solid var(--color-font);
        padding: var(--px40);
    }
}

/*------------------------------------------------------
会社概要
------------------------------------------------------*/
.post table.lower_table th,
.post table.lower_table td {
    padding: 20px;
}
.post table.lower_table th {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid #fff;
}
#company iframe {
    width: 100%;
}

.recruit {
    background: var(--color-primary-tint);
    padding: var(--px120) 0;
}
.recruit_inner {
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
}
.recruit_inner p.recruit_text {
    font-size: var(--rem16);
    line-height: 1.85;
    max-width: 1012px;
    width: 96%;
    margin: var(--px50) auto var(--px80);
}


body.page-company #content.wide {
    padding: var(--px100w) 0 0 !important;
}

/*------------------------------------------------------
事業内容
------------------------------------------------------*/
.service_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: var(--px80);
}
.service {
    align-items: center;
    gap: var(--px60);
}
.post h3.service_ttl, h3.service_ttl {
    font-size: var(--rem30);
    font-weight: 800;
    text-align: left;
    padding: 0 0 var(--px14) 0;
    border: none;
    border-bottom: 1px solid var(--color-font);
    margin-bottom: var(--px30);
}
.post p.service_text, p.service_text {
    font-size: var(--rem16);
    line-height: 1.85;
}

article.category-news .post >*  {
    margin-bottom: .5em;
}