@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=Oswald:wght@200..700&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #333;
	--color-primary: #B90104;
	--color-primary-shade: #F8E6E6;
	--color-primary-tint: #B08A89;
	--color-secondary: #E80303;
	--color-table-border: #D6D6D6;
	--color-table-th: #F8E6E6;
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #444;
	--header-color-primary: #B90104;
	--header-color-primary-shade: #FFF;
	--header-color-primary-tint: #B08A89;
	/*------▼フッター設定▼------*/
	--footer-background: #B90104;
	--footer-color-font: #FFF;
	--footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
}
/*--------------------------------------------------
	親CSS調整
--------------------------------------------------*/
.post {
	background: none;
}
.post p {
	line-height: 1.8;
}
.post table th {
	background: var(--color-table-th);
	font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
}
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a {
		background-color: var(--header-background) !important;
	}
	nav#mainNav ul li li a {
		color: var(--header-color-font) !important;
	}
}
/*--------------------------------------------------
	オリジナル設定
--------------------------------------------------*/
.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: -100px; padding-top: 100px; }
/* 非表示用 */
@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; }
	.pad_anchor { margin-top: -80px; padding-top: 80px; }
}
/*--------------------------------------------------
	ヘッダ
--------------------------------------------------*/
@media only screen and (min-width: 1024px) {
	#header a.head_btn.tel_btn::before {
		display: none;
	}
	#header a.head_btn.tel_btn {
		background: none;
		text-align: center;
		color: var(--header-color-font);
	}
	#header a.head_btn.tel_btn span:not(.note) {
		font-size: 22px;
	}
	#header a.head_btn.tel_btn span:not(.note)::before {
		margin-right: 8px;
		font-size: 85%;
		font-weight: 400;
		font-family: 'FontAwesome';
		content: '\f095';
	}
	#header a.head_btn.tel_btn .note {
		font-size: 11px;
	}
	#header ul.header__contact li:last-child {
		padding-left: 0;
	}
	#header a.head_btn.mail_btn {
		flex-direction: row;
	}
	#header a.head_btn.mail_btn::before {
		margin: 0 8px 0 0;
		font-size: 95%;
	}
	/**/
	nav#mainNav {
		height: auto;
	}
	nav#mainNav ul li a span {
		font-weight: normal;
	}
	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; }
}
/*--------------------------------------------------
	フッタ
--------------------------------------------------*/
/* ロゴの大きさ調整
#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_w2.hcen { justify-content: center; column-gap: 2%; }
	.box_w2.htop { justify-content: flex-start; column-gap: 2%; }
	.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%; }
	.box_w2 .w45 { width: 45%; }
	.box_w2 .w50 { width: 50%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	/* tableにスクロールバーを追加 */
	.tbl_scroll { overflow: auto; margin-bottom: 15px; white-space: nowrap; }
	.tbl_scroll table { margin-bottom: 0; }
	.tbl_scroll::-webkit-scrollbar{ height: 5px; }
	.tbl_scroll::-webkit-scrollbar-track{ background: #F1F1F1; }
	.tbl_scroll::-webkit-scrollbar-thumb { ackground: #BCBCBC; }
	.box_w2 .w45+.w50 { margin-top: 20px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
#content .linkBtn {
	width: auto;
	max-width: none;
	border-radius: 0;
	padding: 15px 60px;
	line-height: 1.4;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#content .linkBtn {
		padding: 15px 30px;
	}
}
#front-sectionPost .txt_c .linkBtn,
.post .arow_btn {
	background: none;
	border-radius: 0;
	border-bottom: solid 2px #1A1A1A;
	font-family: var(--font-family02);
	color: var(--color-font);
	font-weight: bold;
	padding: 10px;
	padding-right: 70px;
	position: relative;
	letter-spacing: 0.1em;
	display: inline-block;
}
.post .arow_btn::after {
	content: "";
	width: 25px;
	height: 25px;
	background: url(/wp-content/uploads/top-parts-01.png) no-repeat center center / contain;
	position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	right: 2rem;
	transition: all .3s;
}
#front-sectionPost .txt_c .linkBtn::after {
	width: 25px;
	height: 25px;
	background: url(/wp-content/uploads/top-parts-01.png) no-repeat center center / contain;
	border: 0;
    transform: unset;
	top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#front-sectionPost .txt_c .linkBtn:hover:after,
.post .arow_btn:hover:after {
	right: 1rem;
}
.txt_link {
	color: var(--color-primary);
	text-decoration: underline;
}
.txt_link:hover {
	text-decoration: none;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900, .w1000 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }
.w1000 { width: 1000px; }
/*--------------------------------------------------
	トップページ
--------------------------------------------------*/
/**/
.top_box .txt {
	background: #F6F6F6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 35px 20px;
}
.top_box .photo img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.top_box h1.sub {
	text-align: left;
	width: 100%;
}
@media print, screen and (min-width: 960px){ /* PC用 */	
	.top_box .txt {
		padding: 60px 5%;
		width: 43%;
	}
	.top_box .photo {
		width: 57%;
	}
}
@media only screen and (max-width: 959px) and (min-width: 641px) { /* タブレット用 */
	.top_box .txt {
		padding: 60px 5%;
		width: 65%;
	}
	.top_box .photo {
		width: 35%;
	}
	
}
#top_about::before {
	background: url(/wp-content/uploads/top-strengths-bg.jpg) no-repeat center center / cover;
	left: auto;
	right: 0;
	width: 80vw;
}
/**/
#top_strengths .list {
	column-gap: 2%;
	row-gap: 3rem;
}
#top_strengths .list dl {
	display: flex;
	flex-direction: column;
}
#top_strengths .list dl dt {
	position: relative;
	padding-bottom: 17px;
	margin-bottom: 2rem;
}
#top_strengths .list dl dt span {
	display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    font-family: var(--font-family02);
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: normal;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#top_strengths .list dl dd {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#top_strengths .list dl dd h2 {
	font-size: var(--rem30);
}
#top_strengths .list dl dd .btn {
	margin-top: auto;
}
@media print, screen and (min-width: 641px){ /* PC用 */	
	#top_strengths .list dl {
		width: 32%;	
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#top_strengths .list dl dd {
		padding: 15px;
	}
}
@media only screen and (max-width: 959px) and (min-width: 641px) { /* タブレット用 */
	#top_strengths h2 {
		font-size: var(--rem24);
	}
}
/**/
#top_service::before {
	background: -moz-linear-gradient(left, rgba(87,0,1,0.34), rgba(217,217,217,0.34), rgba(255,255,255,0.34)); 
	background: -webkit-linear-gradient(left, rgba(87,0,1,0.34), rgba(217,217,217,0.34), rgba(255,255,255,0.34)); 
	background: linear-gradient(to right, rgba(87,0,1,0.34), rgba(217,217,217,0.34), rgba(255,255,255,0.34)); 
	width: 60vw;
}
#top_service h2 {
	text-align: left;
}
#top_service dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5rem;
}
@media print, screen and (min-width: 641px){ /* PC用 */	
	#top_service dl dt {
		width: 35%;
	}
	#top_service dl dd {
		width: 60%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#top_service dl dd {
		padding: 15px;
	}
}
/**/
#top_recruit::before {
	background: url(/wp-content/uploads/top-recruit-bg.png.webp) no-repeat center center / cover;
	width: 80vw;
}

