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

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #F5F5F5;
    --color-font: #111;
    --color-font02: #C3C3C3;
    --color-primary: #356AA3;
    --color-secondary: #F89E00;
    --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: 'Josefin Sans', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #111;
    --header-color-primary: #356AA3;
    --header-color-primary-shade: #F89E00;

    --footer-background: #356AA3;
    --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;
}
.sp {
    display: none;
}
@media print, screen and (max-width: 768px) {
    .sp {
        display: block;
    }
}

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

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
/* 配置 */
.txt_c_l {
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left;
    }
}
.post h2 {
    margin: var(--px60) auto var(--px40);
}


/* メインタイトル */
h1.title.top-loop,
h1.title.bottom-loop,
.post h2.main_ttl, h2.main_ttl {
    font-size: var(--rem24w);
    font-weight: 600;
    color: var(--color-font);
    letter-spacing: .1em;
    margin: 0 0 var(--px30);
}
h1.title.top-loop span.en,
h1.title.bottom-loop span.en,
.post h2.main_ttl span, h2.main_ttl span {
    font-family: var(--font-family02);
    font-weight: 800;
    font-size: var(--rem72);
    line-height: 1;
    display: block;
}
.post h2.main_ttl::after, h2.main_ttl::after {
    content: none;
}

/* 下層タイトル H2*/
.post h2.lower_ttl, h2.lower_ttl {
    font-size: var(--rem20w);
    font-weight: 600;
    color: var(--color-font);
}
.post h2.lower_ttl span.en, h2.lower_ttl span.en {
    font-family: var(--font-family02);
    font-weight: 800;
    font-size: var(--rem40);
    line-height: 1.2;
    display: block;
}
.post h2.lower_ttl::after, h2.lower_ttl::after {
    content: none;
}

/* 下層タイトル H3 */
.post h3.ttl01_h3, h3.ttl01_h3 {
    font-size: var(--rem24w);
    color: var(--color-font);
    font-weight: 800;
    margin: 0 0 var(--px30);
    padding: 0;
    border: none;
}
.post h3.ttl01_h3 span, h3.ttl01_h3 span {
    display: block;
    color: var(--color-font02);
    font-size: var(--rem20w);
}
.post h3.ttl02_h3, h3.ttl02_h3 {
	font-size: var(--px30);
	font-weight: 600;
    padding: 0;
    margin: 0 auto var(--px20);
    border: none;
}
.post h3.ttl03_h3, h3.ttl03_h3 {
    font-size: var(--rem28);
    font-weight: 500;
    padding: 0 0 0 var(--px24);
    margin: 0 0 var(--px30);
    border: none;
    border-left: 3px solid var(--color-font);
    line-height: 1.65;
}
.post h3.ttl03_h3 span, h3.ttl03_h3 span {
    font-family: var(--font-family02);
    font-size: var(--rem20w);
    display: block;
}


/* テキスト */
.post p, p {
    font-size: var(--rem16);
    line-height: 1.85;
}
.post .lead_text p {
    font-size: var(--rem18);
    line-height: 2;
    margin-bottom: 1em;
}
.post .lead_text p:last-child {
    margin-bottom: 0;
}
.post .lead_en, .lead_en {
    font-family: var(--font-family02);
    font-size: var(--rem20w);
    letter-spacing: .1em;
    color: var(--color-font);
}

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

/*------------------------------------------------------
画像
------------------------------------------------------*/
.pot img, img {
    width: 100%;
    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 var(--color-primary);
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::before, .linkBtn::before, a.linkBtn::before  {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 30px;
    height: 1px;
    background-color: #fff;
    border-right: none;
    border-bottom: none;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    right: 18px;
    width: 6px;
    height: 1px;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 0.5px) 50%;
    border-right: none;
    border-bottom: none;
}
.post .wpcf7 .linkBtn::before, .wpcf7 .linkBtn::before, .wpcf7 a.linkBtn::before,
.post .wpcf7 .linkBtn::after, .wpcf7 .linkBtn::after, .wpcf7 a.linkBtn::after {
    content: none;
}
.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);
}
.post .linkBtn:hover::before, .linkBtn:hover::before, a.linkBtn:hover::before {
    background-color: var(--color-primary);
    right: 12px;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    background-color: var(--color-primary);
    right: 13px;
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}

