@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=Archivo+Black&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #eee;
    --color-font: #111;
    --color-primary: #F0B601;
    --color-primary-shade: #E45958;
    --color-primary-tint: #F5A142;
    --color-secondary: #888888;
    --color-secondary-shade: #D1D1D1;
    --color-secondary-tint: #2A2A2A;
    --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: 'Archivo Black', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #111;
    --header-color-primary: #888888;
    --header-color-primary-shade: #D1D1D1;
    --header-color-primary-tint: #2A2A2A;
    --header-color-primary-link: #F0B601;

    --footer-background: #F7F7F7;
    --footer-color-font: #111;
    --footer-color-primary: #111;
}

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);
    font-weight: 500;
}
.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: 94%;
}
#content, body:not(.home) #content.wide {
    padding: var(--px100w) 0 var(--px120);
}
/*------------------------------------------------------
幅フル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%;
}
@media print, screen and (max-width: 768px) {
	.post .col2_list > li {
		width: 100%;
        margin-bottom: 6%;
	}
	.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: 23%;
	margin-bottom: 1.5%
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 30%;
		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: 768px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

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

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
.post h2.top_ttl, h2.top_ttl {
    color: var(--color-font);
    font-size: var(--rem36);
    font-weight: 800;
    text-align: left;
    margin: 0 0 var(--px30);
}
.post h2.top_ttl span.en, h2.top_ttl span.en {
    display: block;
    font-family: var(--font-family02);
    color: var(--color-primary);
    font-size: var(--rem20);
    text-align: left;
    padding: 3px 20px;
    border-left: 3px solid var(--color-primary);
    margin: 0 0 10px;
}
.post h2.top_ttl span.sub, h2.top_ttl span.sub {
    display: block;
    font-size: var(--rem24);
}

.post p.read_text, p.read_text {
    font-size: var(--rem16);
    line-height: 2.25;
}

.post h2.main_ttl, h2.main_ttl {
    font-size: var(--rem36);
    font-weight: 700;
    margin: 0 0 var(--px50) 0;
    text-align: center;
}

.post h2.top_ttl::after, h2.top_ttl::after,
.post h2.lower_ttl::after, h2.lower_ttl::after,
.post h2.main_ttl::after, h2.main_ttl::after {
    content: none;
}

.post h2.lower_ttl, h2.lower_ttl {
    color: var(--color-font);
    font-weight: 800;
    font-size: var(--rem30);
    margin: 0 0 var(--px50);
}
.post p.lower_sub, p.lower_sub {
    font-size: var(--rem20);
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    margin: calc(-1*var(--px30)) auto var(--px50);
}
.post h2.lower_ttl span.en, h2.lower_ttl span.en {
    display: block;
    font-family: var(--font-family02);
    color: var(--color-primary);
    font-size: var(--rem14);
    margin-top: 3px;
}
.post h2.lower_ttl span.sub_ttl, h2.lower_ttl span.sub_ttl {
    display: block;
    font-size: var(--rem24);
}

.color_w {
    color: #fff !important;
}

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
    max-width: 240px;
    font-size: var(--rem16);
    color: var(--color-font);
    font-weight: 700;
    line-height: 1.65;
    background: transparent;
    padding: var(--rem16) 30px var(--rem16) 20px;
    margin: 0 auto;
    border: 2px solid var(--color-font);
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover {
    color: var(--color-font);
    background: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
    color: var(--color-font);
    font-weight: 700;
}
.post .subimitarea .linkBtn:hover input[type="submit"] {
    color: var(--color-font);
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: var(--color-font);
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: var(--color-font);
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}
#header > div {
    min-height: 0;
}
.mobile #header > div {
    min-height: 0;
}

/* ナビゲーション */
nav#mainNav ul li a {
    font-size: var(--rem14);
    padding: var(--px20);
}
nav#mainNav ul li a span {
    font-size: var(--rem12);
}
nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
    color: var(--color-primary-tint);
}

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

