@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:wght@500;700&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
	--color-background02: #EEFACA;
    --color-font: #333;
    --color-primary: #90B722;
    --color-primary-shade: #57AF14;
    --color-primary-tint: #F0F5E3;
    --color-border: #ccc;
    --color-table-border: #ccc;

    --body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    --body-font-family: 'Zen Maru Gothic', sans-serif;
    --font-family01: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --font-family02: 'Noto Sans JP', sans-serif;

    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #333;
    --header-color-primary: #90B722;
    --header-color-primary-tint: #CEED99;

    --footer-background: #90B722  ;
    --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;
}
.googlemap {
	margin: var(--px50) auto 0;
}
/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: var(--color-background01);
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

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

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

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

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

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

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

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

/*------------------------------------------------------
gap
------------------------------------------------------*/
/* 縦 */
.col_gap2 {
    display: flex;
    flex-direction: column;
    gap: var(--px20);
}
.col_gap4 {
    display: flex;
    flex-direction: column;
    gap: var(--px40);
}
.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;
}

/* 配列 */
.txt_c_l {
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left;
    }
}
.txt_l_c {
    text-align: left !important;
}
@media print, screen and (max-width: 768px) {
    .txt_l_c {
        text-align: center !important;
    }
}

/* サイズ */
.post p.fz28 {
	font-size: var(--rem28);
}

/* テキスト */
.post p, p {
    font-size: var(--rem16);
    line-height: 1.85;
	font-family: var(--font-family02) !important;
}
.post .read p, .read p {
    margin-bottom: 1em;
}
.post .read02 p, .read02 p {
    margin-bottom: 1.6em;
}
.post .read p:last-child, .read p:last-child,
.post .read02 p:last-child, .read02 p:last-child{
    margin-bottom: 0;
}

/* タイトル */
h1.title.top-loop,
h1.title.bottom-loop,
.post h2.main_ttl, h2.main_ttl {
	margin: 0 auto var(--px50);
	letter-spacing: .4rem;
}
h1.title.top-loop .jp,
h1.title.bottom-loop .jp,
.post h2.main_ttl .jp, h2.main_ttl .jp {
	display: block;
	color: var(--color-primary);
	font-weight: 700;
	font-size: var(--rem60);
}
h1.title.top-loop .en,
h1.title.bottom-loop .en,
.post h2.main_ttl .en, h2.main_ttl .en {
	display: block;
	color: var(--color-font);
	font-size: var(--rem30);
	line-height: 1;
}
h1.title.top-loop::after,
h1.title.bottom-loop::after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: 2.2em;
    height: 3px;
    background: var(--color-primary);
    margin: 0.6em auto 0;
}
.post h2.txt_l::after, h2.txt_l::after {
    content: '';
	margin: 0.6em 0 0 !important;
}
.post h2.txt_l_c::after, h2.txt_l_c::after {
    content: '';
	margin: 0.6em 0 0 !important;
	@media print, screen and (max-width: 768px) {
		margin: 0.6em auto 0 !important;
	}
}

.post h3.message_ttl, h3.message_ttl {
	font-size: var(--rem28);
	margin: 0 auto var(--px20);
	padding: 0;
	border: none;
}

/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* 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 li:last-child {
    margin-bottom: 0;
}

ul.service_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--px50) 0;
}
ul.service_list li {
	width: 48%;
}
ul.service_list li h3 {
	margin: var(--px20) auto 10px;
	padding: 0;
	text-align: center;
	font-size: var(--rem24w);
	font-weight: 700;
	border: none;
}
@media print, screen and (max-width: 640px) {
	ul.service_list li {
	width: 100%;
}
}

