@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=Outfit:wght@100..900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #F6F6F6;
	--color-background03: #EFEFEE;
    --color-font: #333;
    --color-primary: #2894E7;
    --color-primary-shade: #203792;
	--color-primary-tint: #DAEBF7;
    --color-secondary: #E50050;
    --color-secondary-shade: #FFB753;
    --color-secondary-tint: #50D058;
    --color-border: #EBEBEB;
    --color-table-border: #EBEBEB;

    --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: 'Outfit', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;
    --header-background: #fff;
    --header-color-font: #333;
    --header-color-primary: #2894E7;
    --header-color-primary-shade: #203792;

    --footer-background: #F6F6F6;
    --footer-color-font: #333;
    --footer-color-primary: #333;
}

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-sectionPost {
    width: 90%;
}
.postlist .post_text {
    padding: 20px 0;
}
.txt_c_l {
	text-align: center;
}
.c_white {
	color: #fff;
}
@media print, screen and (max-width: 768px) {
	.txt_c_l {
		text-align: left;
	}
}
#content, body:not(.home) #content.wide {
    padding: var(--px100w) 0 var(--px100);
}
.spmenu #menu {
	right: 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: 5%;
}
@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: 5%;
	}
	.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;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
h1.title.top-loop,
h1.title.bottom-loop {
    font-size: var(--rem48);
}
h1.title.top-loop span.en,
h1.title.bottom-loop span.en {
    display: block;
    color: var(--color-primary);
    font-size: var(--rem24);
    font-family: var(--font-family02);
}

.post h2, h2 {
    font-size: var(--rem48);
    color: var(--color-primary);
    font-weight: 600;
    margin: var(--px40) 0 var(--px30);
	line-height: 1.45;
}
.post h2 span.en, h2 span.en {
    display: block;
    font-family: var(--font-family02);
    font-size: var(--rem24);
    font-weight: 400;
	line-height: 1.35;
}
.post h2::after, h2::after {
	content: none;
}

.post h3, h3 {
	font-size: var(--rem24w);
	color: var(--color-primary);
	padding: 0 0 8px 0;
	margin: var(--px30) 0 var(--px20);
}

/* 下層 */
.post h2.lower_ttl, h2.lower_ttl {
	font-size: var(--rem20);
	text-align: left;
	font-weight: 700;
	color: var(--color-font);
	margin: 0 0 var(--px50);
}
.post h2.lower_ttl span.en, h2.lower_ttl span.en {
	color: var(--color-primary);
	font-size: var(--rem36);
	font-weight: 800;
	line-height: 1.45;
}
.post h2.lower_ttl span.jp, h2.lower_ttl span.jp {
	display: flex;
	align-items: center;
	gap: 5px;
}
.post h2.lower_ttl::after, h2.lower_ttl::after {
	content: none;
}
.post h2.lower_ttl span.jp::after, h2.lower_ttl span.jp::after {
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	background: var(--color-font);
}

/* テキスト */
.post .read_text p, .read_text p {
	font-size: var(--em16);
	line-height: 1.95;
	margin-bottom: .8em;
}
.post .read_text p:last-child, .read_text p:last-child {
	margin-bottom: 0;
}
.post p.txt02, p.txt02 {
	font-size: var(--rem24w);
	margin: 0 auto var(--px20);
}

/* リスト */
.post dt.service_list {
	display: flex;
	gap: 2px;
}
.post dt.service_list::before {
	content: "・";
	display: block;
}