/* 電話ボタン */
#header a.head_btn.tel_btn {
    color: #fff;
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.0rem;
}
#header a.head_btn.tel_btn.tel01 {
    background: var(--header-color-primary);
}
#header a.head_btn.tel_btn.tel02 {
    color: var(--header-color-font);
    background: var(--header-color-primary-shade);
}
#header a.head_btn.tel_btn .tel_icon::before {
    content: '\f095';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    padding-right: 6px;
}
#header a.head_btn .tel_text-sub {
    font-size: 1.0rem;
}
#header a.head_btn.tel_btn:hover {
    opacity: .7;
}

/* メールボタン */
#header a.head_btn.mail_btn {
    background: var(--color-secondary-tint);
    flex-direction: row;
    font-size: var(--rem16);
    gap: 8px;
}

/* 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 {
    color: var(--footer-color-font);
    font-size: min(calc(1.4rem + (1vw - 19.2px) * 0.1942), 1.4rem); /* 1.4-1.1rem (1920-375) */
    padding: min(calc(50px + (1vw - 19.2px) * 0.9709), 50px) 0 30px; /* 50-35px(1920-375) */
    background: var(--footer-background);
}
#footer a {
    -webkit-transition: .2s;
    transition: .2s;
}
#footer .inner {
    width: 94%;
    max-width: var(--content-max-width);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#footer ul {
    font-size: 100%;
    padding: 0;
}
#footer ul li {
    display: block;
    padding: 0;
    margin: 0;
}
#footer ul li::before {
    content: none;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
}
#footer ul li a {
    padding: 0;
}
#footer li a, .footeradd, .footertel, #footer li a:hover {
    color: var(--color-font);
}
#footer img {
    width: auto;
    max-width: 100%;
}
/*------フッターロゴ
--------------------------------------------*/
#footer .footer__logo:not(:last-child) {
    text-align: left;
    margin: 0 auto var(--px80);
    width: 94%;
    max-width: var(--content-max-width);
}
#footer .footer__logo img {
    max-width: 320px;
    max-height: min(calc(60px + (1vw - 19.2px) * 1.2945), 60px);
    -o-object-fit: contain;
    object-fit: contain;
}
#footer .footer__logo span.social {
    display: block;
    margin: 1em 0 0 1em;
}
/*------フッターナビ
--------------------------------------------*/
#footer .footnav {
    float: none;
}
#footer .footnav ul {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#footer .footnav ul > li {
    position: relative;
    padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);
    margin-bottom: 0;
    line-height: 1;
}
#footer .footnav ul > li::before, #footer .footnav ul > li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--color-font);
    top: 0;
}
#footer .footnav ul > li::before {
    left: 0;
}
#footer .footnav ul > li::after {
    right: -1px;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}

@media print, screen and (max-width: 768px) {
    #footer .footer__logo:not(:last-child) {
            text-align: center;
    }
    #footer .inner {
            display: block;
    }
    #footer .footnav ul > li {
            margin-bottom: 2em;
    }
}
/*------コピーライト
--------------------------------------------*/
#copyright {
    color: var(--color-font);
    font-size: min(calc(1.2rem + (1vw - 19.2px) * 0.1294), 1.2rem); /* 1.2-1rem (1920-375) */
    letter-spacing: .1rem;
    padding: 0;
    background: transparent;
    margin: 0;
}


/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.post ul#sitemap_list li {
	margin-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	padding-left: 0;
	padding-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	border-bottom: 1px solid var(--color-border);
}

/*------------------------------------------------------
お問い合わせ
------------------------------------------------------*/
.post h2.contact_title {
	font-family: var(--font-family01);
	text-align-last: left;
	font-size: min(calc(3.0rem + (1vw - 1.92rem) * 0.6472), 3.0rem);
	margin: 0 auto var(--px30);
    text-align: left;
}
.post h2.contact_title::after {
    content: none;
}
.aligncenter {
	text-align-last: left;
	font-family: var(--font-family01);
	font-weight: normal;
    line-height: 1.85;
}
.wpcf7-form .must {
	background: var(--color-primary)
}
.contact_area {
	font-family: var(--font-family01);
	font-weight: normal;
}
.contact_area th {
	font-weight: bold;
}
.contact_area th.sup {
	font-size: 1.2rem;
	color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
	font-family: var(--font-family01);
    padding: 0;
}

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


