@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #333;
    --color-primary: #CE000C;
    --color-primary-shade: #FEA7AC;
    --color-primary-tint: #FAEFF0;
    --color-secondary: #F2F2F2;
    --color-secondary-tint: #F8F9F2;
    --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: 'Montserrat', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #333;
    --header-color-primary: #CE000C;
    --header-color-primary-tint: #FEA7AC;

    --footer-background: #F8F9F2;
    --footer-color-font: #333;
    --footer-color-primary: #CE000C;
}

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;
}
/*------------------------------------------------------
幅フル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;
    gap: var(--px20) 2%;
}
.post .col2_list > li {
    width: 49%;
}
@media print, screen and (max-width: 500px) {
	.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: flex-start;
	flex-wrap: wrap;
    gap: var(--px30) 2%;
}
.post .col3_list > li {
    width: 32%;
}
@media print, screen and (max-width: 768px) {
	.post .col3_list > li {
		width: 49%;
	}
}
@media print, screen and (max-width: 500px) {
	.post .col3_list > li {
		width: 100%;
	}
}

/*---------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;
}

/*------------------------------------------------------
gap
------------------------------------------------------*/
/* 縦 */
.col_gap2 {
    display: flex;
    flex-direction: column;
    gap: var(--px20);
}
.col_gap6 {
    display: flex;
    flex-direction: column;
    gap: var(--px60);
}
.col_gap8 {
    display: flex;
    flex-direction: column;
    gap: var(--px80);
}
.col_gap10 {
    display: flex;
    flex-direction: column;
    gap: var(--px100);
}

/* 横 */
.gap8 {
    gap: var(--px80) !important;
}

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

/* 配列 */
.txt_c_l {
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left;
    }
}

/* テキスト */
.post p, p {
    font-size: var(--rem16);
    line-height: 2;
}
.post .read p, .read p {
    margin-bottom: 1em;
}
.post .read p:last-child, .read p:last-child {
    margin-bottom: 0;
}

/* サイズ */
.post p.fz24, p.fz24 {
    font-size: var(--rem24);
    line-height: 1.65;
}

/* H2 */
.post h2::after {
    height: 2px;
    margin: 0.4em auto 0;
}
.post h2.main, h2.main {
	margin: 0 auto var(--px30);
}
.post h2.main .en, h2.main .en {
	font-family: var(--font-family02);
	font-weight: 700;
	font-size: var(--rem30w);
	color: var(--color-primary);
	line-height: 1;
	display: block;
}
.post h2.main .jp, h2.main .jp {
	font-size: var(--rem40w);
	display: block;
}
.post h2.main.txt_l::after, h2.main.txt_l::after {
	margin: 0.4em 0 0;
}

.post h2.main.color_w .jp, h2.main.color_w .jp {
	color: #fff;
}
.post h2.main.color_w::after, h2.main.color_w::after {
	background: #fff;
}

/* H3 */
.post h3, h3 {
	font-size: var(--rem24w);
	padding: 0 0 10px 0;
	margin: 0 0 var(--px30);
	border-bottom: 1px solid var(--color-primary);
}

