@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=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
    --color-font: #333;
    --color-primary: #0281CC;
    --color-primary-shade: #F8EDEB;
    --color-primary-tint: #E4F0F0;
    --color-secondary: #E80E0E;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: clamp(14px, .94vw, 16px); /* 1.6-1.4rem (1920-375) */
	--body-font-family: "Zen Kaku Gothic New", sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #fff;
    --header-color-font: #0281CC;
    --header-color-primary: #0281CC;
    --header-color-primary-shade: #111;
    --header-color-primary-tint: #BCBCBC;
	/*------▼フッター設定▼------*/
	--footer-background: #FFF;
    --footer-color-font: #777;
    --footer-color-primary: #777;
	/*------▼フォント設定▼------*/
	--font-family01: "Zen Kaku Gothic New", sans-serif;
	--font-family02: "Open Sans", sans-serif;
	--font-family03: "Oswald", sans-serif;
	/*------▼フォントサイズ設定▼------*/
    --font-size12: clamp(10px, .8vw, 12px);
    --font-size14: clamp(12px, .8vw, 14px);
    --font-size16: clamp(14px, .94vw, 16px);
	--font-size18: clamp(16px, 1.1vw, 18px);
    --font-size20: clamp(18px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.4vw, 22px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size32: clamp(24px, 1.7vw, 32px);
    --font-size38: clamp(26px, 2vw, 38px);
	--font-size40: clamp(26px, 2.2vw, 40px);
    --font-size50: clamp(26px, 2.61vw, 50px);
	/*------▼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);
}
::selection {
	background-color: var(--color-primary);
	color: #FFF;
}
/* == 非表示 =================================================== */
.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;
    }
	#header .logo img {
		max-height: 100px;
		max-width: 100%;
	}
/* ========================
スティッキーヘッダー
======================== */
    .sticky-header #header-layout {
        height: 100px;
    }
