@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=Shippori+Mincho&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #F5F5F5;
    --color-font: #111;
    --color-primary: #0B2C66;
    --color-primary-shade: #18B3E3;
    --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: 'Shippori Mincho', serif;
    --font-family03: 'Oswald',  sans-serif;

    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #111;
    --header-color-primary: #0B2C66;
    --header-color-primary-tint: #18B3E3;

    --footer-background: #0B2C66;
    --footer-color-font: #fff;
    --footer-color-primary: #fff;
}

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;
}
.googlemap {
    margin: var(--px20) auto 0;
}

/*--メディアクエリ--------------------------------------------*/
@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;
}
.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;
}

/*------------------------------------------------------
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;
}
.color_pri {
    color: var(--color-primary) !important;
}
.color_sec {
    color: var(--color-primary-shade) !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.fz20, p.fz20 {
    font-size: var(--rem20);
}

/* H2 */
.post h2, h2 {
    font-size: var(--rem40w);
}
.post h2::after, h2::after {
    height: 1px;
    margin: 0.4em auto 0;
}
h1.title.top-loop,
h1.title.bottom-loop,
.post h2.main_ttl, h2.main_ttl {
    margin: 0 auto var(--px40);
}
h1.title.top-loop .en,
h1.title.bottom-loop .en,
.post h2.main_ttl .en, h2.main_ttl .en {
    font-family: var(--font-family03);
    font-size: var(--rem72);
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: .7;
    display: block;
    color: var(--color-primary);
}
h1.title.top-loop .jp,
h1.title.bottom-loop .jp,
.post h2.main_ttl .jp, h2.main_ttl .jp {
    font-size: var(--rem16);
    color: var(--color-font);
}
h1.title.top-loop::after,
h1.title.bottom-loop::after,
.post h2.main_ttl::after, h2.main_ttl::after {
    content: "";
    display: block;
    background: var(--color-font);
    width: 2.2em;
    height: 2px;
    margin: 0.4em auto 0;
}
.post h2.main_ttl.txt_l::after, h2.main_ttl.txt_l::after {
    margin: 0.4em 0 0;
}
.post h2.main_ttl.color_w::after, h2.main_ttl.color_w::after {
    background: #fff;
}

/* H3 */
.post h3, h3 {
    font-size: var(--rem24w);
    padding: 0 0 12px 0;
    margin: 0 0 var(--px30) 0;
    border-bottom: 1px solid var(--color-primary);
}
.post h3.sub, h3.sub {
    font-size: var(--rem24w);
    font-weight: 700;
    padding: 0;
    margin: 0 auto;
    border: none;
}
.post h3.sub02, h3.sub02 {
    font-size: var(--rem20w);
    font-weight: 700;
    padding: 0;
    margin: 0 auto var(--px20);
    border: none;
}
.post h3.sub_ttl, h3.sub_ttl {
    font-family: var(--font-family02);
    font-size: var(--rem24w);
    font-weight: 700;
    padding: 0;
    margin: 0 auto;
    border: none;
}

.marker.yellow {
    background: linear-gradient(transparent 60%, #FFFBC6 60%);
}

/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* 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: .3em;
    line-height: 1.55;
    list-style-position: inside;
}
.post ul.list li:last-child {
    margin-bottom: 0;
}

.post ul.work_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--px50) 8%;
    max-width: 960px;
    width: 90%;
    margin: var(--px80) auto 0;
}
.post ul.work_list li {
    width: 46%;
}

.post ul.feature_list li h3 {
    font-size: var(--rem20w);
    text-align: center;
    font-weight: 700;
    padding: 0;
    margin: var(--px30) auto var(--px16);
    border: none;
}

/* 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: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary-shade);
    font-weight: 600;
    padding: var(--rem14) 30px var(--rem14) 20px;
    margin: 0 auto;
    border: 1px solid var(--color-primary-shade);
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
    right: 30px;
    transition: all .3s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: var(--color-primary-shade);
    background: #fff;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: var(--color-primary-shade);
    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;
}

/*------------------------------------------------------
画像
------------------------------------------------------*/


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


/*------------------------------------------------------
inner / frame
------------------------------------------------------*/
.inner {
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto !important;
}
.inner960 {
    max-width: 960px;
    width: 90%;
    margin: 0 auto !important;
}

.frame01 {
    background: var(--color-background02);
    padding: var(--px80) var(--px40);
    margin: 0 auto;
}
.frame01 .inner {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
}

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
}
#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 {
    opacity: .7;
}