.post .icon_ttl01, .icon_ttl01 {
    margin: 0 0 var(--px40);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.post .icon_ttl01::before, .icon_ttl01::before {
    content: "";
    display: block;
}
.post .icon_ttl01.icon01::before, .icon_ttl01.icon01::before {
    background: url(/wp-content/uploads/icon_house.png) no-repeat center / contain;
    width: min(calc(7.4rem + (1vw - 1.92rem) * 0.7767) ,74px);
    height: min(calc(6.4rem + (1vw - 1.92rem) * 1.1650) ,64px);
    padding-left: var(--px16);
}
.post .icon_ttl01.icon02::before, .icon_ttl01.icon02::before {
    background: url(/wp-content/uploads/icon_billding.png) no-repeat center / contain;
    width: min(calc(7rem + (1vw - 1.92rem) * 1.2945) ,70px);
    height: min(calc(6.4rem + (1vw - 1.92rem) * 1.1650) ,64px);
    padding-left: var(--px16);
}
.post .icon_ttl01 .ttl_inner, .icon_ttl01 .ttl_inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: none;
}
.post .icon_ttl01 h3, .icon_ttl01 h3 {
    font-size: var(--rem40);
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.45;
}
.post .icon_ttl01 p, .icon_ttl01 p {
    font-size: var(--rem30);
    font-weight: 500;
    line-height: 1.45;
}
@media print, screen and (max-width: 1023px) {
    .post .icon_ttl01 .ttl_inner, .icon_ttl01 .ttl_inner {
        flex-direction: column;
        align-items: baseline;
        gap: 0;
    }
    .post .icon_ttl01 h3, .icon_ttl01 h3 {
        font-size: var(--rem30);
    }
    .post .icon_ttl01 p, .icon_ttl01 p {
        font-size: var(--rem20);
    }
}


/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* ulリスト */
.post ul.list {
    margin: 0;
    padding: 0
}
.post ul.list li {
    list-style: disc;
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-bottom: .7em;
    line-height: 1.55;
    list-style-position: inside;
}
.post ul.list li:last-child {
    margin-bottom: 0;
}

.post ul.list01 li {
    font-size: var(--rem24);
    text-align: center;
    border: 2px solid var(--color-font);
    border-radius: 6px;
    padding: var(--px24) var(--px14);
    line-height: 1.45;
}

.post ul.list02 li {
    font-size: var(--rem24);
    background: var(--color-secondary);
    text-align: center;
    border-radius: 6px;
    padding: var(--px24) var(--px14);
    line-height: 1.45;
}

/* olリスト */
.post ol.num  {
    margin: 0;
    padding: 0
}
.post ol.num li {
    list-style: none;
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-bottom: .7em;
    line-height: 1.55;
}
.post ol.num li:last-child {
    margin-bottom: 0;
}

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary);
    font-weight: 600;
    padding: var(--rem14) 30px var(--rem14) 20px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    display: block;
    content: '';
    background: url(/wp-content/uploads/arrow.svg) no-repeat center / contain;
    width: 23px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 30px;
    border: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all .3s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    background: var(--color-primary-shade);
    color: #fff;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    right: 20px;
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}

/*------------------------------------------------------
画像
------------------------------------------------------*/
.post .w_70 img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
@media print, screen and (max-width: 768px) {
    .post .w_70 img {
        width: 70%;
    }
}

/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th, .post table td {
    padding: 20px;
}
.post table th {
	background: var(--color-primary-tint);
}


/*------------------------------------------------------
inner
------------------------------------------------------*/
.inner {
	max-width: var(--content-max-width);
	width: 90%;
	margin: 0 auto;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
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: var(--color-secondary);
    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 .footer__logo img {
    width: 90%;
	max-height: 180px;
}
#footer .footer__logo:not(:last-child) {
	margin-bottom: var(--px40);
}
#footer .footnav:not(:last-child) {
	margin-bottom: 10px;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
