@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+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #343434;
    --color-primary: #00491E;
    --color-secondary: #343434;
    --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 Serif JP', serif;
    --font-family01: 'Noto Serif JP', serif;
    --font-family02: 'Yuji Syuku', serif;
    --font-family03: 'Montserrat', sans-serif;

    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #343434;
    --header-color-primary: #00491E;
    --header-color-primary-tint: #00491E;

    --footer-background: #343434;
    --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;
}

/*--メディアクエリ--------------------------------------------*/
@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;
}
.page_contents_inner + .page_contents_inner {
    margin-top: var(--px120);
}
/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: var(--px120) 0;
	background: #FAFAFA;
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

/*------------------------------------------------------
カラムリスト
------------------------------------------------------*/
/*---------col02-----------*/

.post .col2_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col2_list > li {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 600px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col03-----------*/

.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
}
.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}
.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
@media print, screen and (max-width: 768px) {
	.post .col3_list > li {
		width: 49%;
        margin-bottom: 8%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/

.post .col4_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col4_list > li {
    width: 24%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*------------------------------------------------------
Hover
------------------------------------------------------*/
a:hover {
    opacity: .7;
    cursor: pointer;
}

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

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

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

/* サイズ */
.fz20 {
    font-size: var(--rem20w) !important;
}
.lh24 {
    line-height: 2.4 !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: 1.75;
    .name {
        font-size: var(--rem20w);
        display: block;
    }
}
.post .read p, .read p {
    margin-bottom: 1em;
}
.post .read p:last-child, .read p:last-child {
    margin-bottom: 0;
}

#breadcrumb ul li .en {
    display: none;
}

header#h1Header h1.title .jp {
    display: none;
}

header#h1Header h1.title .zh {
    display: none;
}


/* H2 */
.post h2, h2 {
    font-size: var(--rem30w);
    /*font-family: var(--font-family02);*/
    font-weight: 500;
    letter-spacing: .2rem;
    margin: 0 auto var(--px60);
    &::after {
        content: '';
        position: relative;
        visibility: visible;
        display: block;
        width: 2.2em;
        height: 2px;
        background: var(--color-primary);
        margin: 0.4em auto 0;
    }
}

.post h2.main_ttl {
    font-family: var(--font-family03);
    font-size: var(--rem40w);
    font-weight: 500;
    text-align: center;
    padding: 0;
    margin: 0 auto var(--px30);
    &::after {
        content: none;
    }
}

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

/* H4 */
.post h4 {
    position: relative;
    font-size: var(--rem18);
    font-family: var(--font-family01);
    font-weight: 600;
    padding: 0 0 0 1.2em;
    margin: var(--px30) auto var(--px16);
    border: none;
}


/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* ulリスト */
.post ul.list {
    list-style: none; /* デフォルトのマーカーを消す */
    padding-left: 0;
}
.post ul.list li {
    position: relative;
    padding-left: 1.5em; /* マーカー分のスペース */
    line-height: 1.45;
    margin-bottom: .5em;
}
.post ul.list li::before {
    content: "•"; /* 任意のマーカー */
    position: absolute;
    left: 0;
    color: var(--color-font);
}
.post ul.list li:last-child {
    margin-bottom: 0;
}

.post ul.achieve_list li {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    padding: var(--px30);
    background: #fff;
    h3 {
        font-size: var(a--rem20w);
        padding: 0;
        margin: 0 0 var(--px12);
        border: none;
    }
    dl {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        dt {
            width: 20%;
        }
        dd {
            width: 80%;
            padding-bottom: 3px;
        }
    }
}

.post ul.content_list {
    margin: 0 auto;
}
.post ul.content_list li .textarea {
    background: url(/wp-content/uploads/bg_content.jpg) no-repeat center / cover;
    padding: 10px var(--px30);
    display: flex;
    justify-content: space-between;
    align-items: center;
    h3 {
        color: #fff;
        font-size: var(--rem20w);
        text-align: left;
        padding: 0;
        margin: 0;
        border: none;
    }
    &::after {
        content: "";
        display: block;
        background: url(/wp-content/uploads/arrow.png) no-repeat 0 0 / contain;
        width: 38px;
        height: 38px;
    }
}

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

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary);
    font-weight: 600;
    padding: var(--rem14) 30px var(--rem14) 20px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
    right: 30px;
    transition: all .3s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: #fff;
    background: var(--color-primary);
    opacity: .8;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    right: 20px;
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}

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