/*------------------------------------------------------
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);
    font-weight: 600;
    padding: var(--rem20) 30px var(--rem20) 20px;
    margin: var(--px40) auto 0;
    border: solid 2px;
    border-radius: 50vh;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: var(--color-primary);
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(40, 148, 231, .6);
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: var(--color-primary);
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}


.lineBtn, .post .lineBtn, a.lineBtn {
	color: #fff;
	background: #00C300;
	font-size: var(--rem20w);
	font-weight: 600;
	border-radius: 50vh;
    padding: var(--rem20) 30px var(--rem20) 20px;
	max-width: 420px;
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin:0 auto;
}
.lineBtn::before, .post .lineBtn::before, a.lineBtn::before {
	content: "";
	background: url(/wp-content/uploads/icon_line.svg) no-repeat center / contain;
	display: block;
	width: var(--rem60);
	height: var(--rem60);
}

.linkBtn.line_btn, .post .linkBtn.line_btn, a.linkBtn.line_btn {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: #00C300;
    font-weight: 600;
    padding: var(--rem20) 30px var(--rem20) 20px;
    margin: var(--px40) auto 0;
    border: solid 2px;
    border-radius: 50vh;
    transition: all .3s;
}
.post .linkBtn.line_btn::after, .linkBtn.line_btn::after, a.linkBtn.line_btn::after {
    border-color: #fff;
}
.post .linkBtn.line_btn:hover, .linkBtn.line_btn:hover, a.linkBtn.line_btn:hover {
    color: #00C300;
    background: #fff;
    border-color: #00C300;
    box-shadow: 0 0 10px rgba(40, 148, 231, .6);
}
.post .linkBtn.line_btn:hover::after, .linkBtn.line_btn:hover::after, a.linkBtn:hover.line_btn::after {
    border-color: #00C300;
}

/*------------------------------------------------------
frame
------------------------------------------------------*/
.frame01 {
	background: var(--color-primary-tint);
	padding: var(--px40);
}


/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}
#header .logo {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 0 0 20px;
}
#header .logo p.logo_txt {
	font-size: 9px;
}
#header .logo span.logo_txt {
	font-size: 1.0rem;
	line-height: 1.35;
	font-weight: 600;
	color: var(--color-font);
}
#header .logo img {
	max-height: 60px;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}
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);
}
nav#mainNav ul li a:active span, nav#mainNav ul li a:hover span, nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li.current-menu-parent a span {
    color: var(--color-primary);
}

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

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
}
#header a.head_btn.tel_btn .tel_icon::before {
    content: '\f3cd';
    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 a:hover {
	background: #fff !important;
	opacity: 1 !important;
}
/* 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
------------------------------------------------------*/
.bg_footer::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_footer.jpg) no-repeat center / cover;
    width: 100%;
    padding-top: 21.56%;
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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 h2.contact_title {
	font-family: var(--font-family01);
	text-align-last: left;
	font-size: min(calc(3.0rem + (1vw - 1.92rem) * 0.6472), 3.0rem);
	margin: 0 auto var(--px30);
    text-align: left;
}
.post h2.contact_title::after {
    content: none;
}
.aligncenter {
	text-align-last: left;
	font-family: var(--font-family01);
	font-weight: normal;
    line-height: 1.85;
}
.wpcf7-form .must {
	background: var(--color-primary);
}
.contact_area {
	font-family: var(--font-family01);
	font-weight: normal;
}
.contact_area th {
	font-weight: bold;
}
.contact_area th.sup {
	font-size: 1.2rem;
	color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
	font-family: var(--font-family01);
}
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select, textarea {
    margin-bottom: 0;
}
.agreement_text {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 完了 */
.post .thanks_btn {
    margin: var(--px60) auto 0 !important;
    display: block;
}
@media print, screen and (max-width: 768px) {
    .post .thanks {
        text-align: left;
    }
}


/*------------------------------------------------------
新着情報
------------------------------------------------------*/
#front-sectionPost .linkBtn, .post #front-sectionPost .linkBtn, #front-sectionPost a.linkBtn {
    margin: 0 auto;
}
#front_top_content, #front_bottom_content {
    background: var(--color-background02);
    margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}