.cta01 {
	background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center /cover;
    padding: var(--px120) 0;
	position: relative;
	z-index: 0;
}
.cta01 .cta01_wrap {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
}
.cta01 .ctabtnlist {
  max-width: 640px;
  width: 100%;
  margin: var(--px50) auto 0 auto;
}
.cta01 .ctabtnlist li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px40) 0;
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: var(--px20);
    transition: all ease .15s;
}
.cta01 a.item:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 768px) {
	.cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
	width: 100%;
	}
	.cta01 .ctabtnlist li + li {
  margin-top: 1rem;
	}
}
/*ボタン共通パーツ*/
.cta01 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}
.cta01 .infotxt {
	font-size: var(--rem16);
	font-weight: 400;
}
/*メールボタン*/
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #fff;
}
/*ボタンアイコン*/
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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 .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%;
    color: var(--color-font);
    background: var(--color-secondary-tint);
    line-height: 1.25;
    vertical-align: middle;
}
.wpcf7-form .must {
	background: var(--color-primary);
}
.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 h2.thanks, h2.thanks {
    font-size: var(--rem30);
    margin: 0 0 var(--px30);
    text-align: left;
}
.post h2.thanks::after, h2.thanks::after {
    content: none;
}
.post .thanks_btn {
    margin: var(--px80) auto 0 !important;
    display: block;
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
.column01 {
	position: relative;
}
.column01_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;
}
.column01 .imgarea {
	position: relative;
	overflow: hidden;
	width: 62%;
}
.column01 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column01 .txtarea {
	position: relative;
	width: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	background: #fff;
	padding: var(--px80) var(--px60);
	margin: 0 auto 0 -12%;
	z-index: 10;
}
.column01 .txtarea .txtinner {
    max-width: 670px;
    width: 86%;
}
.column01_wrap + .column01_wrap {
	margin-top: var(--px80);
}

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

@media print, screen and (max-width: 768px) {
  .column01 .txtarea {
    padding: var(--px80) 5%;
    justify-content: flex-start;
  }
}

.sec02 .inner {
    background: #fff;
    padding: var(--px80) var(--px60);
}
@media print, screen and (max-width: 768px) {
    .sec02 .inner {
        padding: var(--px80) var(--px40);
    }
}

.sec04 {
    background: #fff;
}


/*------------------------------------------------------
下層
------------------------------------------------------*/
.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem);
	font-weight: 500;
}
.post .lead_en {
	font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
	color: var(--color-primary-shade);
	letter-spacing: 0.8rem;
}

/*--スタイルリストエリア--------------------------------------------*/

ul.box_style01 > li {
	position: relative;
	gap: 40px;
	width: 100%;
	background: #fff;
	padding: min(calc(40px + (1vw - 19.2px) * 0.6472), 40px) min(calc(35px + (1vw - 19.2px) * 0.6472), 35px);
	border-radius: 20px;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	margin-bottom: 30px;
	text-align: left;
}
.post ul.box_style01 .box_style_ttl {
	width: 100%;
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 400;
	padding: 0.6rem 0 0.6rem 2rem;
	margin: 0 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/*15-10px (1920-375) */
	border-bottom: none;
	border-left: 3px solid var(--color-primary-shade);
	text-align: left;
	font-style: italic;
	line-height: 1.4;
}
@media screen and (min-width: 769px) {
	ul.box_style01 > li {
		display: flex;
	}
}

/*---table_style04-------------------------------------*/
.post table.table_style04 th {
	background-color: transparent;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
	border: none;
}
table.table_style04 tr:first-child {
	border-top: 1px solid #ccc;
}
table.table_style04 tr:last-child {
	border-bottom: 1px solid #ccc;
}
table.table_style04 tr {
	border-top: 1px dashed #ccc;
	letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
	padding: var(--px30) var(--px16);
}
table.table_style04 th {
	position: relative;
	z-index: 0;
}
table.table_style04 th:before {
	position: absolute;
	content: "";
	background: var(--color-primary-tint);
	top: 7px;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: auto;
	z-index: -1;
}
table.table_style04 td ul li {
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
table.table_style04 td ul li:before {
	position: absolute;
	content: "・";
	top: 0;
	left: 0;
}
@media print, screen and (max-width: 768px) {
	table.table_style04 th, table.table_style04 td {
		padding: 20px 1.4rem;
		vertical-align: middle;
	}
	table.table_style04 th {
		width: 32%;
	}
	table.table_style04 td {
		width: 68%;
	}
}

.contact_area {
	background: var(--color-primary-tint);
	padding: var(--px80) var(--px40);
	margin: var(--px120) auto 0;
}