@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
:root {
	/*------▼基本設定▼------*/
	--color-background: #fff;
    --color-font: #333;
    --color-font02: #3E4C59;
    --color-primary: #111986;
    --color-primary-shade: #111;
    --color-primary-tint: #416AAF;
    --color-secondary: #FF4040;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem); /* 1.6-1.4rem (1920-375) */
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #fff;
    --header-color-font: #000;
    --header-color-primary: linear-gradient(135deg, #3F96C4, #111986);
    --header-color-primary-shade: #111;
    --header-color-primary-tint: #2857A6;
	/*------▼フッター設定▼------*/
	--footer-background: #F5F5F5;
    --footer-color-font: #777;
    --footer-color-primary: #777;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: "Oswald", sans-serif;
	/*------▼フォントサイズ設定▼------*/
    --font-size-1: clamp(30px, 2.35vw, 44px);
    --font-size-2: clamp(20px, 1.35vw, 24px);
    --font-size-3: clamp(18px, 1.05vw, 20px);
    --font-size-4: clamp(16px, 0.94vw, 18px);
    --font-size-5: clamp(16px, 0.94vw, 18px);
    --font-size-p: 16px;
	/*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-100: clamp(60px, 5.42vw, 100px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
/* == 非表示 =================================================== */
.post h2, .post h3, .post h4 {
	padding: 0;
	margin: 0; 
	border: none;
}
.post h2::before, .post h3::before, .post h4::before, .post h2::after{
	content: none;
}
/* == ヘッダー調整/header =================================================== */
@media print, screen and (min-width: 1024px) {
/* ========================
ヘッダー下部
======================== */
    #header {
        height: 100px;
    }
/* ========================
スティッキーヘッダー
======================== */
    .sticky-header #header-layout {
        height: 100px;
    }
/* ========================
ヘッダー下部__グローバルナビ
======================== */
	nav#mainNav ul li a b {
		color: var(--header-color-font);
		font-size: 16px;/* 文字サイズ（下部）の設定 */
		font-family: var(--font-family01);
		font-weight: 500;
		order: 2;
	}
	nav#mainNav ul li a span {
		color: var(--header-color-primary-tint);
		font-size: 14px;/* 文字サイズ（上部）の設定 */
		font-weight: 600;
		font-family: var(--font-family02);
		order: 1;
	}
	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: transparent;/* アクション時の背景色の設定 */
	}
	nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
		color: var(--header-color-primary-tint);/* アクション時の文字色（上部）の設定 */
	}
	nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li a:hover span, nav#mainNav ul li a:active span, nav#mainNav ul li.current-menu-parent a span {
		color: var(--header-color-primary-tint);/* アクション時の文字色（下部）の設定 */
	}
	#header a.head_btn {
		background: var(--header-color-primary);
		min-width: 150px;
	}
	#header a.head_btn:hover {
		opacity: .6;
		background: var(--header-color-primary);
	}
	#header a.head_btn::before {
		display: none;
	}
	body.home #header {
		position: absolute;
		background: transparent;
	}
	#header .logo {
		padding: 0;
	}
	#header .logo img {
		max-height: unset;
		max-width: unset;
	}
}
/* == トップ記事投稿（archive） =================================================== */
#front_top_content, #front_bottom_content {
	background: transparent;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2)* -1);
    margin-right: calc(((100vw - 100%) / 2)* -1);
}
#front-sectionPost {
	width: 90%;
	max-width: var(--content-max-width);
	margin: 0 auto;
}
#front_top_content {
    background: #F5F5F5;
}

#front_top_content .postlist {
    background: #FFF;
    padding: var(--clamp-60) min(5%, 25px);
}
.postlist li {
    border-bottom: 1px dotted #DDD;
}
.postlist li:first-child {
    border-top: 1px dotted #DDD;
}
#front_bottom_content h1 {
	text-align: left;
}
/* == リスト表示 =================================================== */
/* == フッター調整/footer =================================================== */
#footer {
    padding: 0;
}
#footer .max_wFull {
    padding: var(--clamp-100) 0;
    background-image: url(/wp-content/uploads/footer_bg.jpg);
    background-size: cover;
    background-position: center;
}
#footer p, #footer h2, #footer h2 span.en {
    color: #FFF;
}
#footer h2 {
    font-size: var(--font-size-2);
    line-height: 1.5;
    padding-bottom: var(--clamp-10);
    margin-bottom: var(--clamp-60);
    font-weight: 500;
}
#footer h2 span.en {
	font-size: 2.5em;
}
#footer p {
    font-size: var(--font-size-p);
    line-height: 2;
    padding-bottom: 0;
    margin-bottom: var(--clamp-30);
    font-weight: 400;
}
#footer a.btn {
    font-family: var(--font-family02);
    font-weight: bold;
    font-size: clamp(22px, 1.5vw, 26px);
    color: #FFF;
    background: transparent;
    padding: .5em;
    border: 2px solid;
	margin: 0;
}
#footer a.btn::before {
    font-family: 'FontAwesome';
    font-size: .8em;
    margin-right: .2em;
}
#footer a.tel_btn::before {
    content: "\f3cd";
    top: -1px;
    position: relative;
}
#footer a.mail_btn::before {
    content: "\f0e0";
    position: relative;
    top: -1px;
}
#footer a.btn::after {
    display: none;
}
#footer a.btn.mail_btn {
    color: var(--color-primary);
    background: #FFF;
}
#footer .inner {
    background: #FFF;
    max-width: 100%;
    width: 100%;
    padding: 15px 0 10px;
}

