@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=Zen+Maru+Gothic&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #333;
    --color-primary: #F27575;
    --color-primary-tint: #FBF3F3;
    --color-secondary: #f5f5f5;
    --color-secondary-shade: #9E9E9E;
    --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: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #333;
    --header-color-primary: #F27575;
    --header-color-primary-tint: #FBF3F3;

    --footer-background: #FBF3F3;
    --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_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: var(--px120) 0;
	background: var(--color-primary-tint);
}
.widecolor02 {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: var(--px120) 0;
	background: #F8F8F8;
}
.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;
    gap: var(--px60) 0;
}
.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: 600px) {
	.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);
}
.col_gap12 {
    display: flex;
    flex-direction: column;
    gap: var(--px120);
}

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


/*------------------------------------------------------
MV
------------------------------------------------------*/
#metaslider-id-98 {
    display: block;
}
#metaslider-id-345 {
    display: none;
}
@media print, screen and (max-width: 768px) {
    #metaslider-id-98 {
        display: none;
    }
    #metaslider-id-345 {
        display: block;
    }
}

/*------------------------------------------------------
h1Header
------------------------------------------------------*/
header#h1Header {
    background: var(--color-primary-tint);
}
#thumbImg::before, header#h1Header::before {
    content: none;
}
h1.title, .post h1, header#h1Header h1.title {
    color: var(--color-primary);
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
/* 色 */
.color_w {
    color: #fff !important;
}
.color_pri {
    color: var(--color-primary) !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;
    color: var(--color-font);
}
.post .read p, .read p {
    margin-bottom: 1em;
}
.post .read p:last-child, .read p:last-child {
    margin-bottom: 0;
}

/* サイズ */
.fz24 {
    font-size: var(--rem24) !important;
}


/* H2 */
.post h2, h2 {
    font-size: var(--rem40w);
    color: var(--color-primary);
    font-family: var(--font-family02);
}
h1.title.top-loop,
h1.title.bottom-loop,
.post h2.main_ttl, h2.main_ttl {
    margin: 0 auto var(--px50);
}
h1.title.top-loop .en,
h1.title.bottom-loop .en,
.post h2.main_ttl .en, h2.main_ttl .en {
    font-size: var(--rem40w);
    font-weight: 600;
    color: var(--color-font);
}
h1.title.top-loop .jp,
h1.title.bottom-loop .jp,
.post h2.main_ttl .jp, h2.main_ttl .jp {
    font-size: var(--rem20);
    color: var(--color-font);
    line-height: 1.2;
    display: block;
}
.post h2::after, h2::after {
    content: none;
}


/* H3 */
.post h3, h3 {
    font-family: var(--font-family02);
    color: var(--color-primary);
    font-size: var(--rem24w);
    padding: 0 0 6px 0;
    margin: 0 0 var(--px40);
    border-bottom: 1px solid var(--color-primary);
}
.post h3.sub_ttl, h3.sub_ttl {
    font-size: var(--rem20w);
}
.post h3.sub_ttl02, h3.sub_ttl02 {
    font-size: var(--rem30w);
    font-weight: 600;
    padding: 0;
    margin: 0 auto;
    border: none;
}

.post h4, h4 {
    color: var(--color-font);
    font-family: var(--font-family02);
}

/*------------------------------------------------------
リスト
------------------------------------------------------*/
.post ul li,
.post ol li,
.post dl dt,
.post dl dd {
    color: var(--color-font);
}

/* 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.l_size li {
    font-size: var(--rem24);
    font-weight: 700;
}
.post ul.list li:last-child {
    margin-bottom: 0;
}

.post ul.u_list01 li h4 {
    padding: 0;
    margin: var(--px20) auto 14px;
    font-size: var(--rem20w);
    text-align: center;
}
.post ul.u_list01 li h4::before {
    content: none;
}
.post ul.u_list01 li p {
    font-size: var(--rem14);
}

.post ul.u_list02 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--px60) 4%;
}
.post ul.u_list02 li {
    width: 28%;
}
.post ul.u_list02 li p {
    margin-top: var(--px18);
    line-height: 1.65;
}
@media print, screen and (max-width: 768px) {
    .post ul.u_list02 li {
        width: 48%;
    }
}

.post ul.pomise_list {
    li {
        font-size: var(--rem20);
        font-weight: 700;
        position: relative;
        margin-bottom: .7em;
        padding-left: 60px;
    }
}
.post ul.pomise_list li::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/icon_tubame.png) no-repeat center / contain;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}

/* olリスト */
.post ol li {
    margin-bottom: .7em;
}

.post ol.l_list li {
    font-size: var(--rem20);
    font-weight: 700;
}


/* dlリスト */
.post dl dt {
    font-family: var(--font-family02);
    color: var(--color-secondary-shade);
    margin-bottom: 4px;
}
.post dl dd {
    margin-bottom: 1em;
}
.post dl dd: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);
    font-weight: 600;
    padding: var(--rem16) 30px var(--rem16) 20px;
    margin: 0 auto;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    transition: all .3s;
}
.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: 3px 4px 16px rgba(0, 0, 0, .2);
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
}
.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;
}

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