/*------------------------------------------------------
TOP
------------------------------------------------------*/
/* MV */
#mainImg {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(196, 196, 196, .4);
}
    #mainImg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: url(/wp-content/uploads/bg_mv.jpg) no-repeat center / cover;
    width: 70%;
}
div#n2-ss-2 .n-uc-T4IVxnzA45c3 {
    margin-bottom: 0 !important;
}
div#n2-ss-2 .n-uc-OaRIYIjWyRRf-inner {
    padding: 0 !important;
}
div#n2-ss-2 .n-uc-SNy0WUhICxWn {
    padding: 0 !important;
}
.About_content.front_contents {
    margin: 0;
    padding: 0;
}
.topAbout {
	position: relative;
	padding: var(--px120) 0 0 ;
	margin: 0;
}
.topAbout:before {
    content: "";
    background: url(https://sun-moon.fun/wp-content/uploads/bg_topAbout.jpg) no-repeat center / cover;
    width: 100%;
    height: 80%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-attachment: fixed;
}
.topAbout_wrap {
	position: relative;
	max-width: 1600px;
	width: 90%;
    margin: var(--px60) auto 0;
	z-index: 1;
}
.topAbout .txtarea {
    background: #1F1F1F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px60);
    margin: 0;
}
.topAbout .txtarea .txtinner {
    max-width: 640px;
}
.topAbout .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topAbout .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Service_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: var(--px120) 0;
    gap: var(--px160);
    background: url(/wp-content/uploads/bg_topPara03.png) no-repeat center / cover;
    background-attachment: fixed;
}
.topService {
	position: relative;
	margin: 0;
}
.topService_wrap {
	position: relative;
	max-width: 1600px;
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.topService .txtarea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.topService .txtarea .txtinner {
    max-width: 540px;
}
.topService .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topService .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .topService .txtarea {
        padding: var(--px80) 0;
    }
}


.bg_para01 {
    background: url(/wp-content/uploads/bg_topPara01.jpg) no-repeat center / cover;
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-top: 32.66%;
    background-attachment: fixed;
}


.topSun_inner {
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}
.topSun_list > li {
	position: relative;
	background: transparent;
    background: var(--color-background02);
    color: var(--color-font);
    padding: var(--px140) var(--px80);
}
.topSun_list .txtarea {
    max-width: 500px;
    margin: 0 auto;
	padding: 0;
	background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.topSun_list .txtarea h2.topSun_ttl {
    font-size: var(--rem36);
    font-weight: 700;
    margin: 0 0 var(--px30) 0;
    text-align: left;
}
.topSun_list .txtarea h2.topSun_ttl::after {
    content: none;
}
.topSun_list .txtarea p.topSun_text {
    font-size: var(--rem24);
	line-height: 2;
	text-align: left;
    flex-grow: 1;
}
@media print, screen and (max-width: 768px) {
    .topSun_list > li {
        padding: var(--px100) var(--px40);
    }
}


.post h2.roop_ttl,  h2.roop_ttl {
    font-size: var(--rem60);
    font-weight: 800;
    text-align: center;
    margin: 0 auto var(--px80);
    line-height: 1.45;
    width: 90%;
}
.post h2.roop_ttl::after,  h2.roop_ttl::after {
    content: none;
}
@media print, screen and (max-width: 768px) {
    .post h2.roop_ttl,  h2.roop_ttl {
        font-size: var(--rem48);
        margin: 0 auto var(--px60);
        width: 90%;
    }
}

.news_inner {
    position: relative;
    margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}
.news_inner::before {
    content: "";
    background: url(/wp-content/uploads/bg_topPara02.png) no-repeat center / cover;
    background-attachment: fixed;
    width: 100%;
    height: 78%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.news_wrap {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}
.postlist li {
    border-bottom: 1px solid #ddd;
}
#front_top_content, #front_bottom_content {
    display: none;
}
.postlist .time {
    background: var(--color-secondary-tint);
}
.postlist .post_text {
    padding: 16px 0;
}


/*------------------------------------------------------
会社概要
------------------------------------------------------*/
img.company_logo {
    text-align: center;
    margin: 0 auto;
    display: block;
}
.post #company table.responsive {
    margin: var(--px120) auto 0;
}
.post #company table th {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid #fff;
}
.post #company table th,
.post #company table td {
    padding: var(--px20);
}