/* 黄色ボタン */
.linkBtn.c_yellow, .post .linkBtnc_yellow, a.linkBtn.c_yellow {
    background: var(--color-secondary);
    color: var(--color-font);
    border: solid 2px var(--color-secondary);
}
.post .linkBtn.c_yellow::before, .linkBtn.c_yellow::before, a.linkBtn.c_yellow::before,
.post .linkBtn.c_yellow::after, .linkBtn.c_yellow::after, a.linkBtn.c_yellow::after {
    background-color: var(--color-font);
}
.post .linkBtn.c_yellow:hover, .linkBtn.c_yellow:hover, a.linkBtn.c_yellow:hover {
    color: var(--color-secondary);
    background: #fff;
    border: solid 2px var(--color-secondary);
}
.post .linkBtn.c_yellow:hover::before, .linkBtn.c_yellow:hover::before, a.linkBtn.c_yellow:hover::before,
.post .linkBtn.c_yellow:hover::after, .linkBtn.c_yellow:hover::after, a.linkBtn.c_yellow:hover::after {
    background-color: var(--color-secondary);
}

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


/*------------------------------------------------------
Content
------------------------------------------------------*/
.lower_content {
    margin: var(--px120) auto 0;
}
.inner_content {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

/* ナビゲーション */
nav#mainNav ul li a {
    padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) min(calc(3.5rem + (1vw - 1.92rem) * 2.1205), 35px);
}

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

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

/* メールボタン */
#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
------------------------------------------------------*/
.footer_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}
#footer .footer__logo:not(:last-child) {
    text-align: left;
    margin-bottom: 0;
}
#footer .footnav ul {
    justify-content: flex-end;
    gap: 10px;
}

#footer ul li a {
    color: var(--footer-color-font);
    margin-left: .5em;
}
#footer .footnav ul > li {
    margin-bottom: 0;
}
#footer .footnav ul > li:last-child {
    margin-right: 0;
}
#footer .footnav ul > li::before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    display: block;
    font-size: var(--rem14);
    font-weight: 600;
    color: var(--footer-color-font);
    background: none;
}
#footer .footnav ul > li::after {
    content: none;
}
#footer li a, .footeradd, .footertel, #footer li a:hover {
    color: var(--footer-color-font);
}
#copyright {
    background: transparent;
    border-top: 1px solid #fff;
    padding-top: var(--px30);
    margin: var(--px50) auto 0;
    max-width: 1600px;
    width: 90%;
}


/*------------------------------------------------------
CTA
------------------------------------------------------*/
#foot-contact_pt05 {
    clear: both;
    position: relative;
    background: #fff;
    margin-top: var(--px100);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding: 0 0 var(--px240);
    z-index: 0;
}
body.home #foot-contact_pt05.footer_bottom {
    display: none;
}
#foot-contact_pt05::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
    z-index: 1;
    bottom: 0;
    left: 0;
}
.wrapper_content {
    position: relative;
    background: var(--color-background02);
    margin: 0 auto;
    padding: var(--px120) var(--px30);
    max-width: 1600px;
    width: 90%;
    z-index: 3;
}
#foot-contact_pt05 a.f-contact_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    text-align: center;
    line-height: 1.6;
    padding: 24px 10px;
    transition: .3s;
}
#foot-contact_pt05 a.f-contact_btn.telBtn {
    background: var(--color-secondary);
    color: var(--color-font);
}
#foot-contact_pt05 a.f-contact_btn.telBtn:hover {
    color: var(--color-secondary);
    background: var(--color-font);
    opacity: .95;
}
#foot-contact_pt05 a.f-contact_btn.mailBtn {
    color: #fff;
    background: var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn:hover {
    color: var(--color-primary);
    background: #fff;
    opacity: .95;
}
#foot-contact_pt05 a.f-contact_btn::after {
    content: none;
}
#foot-contact_pt05 a.f-contact_btn .ico::before {
    display: inline-block;
    font-size: min(calc(3rem + (1vw - 19.2px) * 0.5825), 3rem);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: .4em;
}
#foot-contact_pt05 a.f-contact_btn.telBtn .ico {
    display: block;
    font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.4531), 3.2rem);
    font-weight: 700;
    margin: 0;
}
#foot-contact_pt05 a.f-contact_btn .ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.5178), 2.4rem);
    font-weight: 700;
}