/*------------------------------------------------------
CTA
------------------------------------------------------*/
.cta {
	position: relative;
	margin-top: var(--px80);
}
body.home .foot_bottom.cta {
	display: none;
}
.cta_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;
}
.cta .imgarea {
	position: relative;
	overflow: hidden;
	width: 60%;
	border-radius: var(--px30) 0 0 var(--px30);
}
.cta .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.cta .txtarea {
	position: relative;
	width: 62%;
	display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px40);
    border-radius: 0 var(--px30) var(--px30) 0;
	z-index: 10;
}
.cta .txtarea .txtinner {
    max-width: 760px;
    padding: 0 var(--px40);
}
.cta .txtarea .txtinner .cta_note {
    color: var(--color-primary);
    font-size: var(--rem20);
    font-weight: 600;
}
.cta .txtarea .txtinner .tel_icon {
    color: var(--color-primary);
    font-size: var(--rem48);
    font-weight: 800;
	line-height: 1.35;
}
.cta .txtarea .txtinner .tel_icon::before {
    content: '\f3cd';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: var(--rem40);
    font-weight: 400;
    line-height: 1;
    padding-right: 12px;
}
.cta .txtarea .linkBtn, .post .cta .txtarea .linkBtn, .cta .txtarea a.linkBtn {
    max-width: 320px;
    margin: var(--px20) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
	line-height: 1.35;
    gap: 12px;
}
.fa-envelope:before,
.fa-line:before {
    font-size: var(--rem24w);
}

@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.cta_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.cta_wrap.rev .txtarea {
		margin: 0 -22% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.cta_wrap.rev {
		flex-direction: row;
	}
	.cta .imgarea, .cta .txtarea {
		width: 90%;
	}
	.cta .imgarea {
		border-radius: 0 var(--px30) var(--px30) 0;
	}
	.cta .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
		border-radius: var(--px30) 0 0 var(--px30);
	}
}
@media print, screen and (max-width: 768px) {
	.cta .imgarea, .cta .txtarea {
		width: 100%;
		border-radius: 0;
	}
	.cta .txtarea .txtinner {
		padding: 0;
	}
}


/*------------------------------------------------------
table
------------------------------------------------------*/
.post table.tablestyle00 {
	border-spacing: 0 3px;
	border-collapse: separate;
	border: none;
}
.post table.tablestyle00 th,
.post table.tablestyle00 td {
	padding: 20px;
}
.post table.tablestyle00 th {
	background: var(--color-primary-tint);
	border-right: none;
}
.post table.tablestyle00 th.th {
	background: var(--color-primary);
	color: #fff;
}
@media print, screen and (max-width: 640px) {
	.post table.tablestyle00 {
		border-spacing: 0;

	}
	.post table.tablestyle00 th {
		border-bottom: none;
	}
	.post table.tablestyle00 th.th {
		display: none;
	}
	.post table.responsive.tablestyle00 tr:last-child td:last-child {
		border-bottom: 1px solid var(--color-border);
	}
}
.table25 {
	width: 25% !important;
}
.table50 {
	width: 50% !important;
}