/*------------------------------------------------------
相談支援事業所SUN-MOON
------------------------------------------------------*/
.work_list.col2_list li {
    background: var(--color-secondary-tint);
    padding: var(--px100) var(--px80);
}
.post h3.work_ttl, h3.work_ttl {
    color: var(--color-primary);
    font-size: var(--rem30);
    font-weight: 700;
    margin-bottom: var(--px30);
    padding: 0;
    border: none;
}
.post p.work_text, p.work_text {
    color: #fff;
    font-size: var(--rem18);
    line-height: 1.85;
}

.support {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: var(--px50);
}
.support .support_inner {
    background: var(--color-background02);
    padding: var(--px80);
    text-align: center;
}
.support .support_wrap {
    max-width: 800px;
    margin: 0 auto;
}
.support .support_inner h3.support_ttl {
    font-size: var(--rem30);
    font-weight: 740;
    text-align: center;
    margin: 0 auto var(--px40);
    padding: 0;
    border: none;
}
.post ul.support_tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--px20);
    margin: var(--px40) 0;
}
.post ul.support_tag li {
    font-size: var(--rem18);
    font-weight: 600;
    background: var(--color-primary);
    text-align: center;
    color: var(--color-font);
    padding: 2px 12px;
}
.post p.support_text {
    text-align: left;
    font-size: var(--rem18);
    line-height: 1.85;
    margin-bottom: var(--px24);
}
.post p.support_text em {
    font-weight: 700;
    color: var(--color-primary-tint);
    text-decoration: underline;
    font-style: normal;
}
.post ol.support_num li {
    font-size: var(--rem18);
    line-height: 1.75;
    margin-bottom: .7em;
    text-align: left;
}


/*------------------------------------------------------
就労継続支援B型SUN-MOON新川
------------------------------------------------------*/
.post p.moonb_text, p.moonb_text {
    font-size: var(--rem18);
    text-align: center;
    margin: 0 auto;
    line-height: 2;
}
.job_inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    gap: 24px 0;
}
.job_inner.col2_list li {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: var(--px16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
.post h3.job_ttl, h3.job_ttl {
    font-size: var(--rem24);
    font-weight: 700;
    margin-bottom: var(--px12);
    line-height: 1.35;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
}
.post h3.job_ttl::before, h3.job_ttl::before {
    content: "●";
    color: var(--color-primary);
    font-size: var(--rem20);
    display: inline-block;
    margin-right: 8px;
}
.post p.job_text, p.job_text {
    font-size: var(--rem16);
}
@media print, screen and (max-width: 768px) {
	.post .job_inner.col2_list > li {
        margin-bottom: 0;
    }
}

.post ul.fee_tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-self: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--px40);
}
.post ul.fee_tag li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    gap: 12px;
    color: var(--color-font);
    font-size: var(--rem16);
    font-weight: 600;
    line-height: 1.35;
}
.post ul.fee_tag li span {
    background: var(--color-secondary-tint);
    color: #fff;
    font-size: var(--rem14);
    padding: 8px 12px;
}
.fee_inner {
    background: var(--color-secondary-shade);
    margin: var(--px30) auto 0;
    padding: var(--px80);
}
.post .fee_inner h3.fee_ttl {
    text-align: center;
    margin: 0 auto var(--px20);
    padding: 0;
    border: none;
}
.post .fee_inner h3.fee_ttl span.fee_note {
    display: block;
    font-size: var(--rem14);
}
.post .fee_inner p.fee_text {
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
    font-size: var(--rem16);
}
ul.fee_list.col4_list {
    margin: var(--px40) auto 0;
}
.post img.fee_img,
.post img.feature_img {
    text-align: center;
    margin: 0 auto var(--px30);
}
.post h4.item, h4.item {
    position: relative;
    font-size: var(--rem24);
    font-weight: 800;
    text-align: center;
    padding: 0;
    margin: 0 auto;
}
.post h4.item:before, h4.item:before {
    content: none;
}
.post p.detail, p.detail {
    font-size: var(--rem20);
    font-weight: 600;
    text-align: center;
    line-height: 1.45;
    margin-top: 5px;
}
.post p.feature_detail, p.feature_detail {
    font-size: var(--rem14);
    text-align: center;
    line-height: 1.65;
    margin-top: var(--px12);
}
.post .col4_list.feature_list > li {
    width: 20%;
}
@media print, screen and (max-width: 1240px) {
    .post .col4_list.feature_list > li {
        width: 30%;
    }
}
@media print, screen and (max-width: 768px) {
    ul.fee_list.col4_list,
    ul.feature_list.col4_list {
        flex-direction: column;
        gap: var(--px40);
    }
    .post .col4_list.feature_list > li {
        width: 100%;
    }
    .post img.fee_img {
        width: 70%;
    }
    .post img.feature_img {
        width: 60%;
    }
    .post ul.fee_tag {
        justify-content: flex-start;
    }
}