/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th, .post table td {
    padding: var(--px20);
    vertical-align: middle;
}
.post table th.txt_c, .post table td.txt_c {
    text-align: center;
}
@media print, screen and (max-width: 600px) {
    .post table th.txt_c, .post table td.txt_c {
        text-align: left;
    }
}
.post table th {
    background: var(--color-primary-tint);
}

.post table.price th, .post table.price td {
    font-size: var(--rem20);
}
.post table.price td {
    padding: var(--px40) var(--px20);
    background: #fff;
}

.post table.table_list {
    table-layout: fixed;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 5px;
    border: none;
}
.post table.table_list th {
    font-size: var(--px24);
    font-weight: 700;
}
.post table.table_list th {
    background: #fff;
}
.post table.table_list th,
.post table.table_list td {
    text-align: center;
    vertical-align: baseline;
    line-height: 1.45;
    border: none;
}
.post table.table_list tbody th,
.post table.table_list tbody td {
    background: #fff;
    border: none;
	vertical-align: middle;
}
.bg_pink {
    background: #FFECEE !important;
}
.post table.table_list thead th:nth-of-type(1) {
    background: #F8F8F8;
}
@media print, screen and (max-width: 768px) {
    .post table.table_list tbody td img {
        width: 60%;
    }
}

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

.frame01 {
    background: var(--color-secondary);
    padding: var(--px80) var(--px40);
}
.frame02 {
    background: var(--color-primary-tint);
    padding: var(--px80) var(--px40);
}
.post .frame01 h3,
.post .frame02 h3 {
    padding: 0;
    margin: 0 auto var(--px40);
    color: var(--color-primary);
    border: none;
}

.frame03 {
    background: url(/wp-content/uploads/bg_trouble.jpg) no-repeat center;
    padding: var(--px80) var(--px40);
}

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

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}
nav#mainNav ul li ul.sub-menu li a, nav#mainNav ul li ul.sub-menu li a:hover, nav#mainNav ul li ul.sub-menu li.current-menu-item a, nav#mainNav ul li.current-menu-item ul.sub-menu li a {
    background: #fff;
    color: var(--color-font);
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
}
#header a.head_btn:hover,
#header a.head_btn.mail_btn:hover::before {
    color: var(--color-primary);
}


/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #fff;
    color: var(--color-font);
    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;
}

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: 0;
}
#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
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;
  background: rgba(255, 255, 255, .8);
  padding: var(--px80) var(--px40);
}
.cta01 .ctabtnlist {
  justify-content: space-between;
  max-width: 780px;
  margin: var(--px50) auto 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;
    border: 1px solid var(--color-primary);
    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: #fff;
	color: var(--color-primary);
}
/*メールボタン*/
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #fff;
}
/*ボタンアイコン*/
.cta01 .mailbtn .btnttl::before, .cta01 .telnum::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
}
.cta01 .telnum::before {
	content: '\f3cd';
}

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

/*------------------------------------------------------
TOP
------------------------------------------------------*/
.sec01 {
    position: relative;
}
.sec01::after {
    content: "";
    width:0;
    height:0;
    border-style:solid;
    border-width: 80px 60px 0 60px;
    border-color: #FFFFFF transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: calc(-1* var(--px80));
    transform: translate(-50%,0);
    z-index: 10;
}

.sec02 {
    background: url(/wp-content/uploads/bg_concept.jpg) no-repeat center / cover;
    padding: var(--px120) 0;
}

.sec03 {
    background: url(/wp-content/uploads/bg_flow.jpg) no-repeat center / cover;
    padding: 0 0 var(--px120);
}
.column01,
.column02 {
	position: relative;
}
.column01_wrap {
	position: relative;
	max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.column01 .txtarea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--px40);
    margin: 0;
}
.column01 .txtarea .txtinner {
    max-width: 580px;
    width: 90%;
}
.column01 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column01 .imgarea img {
	width: 100%;
}

.column02_wrap {
	position: relative;
    margin: 0 auto;
	z-index: 1;
}
.column02 .txtarea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--px40);
    margin: 0;
}
.column02 .txtarea .txtinner {
    max-width: 680px;
    width: 90%;
    margin: 0 auto;
}
.column02 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column02 .imgarea img {
	width: 100%;
}

@media screen and (max-width: 768px) {
    .column01 .txtarea,
    .column02 .txtarea {
        padding: var(--px60) var(--px40) 0;
        justify-content: flex-start;
    }
    .column01 .txtarea .txtinner,
    .column02 .txtarea .txtinner {
        width: 100%;
    }
}