#copyright {
    background: #FFF;
    padding: 0 0 8px;
    margin-top: 0;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
	#footer .max_wFull {
		background-position: 25%; 
	}
}
/* == アイキャッチ/eyecatch =================================================== */
header#h1Header h1.title {
	font-size: var(--font-size-1);
	font-weight: 500;
}
#thumbImg::before, header#h1Header::before {
	background: #4E4E4E;
}
/* == postlist =================================================== */

/* == inner/outer =================================================== */
.max_wFull {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
@media print, screen and (max-width: 768px) {
	.content_inner {
		width: 90%;
	}
}

/* == テキスト調整/text =================================================== */
.post p, .post h2, .post h3, .post h4, .post h5, h1.title {
	color: var(--color-font02);
}
.post p {
    font-size: var(--font-size-p);
    line-height: 2;
    padding-bottom: 0;
    margin-bottom: var(--clamp-30);
	font-weight: 400;
}
.post h2, h1.title {
    font-size: var(--font-size-2);
    line-height: 1.5;
    padding-bottom: var(--clamp-10);
    margin-bottom: var(--clamp-60);
	font-weight: 500;
}
.post h2::before {
    content: "";
    position: absolute;
    width: 2em;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--color-primary-tint);
    transform: translateX(-50%);
}
.post h3 {
    font-size: var(--font-size-3);
    line-height: 1.5;
    margin-bottom: var(--clamp-30);
	font-weight: 500;
}
.post h4 {
    font-size: var(--font-size-4);
    line-height: 1.5;
    margin-bottom: var(--clamp-20);
	font-weight: 500;
}
.post h4 span.sub {
    color: var(--color-primary-tint);
    font-size: 12px;
}
.post h5 {
    font-size: var(--font-size-5);
    line-height: 1.5;
    margin-bottom: var(--clamp-20);
	font-weight: 500;
}
span.en {
    font-family: var(--font-family02);
    display: block;
}
.post h2 span.en, h1.title span.en {
    font-size: 2.5em;
    color: var(--color-primary-tint);
}
.post h2 span.en.sub, h1.title span.en.sub {
    font-size: 12px;
    color: var(--color-primary-tint);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == レイアウト調整 =================================================== */
.gap_1 {
    gap: 1%;
}
.flex_1 {
    flex: 1;
}
.w25 {
    width: 25%;
}
.w35 {
    width: 35%;
}
.w45 {
    width: 45%;
}
.w65 {
	width: 65%;
}
.w75 {
    width: 75%;
}
.jc_between {
    justify-content: space-between;
}
.jc_around {
    justify-content: space-around;
}
.jc_evenly {
    justify-content: space-evenly;
}
.align_center {
	align-items: center;
}
.shadow {
    box-shadow: 0 4px 4px #00000026;
}
.content+.content { 
    padding-top: var(--clamp-150);
}
.img-area img {
    width: 100%;
}
@media print, screen and (min-width: 769px) {
	.ml-auto {
		margin-left: auto;
	}
	.mr-auto {
		margin-right: auto;
	}
}
@media print, screen and (max-width: 768px) {
    .w25, .w35, .w45, .w55, .w65, .w75 {
        width: 100%;
		margin-bottom: 20px;
    }
	.flex_1 {
		margin-bottom: 40px;
	}
}
/* == grid_container =================================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}
.grid-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
	border: 1px solid #DCDDDD;
	border-radius: 5px;
	background: #FFF;
}
.grid-item img {
    width: 100%;
}
.gCol-3 {
	grid-template-columns: repeat(3, 1fr)!important;
}
.gCol-2 {
	grid-template-columns: repeat(2, 1fr)!important;
}
@media print, screen and (max-width: 768px){
	.gCol-2, .gCol-3 {
		grid-template-columns: repeat(1, 1fr)!important;
	}
}
/* == flex-container =================================================== */
.flex-container {
    display: flex;
    align-items: normal;
    flex-direction: row;
    justify-content: space-between;
}
.flex-container + .flex-container {
    margin-top: var(--clamp-60);
}
.flex-container.wrap {
    flex-wrap: wrap;
}
.flex-container.nowrap {
    flex-wrap: nowrap;
}
.flex-container:has(.flex-container__col-3) {
    align-items: normal;
}
.flex-container__col-2 {
    width: calc(50% - 20px);
}
.flex-container__col-3 {
    width: calc(33.3333333333% - 25px);
}
.flex-container__img img {
    width: 100%;
}
.flex-container__text {
    width: 90%;
}
/* 詳細設定 */
.flex-container__col-2 ul li {
    font-size: var(--font-size-p);
    color: var(--color-font02);
    font-weight: 400;
    background: #FCFCFC;
    border: 1px solid #E8E8E8;
    line-height: 1.5;
    padding: .5em 1em;
    margin: 5px 0;
}
.flex-container__col-3 h3 {
    margin: 0;
    padding: 15px 0;
    text-align: center;
}
.flex-container__col-3 p {
    margin-bottom: 0;
}
@media print, screen and (min-width: 769px) {
    .flex-container__text {
        max-width: 500px;
    }
    .flex-container.rev {
        flex-direction: row-reverse;
    }
}
@media print, screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        gap: 30px;
    }
    .flex-container__col-2, .flex-container__col-3 {
        width: 100%;
    }
    .flex-container__text {
        margin: 0 auto;
    }
	.flex-container__col-2 ul li {
		padding: .5em;
	}
}
/* == テーブル、マップ調整/table,map =================================================== */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    vertical-align: middle;
    color: var(--color-font02);
    padding: 1em 2em;
}
.post table th {
    font-weight: 500;
    border-bottom: 1.5px solid var(--color-primary-tint);
	background: transparent; 
}
.post table td {
    font-weight: 400;
    border-bottom: 1.5px solid #C7C7C7; 
}
.post table tr:first-child th {
    border-top: 1.5px solid var(--color-primary-tint);
}
.post table tr:first-child td {
    border-top: 1.5px solid #C7C7C7;
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
    }
	.post table th {
		background: var(--color-primary-tint);
		color: #FFF;
	}
}
/* == ボタン調整/btn =================================================== */
a.btn, .linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: block;
    transition: .5s;
    color: var(--color-font02);
    background: #FFF;
    font-size: var(--font-size-p);
    font-weight: 500;
    line-height: 1.5;
    padding: .8em 3em;
    width: 90%;
    max-width: 255px;
    text-align: center;
    border-radius: 5px;
	border: 1px solid; 
	margin: auto;
}
a.btn:hover, .linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-5px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	color:  var(--font-size-p);
	border: 1px solid; 
	opacity: .6;
}
a.btn::after {
	display: block;
	content: '→';
	position: absolute;
	top: 50%;
	right: 2.5em;
    width: auto;
    height: auto;
	border-right: 0;
	border-bottom: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
    margin-top: 0;
}
.btn_container {
    display: flex;
	justify-content: space-between;
}
.wpcf7 .linkBtn {
    padding: 0;
}
.wpcf7 .linkBtn input[type="submit"] {
	color: var(--color-font02);
	font-weight: bold;
}
.wpcf7 .linkBtn:hover input[type="submit"] {
	color: var(--color-font02);
}
@media print, screen and (max-width: 768px) {
	.btn_container {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}
/* == トップ、下層調整/top,page =================================================== */
.top-content, .page-content {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.top-content::before, .page-content::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* ========================
トップ調整/top
======================== */
.top-content {
    padding: var(--clamp-100) 0;
}
.top-content h2 span.en.sub {
	margin-top: 10px;
}
.top-content h2::before {
	display: none;
}
.tGreeting h2, .tService h2 {
	text-align: left;
}
.tGreeting h2 span.en.sub {
	color: #CBCBCB;
}
.tGreeting a.btn {
	margin-left: 0;
}
.tGreeting .img-content {
	margin-top: var(--clamp-80);
}
.tGreeting .img-content .flex-container__col-2 {
    width: 50%;
}
.tService {
    background-image: url(/wp-content/uploads/top_bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    counter-reset: number 0;
}
.tService h2, .tService h2 span.en, .tService h2 span.en.sub, .tService h3 {
    color: #FFF;
}
.tService a {
    position: relative;
    display: block;
    transition: .3s;
    border-bottom: 1px solid #DADBE0;
}
.tService h3 {
    font-size: calc(var(--font-size-3) * 2);
    margin: 0;
    padding: 1em 0;
}
.tService h3::before {
    counter-increment: number 1;
    content: "Service.0" counter(number);
    font-family: var(--font-family02);
    font-size: .75em;
    line-height: 1.5;
    margin-bottom: 10px;
}
.tService a:first-of-type {
    border-top: 1px solid #DADBE0;
}
.tService a::after {
    content: "→";
    font-size: calc((var(--font-size-3) * 2) * 1.25);
    color: #FFF;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}
.tService a:hover {
    opacity: .6;
}
.tService a:hover::after {
    right: 0;
}

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.tGreeting .img-content .flex-container {
		flex-direction: row;
		gap: 0;
	}
	.tService h3 {
		font-size: calc(var(--font-size-3) * 1.5);
	}
}
/* ========================
下層調整/page
======================== */
.page-content h4 {
    margin-bottom: 10px;
}
.pCompany table th {
    text-align: center;
    width: 22%;
}
.content.service .flex-container#sec01, .content.service .flex-container#sec02 {
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-80) * -1);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.pCompany table th {
		width: 100%;
		text-align: left;
	}
	.tService {
		background-attachment: unset;
	}
}
/* ========================
その他の調整/other
======================== */
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