.post table.table_style {
    border: none;
    border-collapse: separate; /* セルの境界を分離 */
    border-spacing: 10px;
}
.post table.table_style tr {
    padding-bottom: var(--px12);
}
.post table.table_style th, .post table.table_style td {
    border: none;
    padding: var(--px30);
    font-size: var(--rem24);
}
.post table.table_style th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.post table.table_style td {
    background: var(--color-background02);
    color: var(--color-font);
}

.post table.table_style th.none {
    background: #fff;
}
.post table.table_style td.clock {
    background: #fff;
    color: var(--color-font);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 12px;
}
.post table.table_style td.clock::before {
    content: "\f017";
    display: block;
    font-size: var(--rem40);
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
}

.page_contents_inner.map {
    background: var(--color-background02);
    padding: var(--px120) 0;
}
.map_inner {
    align-items: center;
    gap: var(--px50);
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
}
.map_inner p.map_text {
    font-size: var(--rem16);
    margin-bottom: var(--px50);
}
.map_inner dl.map_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.map_inner dl.map_list dt {
    background: var(--color-primary);
    color: var(--color-font);
    padding: 7px 10px;
    font-weight: 700;
    width: 20%;
    text-align: center;
}
.map_inner dl.map_list dd {
    font-size: var(--rem16);
    line-height: 1.45;
    width: 75%;
}
.map_inner iframe {
    width: 100%;
}
@media print, screen and (max-width: 768px) {
    .post table.table_style th.none {
        display: none;
    }
}


/*------------------------------------------------------
お申込みの流れ
------------------------------------------------------*/

.post ul.flowlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: var(--px60);
    margin-bottom: var(--px100);
}
.post h3.flow_ttl, h3.flow_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--color-secondary-shade);
    margin: 0 0 var(--px30);
    padding: 0;
    border: none;
}
.post h3.flow_ttl span.num, h3.flow_ttl span.num {
    background: var(--color-secondary-tint);
    color: var(--color-primary);
    font-size: var(--rem36);
    font-family: var(--font-family02);
    text-align: center;
    display: block;
    line-height: 1.15;
    padding: 14px var(--px24);
}
.post h3.flow_ttl span.num span, h3.flow_ttl span.num span {
    display: block;
    font-size: var(--rem14);
}
.post h3.flow_ttl span.jp, h3.flow_ttl span.jp {
    background: var(--color-secondary-shade);
    color: var(--color-font);
    padding-left: var(--px20);
}
.flow_inner {
    align-items: center;
    gap: var(--px50);
}
.post .flow_inner p.flow_text {
    font-size: var(--rem20);
    line-height: 2.2;
}