.post ul.card {
    display: flex;
    gap: var(--rem20);
    width: 90%;
    max-width: var(--content-max-width);
    margin: var(--px120) auto 0;
}
.post ul.card .card_item {
    width: calc(100% / 2);
    position: relative;
    overflow: hidden;
    border-radius: 0 var(--px100) 0 var(--px100);
}
@media screen and (max-width: 768px) {
    .post ul.card {
        flex-direction: column;
    }
    .post ul.card .card_item {
        width: 100%;
    }
}
.post ul.card a.card_link {
    display: block;
    padding: var(--px80) var(--px40);
}
.post ul.card a.card_link:hover .card_figure img {
    opacity: 1;
    transform: scale(1.2);
}
.post ul.card .card_textarea {
    position: relative;
    z-index: 10;
}
.post ul.card .card_textarea .linkBtn {
    margin: 0 auto;
    display: block;
}
.post ul.card .card_figure {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all .3s;
}
.post ul.card .card_figure::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all .3s;
}
.post ul.card .card_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*------------------------------------------------------
お申込みの流れ
------------------------------------------------------*/
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: var(--px30);
	width: 100%;
	padding: var(--px40);
	background: var(--color-primary-tint);
	position: relative;
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 60px;
}
.flowlist02 .flow_img {
	width: 35%;
}
.post .flowlist02 > li > dl {
	width: calc(65% - min(calc(40px + (1vw - 19.2px) * 1.6181), 40px));
	line-height: 1.8;
}
.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;
	display: flex;
	align-items: center;
    color: var(--color-font);
    font-family: var(--font-family02);
	font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.4531), 2.4rem); /* 2.4-1.7rem (1920-375) */
	font-weight: 600;
	padding: 0 0 1rem 0;
	margin-bottom: min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border-bottom: dotted 2px var(--color-primary);
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	color: #fff;
	background: var(--color-primary);
    line-height: 1;
    letter-spacing: .2rem;
	padding: 5px 10px;
	margin-right: 10px;
	position: relative;
	z-index: 100;
}
.post .flowlist02 > li > dl dd {
	padding: 0;
}
@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 .list_style01 li {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	flex-shrink: 0;
	border-bottom: solid 1px #ddd;
}
.post .list_style01 li .head {
	width: 25%;
	padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/* 30-20px 15-10px (1920-375) */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.post .list_style01 li .body {
	padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/* 30-20px 15-10px (1920-375) */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.post .list_style01 li:first-child {
	border-top: solid 1px #ddd;
}
.post .list_style01 li:nth-child(odd) {
	background: var(--color-primary-tint);
}
@media only screen and (max-width: 640px) {
	.post .list_style01 li {
		flex-direction: column;
	}
	.post .list_style01 li .head {
		width: 100%;
		padding-bottom: 0;
	}
    .post .list_style01 li .body {
        width: 100%;
        padding-top: 0;
    }
}

/*------------------------------------------------------
料金
------------------------------------------------------*/
.bg01,
.bg02,
.bg03,
.bg04,
.bg05,
.bg06,
.bg07,
.bg08 {
    position: relative;
}
.bg_price {
    background: url(/wp-content/uploads/bg_price.png) no-repeat center / cover;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    padding: 0 0 var(--px200);
}
.bg01::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg01.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 231px;
    height: 449px;
    position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
}
.bg02::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg02.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 255px;
    height: 455px;
    position: absolute;
    bottom: 0;
    right: 0;
	z-index: -1;
}
.bg03::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg03.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 218px;
    height: 346px;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: -1;
}
.bg04::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg04.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 255px;
    height: 376px;
    position: absolute;
    bottom: 0;
    right: 0;
	z-index: -1;
}
.bg05::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg05.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 239px;
    height: 380px;
    position: absolute;
    top: -50px;
    left: 0;
	z-index: -1;
}
.bg06::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg06.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 67px;
    height: 60px;
    position: absolute;
    top: 0;
    left: var(--px50);
	z-index: -1;
}
.bg07::after {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg07.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 443px;
    height: 824px;
    position: absolute;
    top: var(--px100);
    right: 0;
	z-index: -1;
}
/*-- 一旦非表示
.bg08::after {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg02.png) no-repeat;
    background-size: contain;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    width: 255px;
    height: 455px;
    position: absolute;
    bottom: 0;
    right: 0;
}
--*/
@media only screen and (max-width: 768px) {
    .bg01::before,
    .bg02::before,
    .bg03::before,
    .bg04::before,
    .bg05::before,
    .bg06::before,
    .bg07::after,
    .bg08::after {
        content: none;
    }
}

.bg_image {
    position: relative;
}
.bg_image::before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_image.png) no-repeat;
    background-size: contain;
    width: 334px;
    height: 244px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/*------------------------------------------------------
料金
------------------------------------------------------*/
.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 #cccccc;
}
.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-primary);
	background: #fff;
    font-family: var(--font-family02);
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	border-right: 1px solid #cccccc;
	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);
    font-family: var(--font-family02);
    color: #fff;
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.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 #cccccc;
}
.qa_list .qa_list_inner .q_desc {
    color: var(--color-font);
    font-family: var(--font-family01);
    font-weight: 500;
}
.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.7;
}
.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 #cccccc;
	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: 0.5rem 1rem 0.5rem 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;
	}
}

/*------------------------------------------------------
私たちの約束
------------------------------------------------------*/
.list.l_size.bg_image.promise li{
	margin-bottom: 2em;
}