/*------------------------------------------------------
TOP
------------------------------------------------------*/
/* 会社紹介 */
.about {
	background: url(/wp-content/uploads/bg_about.jpg) no-repeat center / cover;
}
.about_inner {
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--px30);
	padding: var(--px80);
}
@media print, screen and (max-width: 768px) {
	.about_inner {
		padding: var(--px80) var(--px30);
	}
}
.post h2.about_ttl, h2.about_ttl {
	font-size: var(--rem40);
	color: var(--color-primary);
	font-weight: 700;
	text-align: center;
	margin: 0 auto var(--px30);
	padding: 0;
}
.post h2.about_ttl::after, h2.about_ttl::after {
	content: none;
}
.post h3.about_sub, h3.about_sub {
	color: var(--color-font);
	font-size: var(--rem30);
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 var(--px30);
	padding: 0;
	border: none;
	letter-spacing: .1rem;
}
.post h3.about_sub span, h3.about_sub span {
	font-size: var(--rem20);
}
.post h3.about_sub::after, h3.about_sub::after {
	content: "";
	display: block;
	width: var(--px30);
	height: 1px;
	background: var(--color-font);
}
.post ul.interview_list {
	margin: 0 auto;
	width: 90%;
}
.post ul.interview_list li img {
	width: 80%;
	display: block;
	margin: 0 auto var(--px20);
}
.price {
	display: flex;
	gap: var(--px40);
}
.price_inner {
	background: #fff;
	border-radius: 28px;
}
@media print, screen and (max-width: 768px) {
	.price {
		flex-direction: column;
		gap: 10px;
	}
}
.price_wrap {
	padding: var(--px30) var(--px20);
	text-align: center;
}
.price_inner.price01 {
	border: 4px solid var(--color-primary);
}
.price_inner.price02 {
	border: 4px solid var(--color-secondary);
}
@media print, screen and (max-width: 768px) {
	.price_inner.price01.w40,
	.price_inner.price02.w40 {
		margin-bottom: 0;
	}
}
.price_inner.price01 h3.price_ttl {
	text-align: center;
	color: #fff;
	background: var(--color-primary);
	font-size: var(--rem18);
	padding: 14px;
	margin: 0 auto;
	border: none;
	border-radius: 24px 24px 0 0;
}
.price_inner.price02 h3.price_ttl {
	text-align: center;
	color: #fff;
	background: var(--color-secondary);
	font-size: var(--rem18);
	padding: 14px;
	margin: 0 auto;
	border: none;
	border-radius: 24px 24px 0 0;
}
.price_inner p.price_name {
	font-size: var(--rem20);
	color: var(--color-font);
	margin: 0 auto var(--px20);
	line-height: 1;
}
.price_inner.price01 p.price_name .num {
	font-size: var(--rem60);
	font-weight: 700;
	color: var(--color-primary);
	padding: 0 10px;
}
.price_inner.price02 p.price_name .num {
	font-size: var(--rem60);
	font-weight: 700;
	color: var(--color-secondary);
	padding: 0 10px 0 0;
}
.price_inner p.price_name span.yen {
	font-size: var(--em16);
}
.price_inner p.price_name span.price_note {
	font-size: var(--rem12);
	text-align: center;
	display: block;
	margin-bottom: 10px;
}

/* 相談内容 */
.top_inner {
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}
.top {
	background: var(--color-background03);
}
.top_inner .counsele_list a {
	display: flex;
	border-radius: var(--px30);
	width: 32%;
}