/* 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;
}

/* dlリスト */
.post dl.map_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 2%;
	font-family: var(--font-family02);
}
.post dl.map_list dt {
	width: 23%;
	margin-bottom: 0.5em;
	font-weight: normal;
	font-size: var(--rem16);
}
.post dl.map_list dd {
	width: 75%;
	margin-bottom: 0.5em;
	font-size: var(--rem16);
}
@media print, screen and (max-width: 1024px) {
	.post dl.map_list {
		flex-direction: column;
	}
	.post dl.map_list dt,
	.post dl.map_list dd {
		width: 100%;
	}
}

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: block;
    width: 100%;
    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: 0 auto;
    border: 1px solid var(--color-primary);
    border-radius: 50vh;
    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: none;
	background: url(/wp-content/uploads/arrow.svg) no-repeat center / contain;
	width: 23px;
	height: 6px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	right: 40px;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
	background: url(/wp-content/uploads/arrow_pri.svg) no-repeat center / contain;
	right: 20px;
}
.subimitarea > .linkBtn {
    background: transparent !important;
    margin: 0 auto !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}
@media print, screen and (max-width: 640px) {
	.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
		right: 15px;
	}
	.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
		right: 10px;
	}
}

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


/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th, .post table td {
    padding: 20px;
	font-family: var(--font-family02) !important;
}
.post table th {
	background: var(--color-primary-tint);
}

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

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

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
	font-size: var(--rem18);
}
nav#mainNav ul, #header .header__nav-contact {
	padding: 10px;
}

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

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #fff;
    color: var(--color-font);
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
	border-left: 1px solid var(--color-font);
}
#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.mail_btn {
	background: var(--color-primary);
	color: #fff;
	border-radius: 10px;
	font-size: var(--rem14);
}
#header a.head_btn.mail_btn::before {
	font-size: 1.2em;
}


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);
	}
	nav#mainNav ul, #header .header__nav-contact {
		padding: 0;
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/
#footer .footnav:not(:last-child) {
	margin-bottom: 0;
}
#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
#foot-contact_pt05 {
	clear: both;
	position: relative;
	background: url(/wp-content/uploads/bg_cta.png) no-repeat center / cover;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	padding: 0 calc((100vw - 100%) / 2);
	z-index: 0;
}
#foot-contact_pt05 .wrapper_content {
	position: relative;
	z-index: 5;
	background: url(/wp-content/uploads/bg_recruit.jpg) no-repeat center / cover;
	padding: var(--px160) var(--px60);
	max-width: var(--content-max-width);
	width: 100%;
}
#foot-contact_pt05 h2.main_ttl .jp {
	color: var(--color-font);
}
#foot-contact_pt05 h2.main_ttl::after {
	background: var(--color-font);
}

#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: space-between;
	gap: min(calc(15px + (1vw - 19.2px) * 0.6472), 15px);
	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((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2);
	}
}
/*FireFox対応*/
@-moz-document url-prefix() {
	@media print, screen and (min-width: 769px) {
			#foot-contact_pt05 ul.contactbtn_list > li {
					width: calc(((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2) - 1px);
			}
	}
}

#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%;
	color: #FFF;
	font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
	font-weight: 600;
	text-align: center;
	line-height: 1.6;
	padding: min(calc(20px + (1vw - 19.2px) * 0.5178), 20px) min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border-radius: 50vh;
	transition: .3s;
}
#foot-contact_pt05 a.f-contact_btn::after {
	content: none;
}
#foot-contact_pt05 a.f-contact_btn.telBtn {
	color: var(--color-primary);
	background: #fff;
	border: 1px solid var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.telBtn:hover {
	color: #fff;
	background: var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn {
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn:hover {
	color: var(--color-primary);
	background: #fff;
}

#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);
}
#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);
}
#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: var(--rem14);
	font-weight: 500;
	letter-spacing: .1rem;
}