#foot-contact_pt05 a.f-contact_btn.telBtn .ico::before {
    content: '\f3cd';
}
#foot-contact_pt05 a.f-contact_btn.mailBtn .ico::before {
    content: '\f0e0';
}
#foot-contact_pt05 a.f-contact_btn .note {
    font-size: 1.3rem;
    font-weight: 600;
}
#foot-contact_pt05 ul.contactbtn_list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    margin: min(calc(40px + (1vw - 1.92rem) * 1.2945),40px) auto;
    z-index: 10;
}
#foot-contact_pt05 ul.contactbtn_list > li {
    width: 100%;
}
#foot-contact_pt05 ul.contactbtn_list > li a.f-contact_btn {
    width: 100%;
    max-width: none;
    min-width: inherit;
}
#foot-contact_pt05 ul.contactbtn_list:first-child {
    margin-top: 0;
}
#foot-contact_pt05 ul.contactbtn_list:last-child {
    margin-bottom: 0;
}

/*レスポンシブ対応*/
@media print, screen and (min-width: 769px) {
    #foot-contact_pt05 ul.contactbtn_list > li {
            width: calc(50% - 10px);
            max-width: 480px;
    }
    #foot-contact_pt05 ul.contactbtn_list {
            max-width: 100%;
    }
}

/*FireFox対応*/
@-moz-document url-prefix() {
    @media print, screen and (min-width: 769px) {
            #foot-contact_pt05 ul.contactbtn_list > li {
                    width: calc(50% - 10px);
                    max-width: 480px;
            }
    }
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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-secondary);
}
.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 img.image_auth_jp_quiz {
    width: auto;
}

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

/*------------------------------------------------------
カラム
------------------------------------------------------*/
/* column01 */
.post .column_row {
    display: flex;
    flex-direction: column;
    gap: var(--px40);
}
.post .column01 {
    background: #fff;
    padding: var(--px30);
    margin: 0;
}
.col_pri {
    border: 3px solid var(--color-primary);
}
.col_sec {
    border: 3px solid var(--color-secondary);
}
.post .column01 img {
    display: block;
    width: 100%;
    min-width: 160px;
    margin: 0;
}
.post .column01 p {
    padding-right: var(--px60);
}
@media print, screen and (max-width: 768px) {
    .post .column01 img {
        max-width: 160px;
        margin: 0 auto var(--px30);
    }
    .post .column01 p {
        padding: 0;
    }
}

/* 画像＋テキスト */
.post ul.row_list.col3_list {
    gap: var(--px40) 10px;
}
.post ul.row_list li {
    display: flex;
    flex-direction: column;
}
.row_area {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
    padding: var(--px30) var(--px20) var(--px40);
}
.post .row_area h3, .row_area h3 {
    font-size: var(--rem24w);
    font-weight: 700;
    padding: 0;
    margin: 0 auto var(--px14);
    border: none;
    flex-grow: 1;
}
.post .row_area h3, .row_area p {
    flex-grow: 1;
}

/* column02 */
.post .column02 {
	position: relative;
    background: var(--color-background02);
	padding: var(--px100) 0;
}
.post .column02:before {
    content: "";
    background: url(/wp-content/uploads/bg_rec.jpg) no-repeat center / cover;
    width: 60%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.post .column02_wrap {
	position: relative;
	z-index: 1;
}
.post .column02 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    padding: var(--px80);
    margin: 0;
}
.post .column02 .txtarea .txtinner {
    max-width: 540px;
}
.post .column02 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.post .column02 .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* column03 */
.column03 {
	position: relative;
    background: var(--color-background02);
}
.column03_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;
}
.column03 .imgarea {
	position: relative;
	    aspect-ratio: 4 / 3;
	overflow: hidden;
	width: 60%;
}
.column03 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column03 .txtarea {
	position: relative;
	width: 55%;
	 display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px80);
	margin: 0 auto -70px -15%;
	z-index: 10;
}
.column03 .txtarea .txtinner {
    max-width: 540px;
}
.column03_wrap + .column03_wrap {
	margin-top: var(--px120);
}

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

/*------------------------------------------------------
エントリーはこちら
------------------------------------------------------*/
.contact_area {
    padding: min(calc(8rem + (1vw - 1.92rem) * 3.2362), 80px);
    text-align: center;
    background: #f7f7f7;
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
}
.post .contact_area .linkBtn, .contact_area .linkBtn {
    max-width: 500px;
    width: 100%;
    margin: var(--px30) auto 0;
}


/*------------------------------------------------------
背景
------------------------------------------------------*/
.bg_half {
    background: var(--color-background02);
    padding: var(--px100) 0 var(--px80);
    position: relative;
    z-index: 0;
}
.bg_half:after {
    content: "";
    position: absolute;
    display: block;
    background: var(--color-primary);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}
@media print, screen and (max-width: 768px) {
    .bg_half:after {
        height: 70%;
    }
}