.top_inner .counsele_list .counsele_image {
	border-radius: var(--px30) 0 0 var(--px30);
	display: flex;
	align-items: center;
	justify-content: center;
}
.top_inner .counsele_list .counsele_image img {
	width: 70%;
}
@media print, screen and (max-width: 1023px) {
	.top_inner .counsele_list {
		flex-direction: column;
		gap: var(--px40);
	}
	.top_inner .counsele_list a {
		width: 100%;
		margin-bottom: 0;
	}
	.top_inner .counsele_list a .counsele_image.w40,
	.top_inner .counsele_list a .counsele_area.w60 {
		margin-bottom: 0;
	}
}
.top_inner .counsele_list a .c_orange {
	background: var(--color-secondary-shade);
}
.top_inner .counsele_list a .c_green {
	background: var(--color-secondary-tint);
}
.top_inner .counsele_list a .c_blue {
	background: var(--color-primary);
}
.top_inner .counsele_list a .counsele_area {
	background: #fff;
	border-radius: 0 var(--px30) var(--px30) 0;
	border: 1px solid var(--color-font);
	border-left: none;
	padding: var(--px40);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.counsele_list a .counsele_area h3.counsele_ttl {
	color: var(--color-primary-shade);
	text-align: center;
	font-size: var(--rem24w);
	font-weight: 700;
	line-height: 1.35;
	margin: 0 auto 16px;
	padding: 0;
	border: none;
}

/* メリット */
.post p.merit_text, p.merit_text {
	text-align: center;
	font-size: var(--rem20);
	font-weight: 700;
	line-height: 1.35;
	margin: var(--px30) auto 0;
}

/* 相談・サポート */
.support {
	display: flex;
	gap: var(--px40);
}
@media print, screen and (max-width: 768px) {
	.support {
		gap: var(--px60);
		flex-direction: column;
	}
}
.post h3.support_ttl, h3.support_ttl {
	color: var(--color-primary-shade);
	font-size: var(--rem30);
	text-align: center;
	font-weight: 700;
	padding: 0;
	margin: 0 auto var(--px30);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.post h3.support_ttl::before, h3.support_ttl::before,
.post h3.support_ttl::after, h3.support_ttl::after {
	content: "";
	display: block;
	width: var(--px60);
	height: 1px;
	background: var(--color-primary-shade);
}
.post ul.support_list {
	display: flex;
	flex-direction: column;
	gap: var(--px50);
}
.post ul.support_list .w40,
.post ul.support_list .w60 {
	margin-bottom: 0;
}
.post ul.support_list li a {
	background: url(/wp-content/uploads/bg_support.png) no-repeat center / cover;
	border-radius: var(--px30);
	padding: var(--px40);
	display: flex;
	align-items: center;
	color: #fff;
	gap: var(--px20);
}
.post ul.support_list li img {
	border-radius: var(--px20);
	display: block;
	width: 94%;
}
.post ul.support_list li h4.support_sub {
	font-size: var(--rem30);
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
	padding: 0;
}
.post ul.support_list li h4.support_sub::before {
	content: none;
}
.post ul.support_list p {
	line-height: 1.65;
}
@media print, screen and (max-width: 1023px) {
	.post ul.support_list li a {
		padding: var(--px30);
	}
}
@media print, screen and (max-width: 768px) {
	.post ul.support_list li a {
		padding: var(--px20);
	}
	.post ul.support_list li h4.support_sub {
		font-size: var(--rem24w);
	}
}


/* アクセス */
.map {
	position: relative;
    background: url(/wp-content/uploads/bg_about.jpg) no-repeat center / cover;
	padding: min(calc(45rem + (1vw - 1.92rem) * 9.7087) ,450px) 0 var(--px80);
}
.map::before {
    content: "";
	position: absolute;
    top: 0;
    left: 0;
    background: url(/wp-content/uploads/bg_map.jpg) no-repeat center / cover;
    width: 100%;
    height: 50%;
    z-index: 0;
}
.map_wrap {
	position: relative;
	background: #fff;
	max-width: 1600px;
	width: 90%;
    margin: 0 auto;
	border-radius: var(--px30);
	z-index: 1;
}
.map_inner .googlemap {
	border-radius: var(--px30) 0 0 var(--px30);
	padding-bottom: 45%;
	margin: 0 auto;
}
.map_inner .googlemap iframe {
	width: 100%;
	height: 100%;
}
.map_inner .map_area {
	padding: var(--px40) var(--px60);
	background: #fff;
	border-radius: 0 var(--px30) var(--px30) 0;
}
@media print, screen and (max-width: 768px) {
	.map_inner .map_area {
		border-radius: var(--px30) var(--px30) 0 0;
	}
	.map_inner .googlemap {
		border-radius: 0 0 var(--px30) var(--px30);
		padding-top: 180px;
	}
}
.map_inner .map_logo {
	width: 70%;
	margin: 0 auto;
}
.map_inner .map_logo img {
	width: 100%;
	display: block;
	margin: 0 auto var(--px30);
}
.map_inner .map_area dl.map_list {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	width: 100%;
	font-size: var(--rem16);
}
.map_inner .map_area dl.map_list dt {
	width: 18%;
	font-weight: 700;
	color: var(--color-primary);
}
.map_inner .map_area dl.map_list dd {
	width: 75%;
}

/*------------------------------------------------------
会社概要
------------------------------------------------------*/
.post p.company_name, p.company_name {
	font-size: var(--rem18);
	font-weight: 700;
	letter-spacing: .2rem;
}
.post p.vision_ttl, p.vision_ttl {
	font-size: var(--rem30);
	font-weight: 800;
	color: var(--color-secondary-shade);
	line-height: 2;
}


/*------------------------------------------------------
事業内容
------------------------------------------------------*/
.service {
	display: flex;
	flex-direction: column;
	gap: var(--px30);
}
.service_wrap {
	align-items: center;
	gap: var(--px50);
}
.service_wrap img {
	width: 100%;
}


ul.flowlist02 {
	counter-reset: flow_list;
}
ul.flowlist02 > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
	width: 100%;
	background: #f2f2f2;
	position: relative;
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 60px;
}
.post .flowlist02 > li > dl {
	width: 100%;
	line-height: 1.8;
	display: flex;
	align-items: center;
	gap: var(--px30);
}
.flowlist02 > li:not(:last-child) dl::before,
.flowlist02 > li:not(:last-child) dl::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flowlist02 > li:not(:last-child) dl::before {
	border-width: 22px;
	border-top-color: var(--color-primary);
}
.flowlist02 > li:not(:last-child) dl::after {
	border-width: 20px;
}
.post .flowlist02 > li > dl dt {
	position: relative;
	width: 10%;
	background: var(--color-primary);
	padding: var(--px20) 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	display: block;
	color: #fff;
	text-align: center;
	font-size: var(--rem36);
	font-family: var(--font-family02);
	font-weight: 700;
	position: relative;
	z-index: 100;
}
.post .flowlist02 > li > dl dd {
	width: 90%;
	margin-bottom: 0;
	padding: 10px 0;
}
.post .flowlist02 > li > dl span.flow_ttl {
	font-size: var(--rem20);
	font-weight: 700;
	padding-right: var(--px20);
	width: 25%;
}

@media print, screen and (max-width: 768px) {
	.post .flowlist02 > li > dl, .flowlist02 .flow_img {
		width: 100%;
	}
	.flow_img::before {
		padding-top: calc(360px + (1vw - 7.68px) * 35.6234);
	}
	.post .flowlist02 > li > dl dt {
		width: 20%;
	}
	.post .flowlist02 > li > dl dd {
		width: 80%;
	}
	.post .flowlist02 > li > dl span.flow_ttl {
		display: block;
		width: 100%;
	}
}


/*------------------------------------------------------
コンセプト/Q&A
------------------------------------------------------*/
.post h2.strenght_ttl {
    position: relative;
	z-index: 20;
    padding: 0;
    line-height: 1.3;
	text-align: center;
	margin: 0 auto var(--px40);
}
.post h2.strenght_ttl b {
    display: block;
    color: var(--color-primary-tint);
    font-size: 240%;
    font-family: var(--body-font-family);
    text-align: center;
    line-height: 1;
}
.post h2.strenght_ttl span {
	position: absolute;
	width: 100%;
    top: 80%;
    left: 50%;
    display: block;
    color: var(--color-font);
    font-size: var(--rem20);
    padding: 0 var(--px20);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.post h2.strenght_ttl::after {
  content: none;
}

.strenght_image {
	width: 100%;
	margin: 0 auto var(--px20);
	border-radius: var(--px30);
}
.strenght_image img {
	display: block;
	width: 100%;
}

.strenght_inner {
	margin: 0 auto var(--px50);
}
.post ul.strenght_list {
	gap: var(--px50) 1%;
}
.post ul.strenght_list li {
	display: flex;
	flex-direction: column;
}
.post ul.strenght_list li .strenght_text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.post .strenght .strenght_text h3 {
	font-size: var(--rem20w);
	text-align: center;
	font-weight: 800;
	padding: 0;
	margin: 0 auto var(--px20);
	border: none;
	color: var(--color-font);
	line-height: 1.35;
	flex-grow: 1;
}
.post .strenght .strenght_text p {
	font-size: var(--rem16);
	line-height: 1.65;
	flex-grow: 1;
}
@media print, screen and (max-width: 768px) {
	.post ul.strenght_list.col3_list > li {
		margin-bottom: 0;
	}
}


/* メリット */
.strenght_image {
	position: relative;
}
.strenght_num {
	text-align: center;
	color: #fff;
	font-size: var(--rem30);
	font-weight: 700;
	width:0;
	height:0;
	border-style:solid;
	border-width: 100px 150px 100px 0;
	border-color: transparent #2894E7 transparent transparent;
	transform: rotate(90deg);
}



/* お客様の声 */
.voice {
	display: flex;
	flex-direction: column;
	gap: var(--px50);
}
.voice .voice_inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--px40);
	padding: var(--px40) var(--px80) var(--px40) var(--px20);
	border: 6px solid var(--color-primary-tint);
	border-radius: var(--px30);
}
.voice .voice_image {
	width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.voice .voice_inner img,
.voice .voice_inner p.voice_name {
	width: 60%;
	margin: 0;
	text-align: center;
	font-size: var(--rem16);
	font-weight: 700;
	display: block;
}
.voice .voice_inner p.voice_name {
	margin-top: 20px;
}
.voice .voice_text {
	width: 70%;
}
@media print, screen and (max-width: 768px) {
	.voice .voice_inner {
		flex-direction: column;
		gap: var(--px30);
		padding: var(--px60) var(--px30);
	}
	.voice .voice_image {
		width: 50%;
	}
	.voice .voice_text {
		width: 100%;
	}
	.voice .voice_inner p.voice_name {
		width: 100%;
	}
}


/* よくある質問 */
.qa_list {
	cursor: pointer;
}
.qa_list .qa_list_inner dt {
	position: relative;
	font-weight: normal;
	margin: 1rem 0 0 0;
	display: flex;
	align-items: stretch;
	padding: 0rem 1rem 0rem 0rem;
	background: #ffffff;
	border: 1px solid var(--color-border);
}
.qa_list .qa_list_inner dd .ans_flex {
	position: relative;
	font-weight: normal;
	margin: 0;
	display: flex;
	align-items: stretch;
	padding: 0;
	background: #ffffff;
}
.qa_list .qa_list_inner .a_ico {
	color: var(--color-font);
	background: #fff;
	font-family: var(--font-family02);
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	border-right: 1px solid var(--color-border);
	width: 100%;
	text-align: center;
	max-width: 90px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
}
.qa_list .qa_list_inner .q_ico {
	background: var(--color-primary);
	color: #fff;
	font-family: var(--font-family02);
	line-height: 1.0;
	padding: 1rem 1rem 1.5rem 1rem;
	font-size: 2rem;
	font-weight: bold;
	width: 100%;
	text-align: center;
	max-width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
	border-right: 1px solid var(--color-border);
}
.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	line-height: 1.45;
	display: flex;
	align-items: center;
}
.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}
.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid #494949;
  border-bottom: 1px solid #494949;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.qa_list .qa_list_inner dd {
	display: none;
	position: relative;
	padding: 0;
	margin: 0 0 1rem 0;
	border: 1px solid var(--color-border);
	border-top: 0;
}
@media only screen and (max-width: 959px) {
	.qa_list .qa_list_inner {
		margin-bottom: 8rem;
	}
}
@media only screen and (max-width: 768px) {
	.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
		padding: 1rem;
	}
	.qa_list .qa_list_inner dt {
		padding: 0rem 1rem 0rem 0rem;
	}
	.qa_list .qa_list_inner .a_ico, .qa_list .qa_list_inner .q_ico {
		max-width: 50px;
		padding: 1.2rem 1.0rem;
	}
	.qa_list .qa_list_inner dt:after {
		right: 1.5rem;
		width: 6px;
		height: 6px;
	}
	.qa_list .qa_list_inner .active:after {
		right: 1.0rem;
	}
}
@media only screen and (max-width: 559px) {
	.qa_list .qa_list_inner dd {
		font-size: 1.4rem;
	}
	.qa_list .qa_list_inner {
		margin-bottom: 6rem;
	}
	.qa_list .qa_list_inner dt {
		font-size: 1.4rem;
	}
}

.post .credit_inner dl.credit_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--px12) 3%;
	width: 100%;
}
.post .credit_inner dl.credit_list dt {
	font-size: var(--rem16);
	background: var(--color-background02);
	border-radius: 50vh;
	padding: 2px 5px;
	width: 15%;
	text-align: center;
	display: block;
}
.post .credit_inner dl.credit_list dd {
	font-size: var(--rem16);
	width: 82%;
}

@media only screen and (max-width: 768px) {
	.post .credit_inner dl.credit_list {
		flex-direction: column;
	}
	.post .credit_inner dl.credit_list dt,
	.post .credit_inner dl.credit_list dd {
		width: 100%;
	}
}