@media print, screen and (max-width: 768px) {
	#foot-contact_pt05 a.f-contact_btn {
			height: 110px;
	}
	#foot-contact_pt05 ul.contactbtn_list {
			gap: 15px;
	}
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.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%;
    background: #fff;
    line-height: 1.25;
}
.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;
}
.fullwide01_wrap {
    background: rgba(255, 255, 255, .9);
    max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
    padding: var(--px80) var(--px40);
	display: flex;
    justify-content: center;
    align-items: center;
}
.fullwide01_inner {
    max-width: 960px;
}
@media print, screen and (max-width: 768px) {
  .fullwide01_wrap {
    padding: var(--px80) 5%;
  }
}

.column02 {
	position: relative;
	background: url(/wp-content/uploads/bg_recruit.jpg) no-repeat center/ cover;
}
.column02_wrap {
	position: relative;
	max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.column02 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.column02 .txtarea .txtinner {
    max-width: 600px;
}
.column02 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column02 .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media print, screen and (max-width: 768px) {
  .column02 .txtarea {
    padding: var(--px80) 5%;
  }
}


.column03 {
	position: relative;
}
.column03_wrap {
	position: relative;
	max-width: var(--content-max-width);
	width: 100%;
    margin: 0 auto;
	z-index: 1;
}
.column03 .txtarea {
    background: #C4E171;
    display: flex;
    align-items: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.column03 .txtarea .txtinner {
    max-width: 600px;
}
.column03 .txtarea .txtinner h2 {
	color: #fff;
	text-align: left;
	font-size: var(--rem30w);
	margin: 0 0 var(--px40);
}
.column03 .txtarea .txtinner h2 span {
	font-size: var(--rem40w);
}
.column03 .txtarea .txtinner h2::after {
	content: none;
}

@media print, screen and (max-width: 768px) {
  .column03 .txtarea {
    padding: var(--px80) 5%;
  }
}


/*------------------------------------------------------
ご利用方法
------------------------------------------------------*/
.post .service_inner h3 {
	display: flex;
	align-items: center;
	gap: 16px;
}
.post .service_inner h3 {
	font-size: var(--rem24w);
	font-weight: 700;
	padding: 0;
	margin: 0 0 var(--px30);
	border: none;
}
.post .service_inner h3 span {
	color: #fff;
	background: var(--color-primary);
	font-size: var(--rem20w);
	text-align: center;
	padding: 10px;
	line-height: 1;
}

/*------------------------------------------------------
採用情報
------------------------------------------------------*/
.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem); /* 3.2-2.4rem (1920-375) */
	font-weight: 500;
	font-style: italic;
}

.post .lead_en {
	font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
	/* -- 1920 1.8rem 375 1.3rem -- */
	color: var(--color-primary-shade);
	letter-spacing: 0.8rem;
}

/*--幅フル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: #fafafa;
}
.post .widecolor > h2:first-child {
	margin-top: 0 !important;
}

/*--スタイルリストエリア--------------------------------------------*/

ul.box_style01 > li {
	position: relative;
	gap: 40px;
	width: 100%;
	background: #fff;
	padding: min(calc(40px + (1vw - 19.2px) * 0.6472), 40px) min(calc(35px + (1vw - 19.2px) * 0.6472), 35px);
	border-radius: 20px;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	margin-bottom: 30px;
	text-align: left;
}
.post ul.box_style01 .box_style_ttl {
	width: 100%;
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 400;
	padding: 0.6rem 0 0.6rem 2rem;
	margin: 0 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/*15-10px (1920-375) */
	border-bottom: none;
	border-left: 3px solid var(--color-primary-shade);
	text-align: left;
	font-style: italic;
	line-height: 1.4;
}
@media screen and (min-width: 769px) {
	ul.box_style01 > li {
		display: flex;
	}
}

/*--ボタン別アイコン--------------------------------------------*/