.qa_list {
	cursor: pointer;
}
.qa_list .qa_list_inner dt {
	position: relative;
	font-weight: normal;
    font-size: var(--rem30);
    text-align: center;
    margin: 0 auto 20px;
    padding: var(--px24);
    font-weight: 700;
    background: var(--color-primary);
    border: 1px solid var(--color-font);
}

.qa_list .qa_list_inner dt:after {
    content: '';
    position: absolute;
    top: 46%;
    right: 3rem;
    width: 12px;
    height: 12px;
    border-right: 1px solid var(--color-font);
    border-bottom: 1px solid var(--color-font);
    -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;
	border-top: 0;
}
@media only screen and (max-width: 959px) {
	.qa_list .qa_list_inner {
		margin-bottom: var(--px50);
	}
}
@media only screen and (max-width: 768px) {
	.qa_list .qa_list_inner dt:after {
		right: 1.5rem;
		width: 6px;
		height: 6px;
	}
	.qa_list .qa_list_inner .active:after {
		right: 1.0rem;
	}
}


#foot-contact_pt05 {
	clear: both;
	position: relative;
	background: url(/wp-content/uploads/bg01.jpg) no-repeat center / cover;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
body.home #foot-contact_pt05.bottom_foot {
    display: none;
}
.wrapper_content {
    max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
}

#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%;
	font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
	font-weight: 500;
	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);
	transition: .3s;
}
#foot-contact_pt05 a.f-contact_btn.telBtn01 {
	color: #FFF;
	background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}
#foot-contact_pt05 a.f-contact_btn.telBtn02 {
	color: var(--color-font);
	background: var(--color-secondary-shade);
    border: 1px solid var(--color-secondary-shade);
}
#foot-contact_pt05 a.f-contact_btn.telBtn02 {
	color: var(--color-font);
	background: var(--color-secondary-shade);
    border: 1px solid var(--color-secondary-shade);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn {
	color: #FFF;
	background: var(--color-secondary-tint);
    border: 1px solid var(--color-secondary-tint);
}
#foot-contact_pt05 a.f-contact_btn:hover {
	background: var(--color-primary-tint);
	color: #FFF;
}


#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-weight: 800;
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.4531), 3.2rem);
}
#foot-contact_pt05 a.f-contact_btn.mailBtn .ico {
    background: #fff;
    border-radius: 50vh;
    color: var(--color-font);
    font-weight: 700;
    padding: 10px 20px;
    margin: 6px auto;
    width: 86%;
}
#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: 1.4rem;
	font-weight: 700;
}
#foot-contact_pt05 a.f-contact_btn .note span {
	font-size: 1.0rem;
    display: block;
}

#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: 0;
	max-width: var(--content-max-width);
	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% / 3);
	}
    #foot-contact_pt05.colum_2 ul.contactbtn_list > li {
		width: calc(100% / 2);
	}
}
@media print, screen and (max-width: 768px) {
    #foot-contact_pt05 ul.contactbtn_list > li {
        height: 150px;
    }
}
/*FireFox対応*/
@-moz-document url-prefix() {
	@media print, screen and (min-width: 769px) {
		#foot-contact_pt05 ul.contactbtn_list > li {
            width: calc(100% / 3);
		}
        #foot-contact_pt05.colum_2 ul.contactbtn_list > li {
            width: calc(100% / 2);
        }
	}
}
/*プリローダーとの干渉対応*/
#mainImg {
    display: none;
}
body:not(.home) .placeholder-class {
    display: none !important;
}

/*-----SNS-------*/
.footer__logo {
	display: flex !important;
	@media screen and (max-width: 768px) {
		justify-content: center;
	}

	ul {

		margin: 0 !important;
		display: flex !important;
        align-items: center !important;

		li {

			display: flex !important;
			align-items: center !important;

			a {

				font-size: 30px !important;
				padding-left: 16px !important;
			}
		}
	}
}

article.category-news .post >*  {
     margin-bottom: .5em;
}