/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th, .post table td {
    padding: 20px;
}
.post table th {
    background: url(/wp-content/uploads/bg_content.jpg) no-repeat center / cover;
    color: #fff;
}

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

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header ul.header__contact li {
    position: relative;
    &::before {
        content: "";
        display: block;
        width: 1px;
        height: 60px;
        background: var(--color-font);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
    }
}
nav#mainNav ul li {
    position: relative;
    &::before {
        content: "";
        display: block;
        width: 1px;
        height: 34px;
        background: var(--color-font);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
    }
	&:last-child {
		display: none;
	}
}
#header a.head_btn {
    background: #fff;
    color: var(--color-font);

}
#header a.head_btn:hover {
    color: #fff;
}
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;
}

ul.bogo-language-switcher {
    background: #1A2B20;
    display: flex;
    justify-content: flex-end;
    padding: 0.5em;
    gap: 5px;
}
ul.bogo-language-switcher li {
    color: #fff;
    border: 1px solid #fff;
}
ul.bogo-language-switcher li span.bogoflags {
    display: none;
}
ul.bogo-language-switcher li span a {
    color: #fff;
    display: flex;
    padding: 2px 10px;
    line-height: 1;
    font-size: var(--rem14);
    font-weight: 600;
}
ul.bogo-language-switcher li span a.current {
    background: #fff;
    color: var(--color-primary);
}

/* 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);
	}
	nav#mainNav ul li:last-child {
		display: block;
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/
.footer_flex {
    display: flex;
    justify-content: space-between;
    max-width: var(--content-max-width);
    width: 90%;
    gap: var(--px80);
    margin: 0 auto;
}
#footer .footer__logo:not(:last-child) {
    text-align: left;
}
#footer .footer_flex .wrap p.note {
    font-size: var(--rem14);
}
#footer .footnav ul {
    justify-content: flex-end;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}
#footer .footer__logo img {
    width: 90%;
}
#footer {
    background: url(/wp-content/uploads/bg_footer.jpg) no-repeat center / cover;
}
#footer .inner {
    width: 50%;
	margin-inline: 0;
}
#copyright {
    background: transparent;
    font-size: 1.2rem;
    margin-top: var(--px50);
}
#footer ul.footer_list {
    display: grid;
    justify-content: flex-end;
    gap: var(--px40) 4%;
    grid-template-columns: repeat(2, 1fr);
	
    li {
        width: 100%;
        border-bottom: 1px solid #fff;
        padding: 0 0 var(--rem12) 0;
        margin: 0;
			a {
    		line-height: 2.2;
		}
    }
}
#footer ul.footer_list li .en {
    font-family: var(--font-family03);
    font-weight: 500;
    display: block;
    line-height: 1;
}
#footer ul.footer_list li .jp {
    font-family: var(--font-family01);
    font-weight: 500;
    display: block;
}
@media print, screen and (max-width: 768px) {
    .footer_flex {
        flex-direction: column;
    }
    #footer .footer__logo:not(:last-child) {
        text-align: center;
    }
    #footer ul.footer_list {
        justify-content: center;
    }
	#footer .inner {
		width: 100%;
	}
}


/*------------------------------------------------------
CTA
------------------------------------------------------*/


/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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
------------------------------------------------------*/
.fullwide01 {
	position: relative;
	background: url(/wp-content/uploads/bg_about.jpg) no-repeat center / cover;
	padding: var(--px160) 0;
}
.fullwide01_wrap {
    background: transparent;
    max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
    padding: var(--px80) var(--px40);
	display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}
.fullwide01_inner {
    max-width: 960px;
}
@media print, screen and (max-width: 768px) {
  .fullwide01_wrap {
    padding: var(--px80) 5%;
  }
}

.sec02 {
    background: var(--color-secondary);
    padding: var(--px60) 0 var(--px160);
}

p.message {
    font-family: var(--font-family02);
}

h1.title, .post h1, header#h1Header h1.title {
    font-size: var(--rem36);
    font-family: var(--font-family03);
    font-weight: 500;
    letter-spacing: .2rem;
    text-align: center;
    text-shadow: none;
    padding: 0;
    z-index: 20;
}
body.page-id-17 #wrapper span.en {
    display: none;
}

#sitemap_list .en {
  display: none;
}
/*--------google-recaptcha--------*/
.recaptcha {
    display: flex;
    justify-content: center;
    padding: 10px 0 30px;
}