a.external.ico_phone::before {
	content: '\f095';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_mail::before {
	content: '\f0e0';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_phone::after, a.external.ico_mail::after {
	content: none;
}

/*---table_style04-------------------------------------*/

.post table.table_style04 th {
	background-color: transparent;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
	border: none;
}
table.table_style04 tr:first-child {
	border-top: 1px solid #ababab;
}
table.table_style04 tr:last-child {
	border-bottom: 1px solid #ababab;
}
table.table_style04 tr {
	border-top: 1px dashed #ababab;
	letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
	padding: 30px 20px;
}
table.table_style04 th {
	position: relative;
	z-index: 0;
}
table.table_style04 th:before {
	position: absolute;
	content: "";
	background: var(--color-primary-tint);
	top: 7px;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: auto;
	z-index: -1;
}
table.table_style04 td ul li {
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
table.table_style04 td ul li:before {
	position: absolute;
	content: "・";
	top: 0;
	left: 0;
}
@media print, screen and (max-width: 768px) {
	table.table_style04 th, table.table_style04 td {
		padding: 35px 10px;
		font-size: 1.4rem;
		vertical-align: middle;
	}
	table.table_style04 th {
		width: 32%;
	}
	table.table_style04 td {
		width: 68%;
	}
}

/*--contact_area-------------------------------------*/

.contact_area {
    padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);/*80px-40px (1920-375)x*/
    text-align: center;
    background: var(--color-primary-tint);
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
}
.post .contact_ttl {
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 600;
	text-align: center;
	letter-spacing: .2rem;
	padding: 0;
	margin: min(calc(120px + (1vw - 19.2px) * 3.5599), 120px) auto min(calc(50px + (1vw - 19.2px) * 0.9709), 50px); /* 120-65px auto 50-35px (1920-375) */
}
.post .contact_ttl::before {
	content: none;
	position: relative;
	width: auto;
	height: auto;
	top: auto;
	left: auto;
}
.post .contact_ttl::after {
	content: '';
	position: relative;
	visibility: visible;
	display: block;
	width: 2.2em;
	height: 3px;
	background: var(--color-primary);
	margin: 0.6em auto 0;
}
.contact_read {
    margin: 0 0 min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);/*30px-15px (1920-375)*/
    text-align: center;
}
.button_wrap,
.post .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.button_wrap > *,
.post .button_wrap > * {
  margin: 10px !important;
}
.contact_area .linkBtn, .contact_area .post .linkBtn {
    padding: 0;
}
.contact_area .linkBtn a {
    color: #fff;
    padding: 0.8em 1.2em;
    display: block;
}
.contact_area .linkBtn a:hover {
	color: var(--color-primary);
}
@media print, screen and (max-width: 768px) {
	.contact_area {
    padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px) var(--px20);/*80px-40px (1920-375)x*/
	}
}

/*------------------------------------------------------
よくある質問
------------------------------------------------------*/
.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;
	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);
	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, .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 var(--color-primary-shade);
  border-bottom: 1px solid var(--color-primary-shade);
  -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;
	}
}


/*------------------------------------------------------
サービス内容
------------------------------------------------------*/
.serviec_content .wrap {
	background: var(--color-background02);
	padding: var(--px40) var(--px40);
}
.serviec_content .wrap h3 {
	font-size: var(--rem24w);
	text-align: center;
	margin: 0 auto var(--px30);
	padding: 0;
	border: none;
}

.post ul.list_checkbox > li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	gap: 10px;
	font-size: var(--rem20);
	line-height: 1.45;
	margin-bottom: .5em;
	padding: 0;
}
.post ul.list_checkbox > li span {
	width: calc(100% - (24px + 10px));
}
.post ul.list_checkbox > li:before, .post ul li.list_checkbox:before {
	content: "";
	position: relative;
	background: url(/wp-content/uploads/icon_check.svg) no-repeat center/ contain;
	width: 24px;
	height: 24px;
}
@media only screen and (max-width: 768px) {
	.post ul.list_checkbox > li span {
		width: calc(100% - (18px + 10px));
	}
.post ul.list_checkbox > li:before, .post ul li.list_checkbox:before {
		width: 18px;
		height: 18px;
	}
}