/**/
body:not(.home) #content:has(#contact_box) {
	padding-bottom: 0 !important;
}
#contact_box::before {
	background: url(/wp-content/uploads/top-contact-bg.png) no-repeat center center / cover;
}
#contact_box .in {
	background: #fff;
}
#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);
	color: #fff;
	line-height: 1.5;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#contact_box .btn a i {
	margin-right: 8px;
}
#contact_box .btn .tel a b {
	font-size: 150%;
}
#contact_box .btn .mail a {
	color: var(--color-font);
	background: #F6F6F6;
}
#contact_box .btn .mail a i::before {
	color: var(--color-primary);
}
#contact_box .btn a:hover {
	background: #F6F6F6;
	color: var(--color-primary);
}
#contact_box .btn .mail a:hover {
	background: var(--color-primary);
	color: #fff;
}
#contact_box .btn .mail a:hover i::before {
	color: #fff;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#contact_box .btn li {
		width: 50%;
	}
}
/**/
#front_top_content,
#front_bottom_content {
	background: none;
}
/*--------------------------------------------------
	見出し
--------------------------------------------------*/
/* サブタイトルの文字を見えなくしたい
header#h1Header h1.title {
	z-index: -1;
}
*/
#thumbImg::before, header#h1Header::before {
	display: none;
}
h1.title, .post h1, .post h2, .post h3, .post h4 {
	color: var(--color-font);
}
#front-sectionPost h1.title,
#content h1.sub {
	line-height: 0.7;
}
.post h2.sub {
	line-height: 0.9;
}
#front-sectionPost h1.title span span,
#content h1.sub b,
.post h2.sub b {
	display: block;
	color: var(--color-primary-shade);
	font-family: var(--font-family02);
	font-size: 90px;
}
#front-sectionPost h1.title span,
#content h1.sub b+span,
.post h2.sub b+span {
	color: var(--color-primary);
	font-size: 98%;
}
#content h1.sub b+span {
	line-height: 1.1;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#front-sectionPost h1.title span span,
	#content h1.sub b,
	.post h2.sub b {
		font-size: 66px;
	}
	#front-sectionPost h1.title span,
	#content h1.sub b+span,
	.post h2.sub b+span {
		font-size: 105%;
	}
}
.post h2.sub {
	text-align: left;
}
.post h2.noline::after {
	display: none;
}
.post h3.noline {
	padding: 0;
	border: none;
}
.post h3 {
	border-bottom-color: #000;
}
.post h3.sub span {
	display: block;
	font-family: var(--font-family02);
	color: #DDDDDD;
	font-size: var(--rem24);
}
@media only screen and (max-width: 959px) and (min-width: 641px) { /* タブレット用 */
	.post h2 {
		font-size: var(--rem30);
	}
}
/*--------------------------------------------------
	会社概要
--------------------------------------------------*/
#company_tbl th {
	width: 20%;
	white-space: nowrap;
}
#service_list {
	row-gap: 2rem;
}
/*--------------------------------------------------
	採用情報
--------------------------------------------------*/
.marker.gray {
	background: linear-gradient(transparent 60%, #EEEDED 60%);
}
.post .lead_en {
	font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
	/* -- 1920 1.8rem 375 1.3rem -- */
	letter-spacing: 0.8rem;
}
#recruit_tbl th {
	width: 20%;
	white-space: nowrap;
}
/**/
#recruit_entry {
	background: #FFF7F7;
}
/*--------------------------------------------------
	AMNの強み
--------------------------------------------------*/
.strengths_box {
	border-bottom: solid 1px #A4A4A4;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.strengths_box .w45+.w50 {
		margin-bottom: 0;
	}
}
/*--------------------------------------------------
	プライバシーポリシー その他
--------------------------------------------------*/
#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 table,
.post form.wpcf7-form table th,
.post form.wpcf7-form table td {
	border: 0;
	background: none;
}
.post form.wpcf7-form table tr {
	border-top: solid 1px #D9D9D9;	
	border-bottom: solid 1px #D9D9D9;
}
.post form.wpcf7-form table tr {
	border-bottom: solid 1px #D9D9D9;
}
.post form.wpcf7-form table th {
	font-weight: bold;
}
/* ボタン */
.post form.wpcf7-form .linkBtn {
	width: 200px !important;
	padding: 0 !important;
}
.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;
}