/* メールボタン */
#header a.head_btn.mail_btn {
    flex-direction: row;
    gap: 8px;
}

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 .footnav:not(:last-child) {
	margin-bottom: var(--px20);
}
#footer .socialicon .fa-instagram:before {
    content: "";
    background: url(/wp-content/uploads/icon_insta.svg) no-repeat center / contain;
    width: var(--px40w);
    height: var(--px40w);
	display: block;
}
#footer .socialicon .fa-facebook:before {
    content: "";
    background: url(/wp-content/uploads/icon_facebook.png) no-repeat center / contain;
    width: var(--px40w);
    height: var(--px40w);
	display: block;
}
#footer .socialicon .fa-x-twitter:before {
    content: "";
    background: url(/wp-content/uploads/icon_X.png) no-repeat center / contain;
    width: var(--px40w);
    height: var(--px40w);
	display: block;
}
#footer .socialicon .fa-youtube:before {
    content: "";
    background: url(/wp-content/uploads/icon_youtube.png) no-repeat center / contain;
    width: var(--px40w);
    height: var(--px40w);
	display: block;
}
#footer .socialicon .fa-tiktok:before {
    content: "";
    background: url(/wp-content/uploads/icon_ticktok.png) no-repeat center / contain;
    width: var(--px40w);
    height: var(--px40w);
	display: block;
}
#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
.cta01 {
	background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
	position: relative;
    padding: var(--px120) 0;
	z-index: 0;
}
body.home .cta01.foot_bottom {
    display: none;
}
.cta01 .cta01_wrap {
  max-width: var(--content-max-width);
  width: 90%;
  margin: 0 auto;
}
.cta01 .ctabtnlist li {
  width: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--px30) 0;
  text-align: center;
  box-sizing: border-box;
  color: #111;
  border-radius: 0;
  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 .telnum {
	font-size: var(--rem36);
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: var(--color-primary-shade);
	color: #fff;
}

/*メールボタン*/
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #fff;
}

/*メールボタン*/
.cta01 .linebtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.linebtn {
    background: #fff;
	color: var(--color-primary);
}

/*ボタンアイコン*/
.cta01 .mailbtn .btnttl::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
}
.cta01 .linebtn .btnttl::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 6 Brands';
	font-weight: 400;
	margin-right: 1rem;
}
.cta01 .linebtn .btnttl::before {
	content: '\f3c0';
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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: #fff;
    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;
}

/*------------------------------------------------------
新着情報
------------------------------------------------------*/
.post .time, .postlist .time, .post2b .time, .post4b .time {
    background: var(--color-primary-shade);
}
.post2b h2, .post4b h2, .post2b h2 a, .post4b h2 a {
    font-size: var(--rem18) !important;
}
.post4b li:nth-child(4n+1):nth-last-child(-n+4), .post4b li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
    background: #fff;
    padding: 10px 8px var(--px40) 10px;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, .15);
}
.post4b_text {
    padding: 0;
}

/*------------------------------------------------------
TOP
------------------------------------------------------*/
.sec01 {
	position: relative;
	background: var(--color-background02);
    z-index: 0;
}
.sec01::before {
    content: "";
    display: block;
    background: var(--color-primary);
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}
.sec01_wrap {
    position: relative;
    background: #fff;
    max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
    padding: var(--px80);
	display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.sec01_inner {
    max-width: 960px;
}
@media print, screen and (max-width: 768px) {
  .sec01_wrap {
    padding: var(--px80) 5%;
  }
}

.sec02 {
	position: relative;
	padding: var(--px120) 0;
    background: url(/wp-content/uploads/bg_service.jpg) no-repeat center / cover;
}
.sec03 {
	position: relative;
	padding: var(--px120) 0;
    background: #fff;
}
.column_wrap {
	position: relative;
	max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.column_wrap .txtarea {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--px40);
    margin: 0;
}
.column_wrap .txtarea .txtinner {
    max-width: 640px;
    width: 90%;
}
.column_wrap .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column_wrap .imgarea img {
	width: 100%;
}

@media print, screen and (max-width: 768px) {
    .column_wrap .txtarea {
        justify-content: flex-start;
    }
    .column_wrap .txtarea .txtinner {
        width: 100%;
    }
    .column_wrap .txtarea {
        padding: var(--px40) 0;
    }
}
.cta01 {
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center;     /* 縦方向中央（高さに応じて調整） */
    text-align: center;
    padding: 60px 20px;      /* 適宜調整 */
}

.cta01_wrap {
    max-width: 800px;
    width: 100%;
}

.ctabtnlist.flexbox {
    justify-content: center; /* ボタンリスト中央寄せ */
}