/* ========================
ヘッダー下部__グローバルナビ
======================== */
	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-weight: bold;
		font-family: var(--font-family01);
	}
	nav#mainNav ul li a b {
		font-size: var(--font-size16);
		padding-bottom: 5px;
	}
	nav#mainNav ul li a span {
		font-size: calc(var(--font-size12) - 2px);
		color: var(--header-color-primary-tint);
		font-weight: 900;
	}
	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(--color-font);/* アクション時の文字色（上部）の設定 */
		color: var(--header-color-primary);
	}
	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);/* アクション時の文字色（下部）の設定 */
	}
	
	/*------ヘッダー下部__コンタクトボタン
--------------------------------------------*/
    #header a.head_btn {
        font-size: var(--font-size16);
    }
	#header a.head_btn::before {
		font-size: 1em;
	}
	#header a.head_btn:hover {
		color: #FFF;
		background: var(--header-color-primary);
		opacity: .6;
	}
}
/* == トップ記事投稿（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;
}
/* == リスト表示 =================================================== */
/* == フッター調整/footer =================================================== */
#footer {
    padding: 0;
}
#footer .inner {
    max-width: 100%;
    width: 100%;
    padding: 15px 0 0;
	background: #FFF;
}
#footer a {
	transition: .5s;
}
#copyright {
    margin: 0;
    padding-bottom: 10px;
}
.footer-content {
    background: var(--color-primary);
    padding: var(--clamp-40) 0;
    text-align: center;
}
#footer h2, #footer p {
    color: #FFF;
}
#footer .btn_container {
    gap: 5%;
    justify-content: center;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    align-items: center;
    padding: 15px 0;
    max-width: 640px;
    margin: 30px auto 0;
}
#footer a.tel-btn {
    color: #FFF;
	transition: .3s;
}
#footer a.tel-btn:hover {
	opacity: .6;
}
#footer a.tel-btn .num {
    font-size: calc(var(--font-size28) + 2px);
    font-family: var(--font-family02);
    font-weight: bold;
    position: relative;
}
#footer a.tel-btn .sub {
    font-size: var(--font-size14);
}
#footer a.tel-btn .num::before {
    font-family: 'FontAwesome';
    content: '\f3cd';
    font-size: .6em;
    position: absolute;
    left: -1em;
    top: .5em;
}
#footer a.btn {
    color: var(--color-primary);
    background: #FFF;
    transition: .5s;
}
#footer a.btn::after {
    color: #FFF;
    background: var(--color-primary);
}
#footer a.btn:hover {
	background: var(--color-primary);
	color: #FFF;
	outline: 1px solid;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
	#footer .btn_container {
		flex-direction: column;
		gap: 20px;
	}
}
/* == アイキャッチ/eyecatch =================================================== */
header#h1Header h1.title {
    font-size: var(--font-size50);
}
#thumbImg::before, header#h1Header::before {
    opacity: .78;
	background: var(--color-primary);
}
/* == postlist =================================================== */
.postlist .ttls, .postlist .date {
    font-size: var(--font-size18);
}
.postlist .time {
    font-size: var(--font-size16);
    border-radius: 5px;
}
.postlist li:first-child {
    border-top: 0;
}
.postlist li {
    border-bottom: 1px dotted #CCCCCC;
}
.post4b .post4b_img {
	border: 1px solid #D3D3D3;
}
/* == 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;
}
/* body:not(.home) #content.wide {
    padding-bottom: var(--clamp-100);
} */
/* == テキスト調整/text =================================================== */
.post p, .post h2, .post h3, .post h4, .post h5, h1.title {
	color: var(--color-font);
}
.post p, #footer p  {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1em;
	font-weight: 500;
}
.post h2, h1.title, #footer h2 {
    font-size: var(--font-size32);
    line-height: 1.5;
    margin-bottom: .5em;
	font-weight: bold;
}
.post h3 {
    font-size: var(--font-size20);
    line-height: 1.5;
	padding-bottom: .5em;
    margin-bottom: .8em;
	font-weight: bold;
}
.post h3::before {
    content: '';
    position: absolute;
    width: 2em;
    height: 4px;
    background: var(--color-primary);
    bottom: 0;
}
.post h4 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
p.lead {
    font-size: var(--font-size22);
    font-weight: bold;
}
span.blue {
    color: var(--color-primary);
    font-weight: 900;
}
span.bold {
	font-weight: bold;
}
span.px12 {
    font-size: var(--font-size12);
}
span.px14 {
    font-size: var(--font-size14);
}
span.px16 {
    font-size: var(--font-size16);
}
span.px18 {
    font-size: var(--font-size18);
}
span.px20 {
    font-size: var(--font-size20);
}
span.px22 {
    font-size: var(--font-size22);
}
span.px28 {
    font-size: var(--font-size28);
}
span.px32 {
    font-size: var(--font-size32);
}
span.px38 {
    font-size: var(--font-size38);
}
span.px50 {
    font-size: var(--font-size50);
}
span.speech {
	display: inline-block;
    padding: 0 .6em;
    position: relative;
}
span.speech::before, span.speech::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 1em;
    background: var(--color-primary);
    top: 50%;
}
span.speech::before {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(-20deg);
    transform: translateY(-50%) rotate(-20deg);
}
span.speech::after {
    right: 0;
    -webkit-transform: translateY(-50%) rotate(20deg);
    transform: translateY(-50%) rotate(20deg);
}
@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-item+.content-item { 
    padding-top: var(--clamp-80);
}
.txt-inner {
    max-width: 528px;
	width: 94%;
}
.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;
	}
	.txt-inner {
		margin: 0 auto;
		max-width: 100%;
	}
}
/* == 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 =================================================== */
.flexbox:has(.col-2), .flexbox:has(.col-3), .flexbox:has(.col-4), .flexbox:has(.col-5) {
    flex-wrap: wrap;
}
.flex-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
.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, .col-2 {
    width: calc(50% - 25px);
}
.flex-container__col-3, .col-3 {
    width: calc((100% / 3) - 25px);
}
.flex-container__col-4, .col-4 {
    width: calc((100% / 4) - 10px);
}
.flex-container__col-5, .col-5 {
    width: calc((100% / 5) - 15px);
}
.flex-container__img img {
    width: 100%;
}
.flex-container__text {
    width: 90%;
}
.col-2 {
	background: #FFF;
}
.col-2 .img-area {
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}
.col-2 .txt-area {
    padding: max(3%, 10px) 0;
}
.col-2 p:last-child {
	margin: 0;
}
.col-3 p:last-child {
    margin: 0;
}
.col-3 h3 {
    margin-bottom: 0;
    padding-bottom: .5em;
}
.col-5 .img-area {
    width: 82%;
    margin: 0 auto 10px;
}
.col-5 p {
    line-height: 1.5;
}
@media print, screen and (max-width: 1023px) {
	.flex-container__col-5, .col-5 {
	    width: calc((100% / 4) - 15px);
	}
}
@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;
        margin-bottom: 30px;
    }
    .flex-container__col-2, .flex-container__col-3, .flex-container__col-4, .col-2, .col-3, .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
	.flex-container__col-5, .col-5 {
	    width: calc((100% / 2) - 5px);
		margin-bottom: 20px;
	}
    .flex-container__text {
        margin: 0 auto;
    }
}
/* == テーブル、マップ調整/table,map =================================================== */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    vertical-align: middle;
	font-weight: 500;
	font-size: var(--font-size16);
	border-bottom: 1px dotted #BEBEBE;
}
.post table tr:first-child th, .post table tr:first-child td {
	border-top: 1px dotted #BEBEBE;
}
.post table th {
	background: #FFF;
	padding: .5em 0;
}
.post table td {
	background: #FFF;
    padding: .5em 2em;
}
.page-content table th {
	position: relative;
}
.page-content table th::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 1em);
    background: #F4F4F4;
    top: .5em;
    z-index: 0;
}
span.bg_gray {
    width: 100%;
    background: #F4F4F4;
    display: inline-block;
    color: var(--color-font);
    padding: 1em .5em;
    font-size: var(--font-size16);
	position: relative;
	z-index: 1;
}