/* ロゴ追加 */
.l-lanai_group_list{
	position: relative;
    overflow: hidden;
}
.l-lanai_group_list_inner {
    display: flex !important;
    gap: 40px;
    width: 1000px;
    max-width: 90%;
    margin: 10px auto;
    background: #fff;
    padding: 2rem;
    align-items: center;
    justify-content: space-around;
    transform: skewX(-20deg);
}
.l-lanai_group_list_inner > p {
    margin: 0;
    width: 150px;
    flex-shrink: 0;
    display: block !important;
    transform: skewX(20deg) !important;
	padding: 0 10px;
}

.l-lanai_group_list_inner > p a,
.l-lanai_group_list_inner > p img {
    display: block;
    width: 100%;
    height: auto;
    transform: skewX(0deg) !important; 
}
.l-lanai_group_list::before {
content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
	height: 20px;
    background-color: var(--color-primary);
    z-index: -1;
}
@media (max-width: 820px) {
	.l-lanai_group_list_inner {
	flex-wrap: wrap;
	}
	.l-lanai_group_list_inner > p {
		width: 100px;
		padding: 0 10px;
}
}
@media (max-width: 640px) {
    .l-lanai_group_list_inner {
        transform: unset; 
        gap: 20px;
        padding: 2rem 1rem;
        width: 95%;
    }

    .l-lanai_group_list_inner > p {
        width: calc((100% - 20px) / 2); 
        flex-shrink: 0;
        transform: unset !important; 
    }
    .l-lanai_group_list_inner > p img {
        width: 100%;
        height: auto;
        transform: unset !important;
    }
}