@media print, screen and (min-width: 768px) {
	.page-content table th {
		text-align: center;
	}
}

@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
    }
	span.bg_gray {
		padding: 1em 2em;
	}
	.post table td {
		padding: 1.5em 2em;
	}
}
/* == ボタン調整/btn =================================================== */
.btn_container {
    display: flex;
}
a.btn, .linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: inline-block;
    transition: .5s;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size18);
    font-weight: bold;
    line-height: 1.5;
    padding: 1em 2em;
    width: 90%;
    max-width: 280px;
    text-align: center;
    border-radius: 30px;
}
a.btn:hover, .linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-5px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	color:var(--color-primary);
	outline: 1px solid;
}
a.btn::after, .linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	display: block;
	content: '→';
	position: absolute;
	top: 50%;
	right: .5em;
	width: auto;
	height: auto;
	border-right: 0;
	border-bottom: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 0;
    background: #FFF;
    color: var(--color-primary);
    line-height: 1;
    padding: .5em;
    border-radius: 50vw;
}
.wpcf7 .linkBtn {
    padding: 0;
}
.wpcf7 .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
}
@media print, screen and (max-width: 768px) {}
/* == メインビジュアル / MV =================================================== */
/* == トップ、下層調整/ .top-content, .page-content =================================================== */
.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-content
======================== */
.top-content {
    padding-bottom: var(--clamp-100);
}
.top-content_about-us, .top-content_information {
    padding-top: var(--clamp-100);
}
.top-content_service::before {
    content: '';
    height: 45%;
    top: 15%;
    background-image: url(/wp-content/uploads/top_bg01.jpg);
    background-position: center;
    background-size: cover;
}
.top-content_service .img-area {
    border-radius: 20px;
    overflow: hidden;
}
.top-content_reason::before {
    content: '';
    height: 70%;
    bottom: 0;
    background-image: url(/wp-content/uploads/top_bg02.jpg);
    background-position: center;
    background-size: cover;
}
.top-content_reason .col-2 {
	margin-top: var(--px50);
}
.top-content_reason .col-2 p {
    font-size: var(--font-size18);
    padding: 1em;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.top-content_service::before {
		top: unset;
		bottom: 0;
		height: 85%;
	}
	.top-content_reason {
		padding-top: var(--clamp-100);
	}
}
/* ========================
下層調整 / .page-content
======================== */
/*  */
.page-content {
    padding-top: var(--clamp-80);
}
.page-content:first-child {
    padding-top: 0;
}
.page-content h2.center {
    padding-top: 1em;
	text-align: center;
}
.page-content h2.left {
    padding-left: 1em;
	text-align: left;
}
.page-content h2.center::before, .page-content h2.left::before {
    position: absolute;
    content: '';
    width: 1em;
    height: 1em;
    background-image: url(/wp-content/uploads/icon_title.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.page-content h2.center::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.page-content h2.left::before {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.worry-content {
    background: #F8F8F8;
    border-radius: 20px;
    padding: max(3%, 20px);
    align-items: center;
}
.worry-content .col-2 {
    background: transparent;
}
.worry li {
    font-size: var(--font-size20);
    font-weight: bold;
    position: relative;
    padding: .7em 0 .7em 2em;
}
.worry li::before {
    content: '';
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    background-image: url(/wp-content/uploads/icon_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 1em;
}
.page-content_reason .col-2 {
	margin-top: var(--px50);
}
.page-content_reason {
    counter-reset: number 0;
}
.page-content_reason .txt-area {
    position: relative;
}
.page-content_reason .txt-area::before {
    counter-increment: number 1;
    content: '0'counter(number);
    position: absolute;
    color: var(--color-primary);
    font-size: 40px;
    font-family: var(--font-family03);
    font-weight: bold;
    line-height: 1;
    background: #FFF;
    padding: .2em .9em 1.6em .9em;
    border-radius: 50vw;
    left: 50%;
    top: -1.3em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.page-service .img-area {
    width: 40%;
}
.page-service .img-area img {
    min-height: 600px;
    object-fit: cover;
}
.page-service .txt-area {
    width: 56%;
}
.page-service .txt-inner {
	max-width: 680px;
}
.page-content_service01 .img-area {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.page-content_service02 .img-area {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}
@media print, screen and (max-width: 1023px) {
	.page-service .flexbox {
		flex-direction: column;
		gap: 20px;
	}
	.page-service .img-area, .page-service .txt-area {
		width: 100%;
	}
	.page-service .img-area img {
		min-height: auto;
		aspect-ratio: 2/1;
		object-position: top;
	}
	.page-service .txt-inner {
		max-width: 100%;
		margin: 0 auto;
	}
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.page-service .img-area {
		margin-bottom: 20px;
	}
}
/* ========================
その他の調整 / other
======================== */
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
