@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=Oswald:wght@200..700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
    --color-font: #333;
    --color-primary: #015A23;
    --color-primary-shade: #058636;
    --color-primary-tint: #F08300;
    --color-secondary: #E80E0E;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: clamp(14px, .94vw, 18px);
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #fff;
    --header-color-font: #333333;
    --header-color-primary: #058636;
    --header-color-primary-shade: #111;
    --header-color-primary-tint: #F08300;
	/*------▼フッター設定▼------*/
	--footer-background: #015A23;
    --footer-color-font: #FFF;
    --footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', sans-serif;
    --font-family03: 'Zen Old Mincho', serif;
	/*------▼フォントサイズ設定▼------*/
    --font-size12: clamp(10px, .8vw, 12px);
    --font-size14: clamp(12px, .8vw, 14px);
    --font-size16: clamp(14px, .94vw, 16px);
	--font-size18: clamp(14px, 1.1vw, 18px);
    --font-size20: clamp(18px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.4vw, 22px);
    --font-size26: clamp(20px, 1.6vw, 26px);
    --font-size28: clamp(22px, 1.6vw, 28px);
    --font-size32: clamp(24px, 1.7vw, 32px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size42: clamp(30px, 2.2vw, 42px);
    --font-size50: clamp(26px, 2.61vw, 50px);
    --font-size60: clamp(30px, 3.125vw, 60px);
	/*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-50: clamp(25px, 2.61vw, 50px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-70: clamp(35px, 3.65vw, 70px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-90: clamp(45px, 4.69vw, 90px); 
    --clamp-100: clamp(50px, 5.42vw, 100px);
    --clamp-110: clamp(55px, 5.73vw, 110px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-130: clamp(65px, 6.78vw, 130px);
    --clamp-140: clamp(70px, 7.3vw, 140px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
::selection {
    background-color: var(--color-primary-tint);
}
/* == == == == == == == == == == == == == == == == == == 
 * 非表示
 * == == == == == == == == == == == == == == == == == == */
 .post h2, .post h3, .post h4 {
	padding: 0;
	margin: 0; 
	border: none;
}
.post h2::before, .post h3::before, .post h4::before, .post h2::after{
	content: none;
}
/* == == == == == == == == == == == == == == == == == == 
 * ヘッダー調整/header
 * == == == == == == == == == == == == == == == == == == */
@media print, screen and (min-width: 1024px) {
/* == == == == == == == ==
 * ヘッダー下部
 * == == == == == == == == */
    #header {
        height: 100px;
    }
/* == == == == == == == ==
 * スティッキーヘッダー
 * == == == == == == == == */
    .sticky-header #header-layout {
        height: 100px;
    }
/* == == == == == == == ==
 * ヘッダー下部__グローバルナビ
 * == == == == == == == == */
	nav#mainNav ul li a b {
		font-weight: bold;
		font-size: var(--font-size18);
		font-family: var(--font-family01);
		color: var(--header-color-font);
	}
	nav#mainNav ul li a span {
		font-weight: 500;
		font-size: var(--font-size12);
		font-family: var(--font-family02);
		color: var(--header-color-primary);
	}
	nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover, nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-parent a, nav#mainNav ul li.current-menu-ancestor a {
		background: transparent;/* アクション時の背景色の設定 */
	}
	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(--header-color-primary-tint);/* アクション時の文字色（上部）の設定 */
	}
	nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li a:hover span, nav#mainNav ul li a:active span, nav#mainNav ul li.current-menu-parent a span {
		color: var(--header-color-primary-tint);/* アクション時の文字色（下部）の設定 */
	}
/* == == == == == == == ==
 * ヘッダー下部__コンタクトボタン
 * == == == == == == == == */
    #header a.head_btn {
        font-size: var(--font-size18);
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) min(calc(30px + (1vw - 19.2px) * 0.5580), 30px);
    }
	#header a.head_btn.tel_btn {
		color: var(--header-color-font);
	}
	#header a.head_btn.tel_btn:hover {
		color: #FFF;
	}
	#header a.head_btn.tel_btn::before {
		content: '\f3cf';
	}
}
/* == == == == == == == ==
 * スマホ
 * == == == == == == == == */
@media print, screen and (max-width: 1023px) {

}
/* == == == == == == == == == == == == == == == == == == 
 * トップ記事投稿（archive） 
 * == == == == == == == == == == == == == == == == == == */
#front_top_content, #front_bottom_content {
	background: transparent;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2)* -1);
    margin-right: calc(((100vw - 100%) / 2)* -1);
}
#front-sectionPost {
	width: 90%;
	max-width: var(--content-max-width);
	margin: 0 auto;
}
/* == == == == == == == == == == == == == == == == == == 
 *  リスト表示
 * == == == == == == == == == == == == == == == == == == */
 /* == == == == == == == == == == == == == == == == == == 
 *  フッター調整/footer 
 * == == == == == == == == == == == == == == == == == == */
#footer {
    padding: 0;
	background: #FFF;
}
.footer-content {
    padding: var(--clamp-40) 0;
	position: relative;
}
.footer-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 76%;
    background: linear-gradient(-45deg, var(--color-primary), var(--color-primary-shade));
    top: 0;
    left: 0;
}
#footer .inner {
    max-width: 100%;
    width: 100%;
    padding: 15px 0 0;
}
#footer ul li a, #footer ul li a:hover {
	color: var(--color-font);
}

#footer a {
	transition: .5s;
}
#copyright {
    margin: 0;
    padding-bottom: 10px;
	padding-top: 10px;
}
#footer .footer__logo img {
    max-height: 125px;
}
#footer p, #footer h2 {
    color: #FFF;
    text-align: center;
}
#footer .btn-content {
    display: flex;
    justify-content: space-between;
}

#footer a.ft-btn {
    width: calc(50% - 22px);
    color: #FFF;
    outline: 1px solid;
    background: var(--color-primary-shade);
    font-size: var(--font-size22);
    font-weight: bold;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
    text-decoration: none;
}

#footer a.mail::before {
    content: '\f0e0';
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: .5em;
}
#footer a::after {
	display: none;
}
#footer a.ft-btn.tel {
    background: #FFF;
    color: var(--color-primary-shade);
    font-family: var(--font-family02);
    font-size: var(--font-size42);
}
#footer a.ft-btn.tel span {
    font-size: var(--font-size20);
    margin-right: .5em;
}
/* #footer a.ft-btn.tel:hover {

} */
#footer a.ft-btn:hover {
    transform: translateY(-2px);
	box-shadow: 0 4px 6px #00000020;
    color: #FFF;
    background: var(--color-primary-tint);
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
	#footer .btn-content {
		flex-direction: column;
		gap: 20px;
	}
	#footer a.ft-btn {
		width: 100%;
		height: 80px;
	}
	.footer-content::before {
		height: 100%;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * アイキャッチ/eyecatch
 * == == == == == == == == == == == == == == == == == == */
header#h1Header h1.title {
    font-size: calc(var(--font-size42) + 3px);
}
header#h1Header h1.title span.ja {
	display: none;
}
header#h1Header h1.title span.en {
	font-style: normal;
	font-weight: bold;
}
#thumbImg::before, header#h1Header::before {
    opacity: .6;
	background: #1E914B;
}
/* == == == == == == == == == == == == == == == == == == 
 * パンくず
 * == == == == == == == == == == == == == == == == == == */
#breadcrumb .en {
    display: none;
}
/* == == == == == == == == == == == == == == == == == == 
 * postlist
 * == == == == == == == == == == == == == == == == == == */
.post4b li {
    background: #FFF;
    text-align: left;
}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	display: block;
}
.post2b li .post2b_contents, .post4b li .post4b_contents {
    font-size: var(--font-size14);
}
.post4b_text70 {
    padding: 3% 3% 0;
}
.postlist li:first-child {
    border-top: 0;
}
.postlist li {
    border-bottom: 1px dotted #CCCCCC;
}
.postlist .time {
    font-size: var(--font-size16);
    background: var(--color-primary-tint);
    border-radius: 5px;
    padding: .5em 1em;
}

.postlist .ttls, .postlist .date {
    font-size: var(--font-size18);
}
/* == == == == == == == == == == == == == == == == == == 
 * inner/outer
 * == == == == == == == == == == == == == == == == == == */
.max_wFull {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
.max_w800 {
    max-width: 800px;
}
.content_inner {
	position: relative;
	z-index: 0;
}
/* body:not(.home) #content.wide {
    padding-bottom: var(--clamp-100);
} */
 /* == == == == == == == == == == == == == == == == == == 
 *  テキスト調整/text 
 *  == == == == == == == == == == == == == == == == == == */
.post p, .post h3, .post h4, .post h5, h1.title {
	color: var(--color-font);
}
.post h2 {
    color: var(--color-primary-shade);
}
.post p, #footer p  {
    font-size: var(--font-size18);
    line-height: 2;
    margin-bottom: 1em;
	font-weight: 500;
	letter-spacing: .5px;
}
.post h2, #footer h2 {
    font-size: var(--font-size28);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h3,  #footer h3 {
    font-size: var(--font-size26);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h4,  #footer h4 {
    font-size: var(--font-size20);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h5,  #footer h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
h2.under-line::after {
    content: '';
    background: var(--color-primary-shade);
    height: 2px;
}
p.lead {
    font-size: var(--font-size26);
    line-height: 1.5;
}
p.name {
    font-family: var(--font-family03);
    text-align: right;
    font-size: var(--font-size28);
}
p.name span {
    font-size: var(--font-size18);
    font-family: var(--font-family01);
    margin-right: 1.5em;
}
span.bold {
	font-weight: bold;
}
span.ja {
	font-family: var(--font-family01);
}
span.en {
	font-family: var(--font-family02);
}
span.color {
    color: var(--color-primary-shade);
}
span.px12 {font-size: var(--font-size12);}
span.px14 {font-size: var(--font-size14);}
span.px16 {font-size: var(--font-size16);}
span.px18 {font-size: var(--font-size18);}
span.px20 {font-size: var(--font-size20);}
span.px22 {font-size: var(--font-size22);}
span.px26 {font-size: var(--font-size26);}
span.px28 {font-size: var(--font-size28);}
span.px32 {font-size: var(--font-size32);}
span.px38 {font-size: var(--font-size38);}
span.px42 {font-size: var(--font-size42);}
span.px50 {font-size: var(--font-size50);}
span.px60 {font-size: var(--font-size60);}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
 /* == == == == == == == == == == == == == == == == == == 
 *  レイアウト/あしらい調整
 *  == == == == == == == == == == == == == == == == == == */
.shadow {box-shadow: 0 4px 4px #00000026;}
.content-item+.content-item {padding-top: var(--clamp-80);}
.img-area img {width: 100%;}
 /* == == == == == == == == == == == == == == == == == == 
 *  grid
 *  == == == == == == == == == == == == == == == == == == */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}
.grid-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
	border: 1px solid #DCDDDD;
	border-radius: 5px;
	background: #FFF;
}
.grid-item img {
    width: 100%;
}
.gCol-3 {
	grid-template-columns: repeat(3, 1fr)!important;
}
.gCol-2 {
	grid-template-columns: repeat(2, 1fr)!important;
}
@media print, screen and (max-width: 768px){
	.gCol-2, .gCol-3 {
		grid-template-columns: repeat(1, 1fr)!important;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 *  flex / card
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == ==
 * flex 
 * == == == == == == == == */
.col-2{width: calc(50% - 22px);}
.col-3{width: calc(100% / 3);}
.col-4{width: calc(100% / 4);}
.col-5{width: calc(100% / 5);}
.w25 {width: 25%;}
.w35 {width: 35%;}
.w45 {width: 45%;}
.w65 {width: 65%;}
.w75 {width: 75%;}
.jc_between {justify-content: space-between;}
.jc_around {justify-content: space-around;}
.jc_evenly {justify-content: space-evenly;}
.ai_center {align-items: center;}
.txt-inner {
    max-width: 528px;
	width: 94%;
}
@media print, screen and (min-width: 769px) {
	.ml-auto {margin-left: auto;}
	.mr-auto {margin-right: auto;}
}
@media print, screen and (max-width: 768px) {
    .col-2, .col-3, .col-4, .col-5 {
        width: 100%;
        margin-bottom: 20px;
    } 
    .w25, .w35, .w45, .w55, .w65, .w75 {
        width: 100%;
		margin-bottom: 20px;
    }
	.flex_1 {
		margin-bottom: 40px;
	}
	.txt-inner {
		margin: 0 auto;
        max-width: 100%;
	}
}
/* == == == == == == == ==
 * card
 * == == == == == == == == */
.card {
    display: flex;
    flex-direction: row;
}
.wrap {
    flex-wrap: wrap;
}
.nowrap {
    flex-wrap: nowrap;
}
.card:has(.col-2) {gap: 44.5px;}
.card:has(.col-3) {gap: 20px;}
.card:has(.col-4) {gap: 11.2px;}
.card:has(.col-5) {gap: 10.5px;}
.card .col-2 {width: calc(50% - 24px);}
.card .col-3 {
	width: calc((100% / 3) - 15px);
    background: #FFF;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #DCDDDD;
}
.card .txt-area {
    padding: 7% 5%;
}
.card h3 {
    font-size: var(--font-size22);
    text-align: center;
}
.card p {
    font-size: var(--font-size16);
    line-height: 1.8;
	letter-spacing: 0;
}
.card .col-4 {width: calc((100% / 4) - 10px);}
.card .col-5 {width: calc((100% / 5) - 10px);}
.card p:last-child {margin: 0;}
@media print, screen and (max-width: 1023px) {
	.card .col-5 {width: calc((100% / 4) - 10px);}
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .card {flex-direction: column;}
    .card .col-2, .card .col-3, .card .col-4, .col-2, .col-3, .col-4 {
        width: 100%;
        gap: 15px;
        margin-bottom: 20px;
    }
	.card .col-5, .col-5 {
	    width: calc((100% / 2) - 5px);
        gap: 15px 10px;
		margin-bottom: 20px;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * テーブル、マップ調整/table,map
 * == == == == == == == == == == == == == == == == == == */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    padding: 1em;
    vertical-align: middle;
    font-size: var(--body-font-size);
	background: transparent;
	font-weight: 500;
	border-bottom: 1px solid #DCDDDD;
}
.page-content table th {
	border-bottom: 2px solid var(--color-primary-shade);
	font-weight: bold;
	color: var(--color-primary-shade);
}
.page-content table td {
	border-bottom: 2px solid #CCC;
	font-weight: 500;
}
.page-content table tr:first-child th {
	border-top: 2px solid var(--color-primary-shade);
}
.page-content table tr:first-child td {
	border-top: 2px solid #CCC;
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
    }
	.page-content table tr:first-child th, .page-content table tr:first-child td {
		border-top: 0;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * ボタン調整/btn
 * == == == == == == == == == == == == == == == == == == */
.btn-content {
    margin-top: var(--clamp-40);
}
.linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: inline-block;
    transition: .5s;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size20);
    font-family: var(--font-family02);
    font-weight: 500;
    line-height: 1.5;
    padding: 1em 2em;
    width: 90%;
    max-width: 320px;
    text-align: center;
    border-radius: 0;
}
.linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-2px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	color:var(--color-primary);
	outline: 1px solid;
}
a.linkBtn::before, .post .linkBtn::before, a.linkBtn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    bottom: -5px;
    left: 5px;
    transition: .2s ease;
    transform-origin: right;
}
a.linkBtn:hover::before, .post .linkBtn:hover::before, a.linkBtn:hover::before {
    transform: rotateY(90deg);
}
.linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--color-primary);
    top: 5px;
    right: -5px;
    transition: .2s ease;
    transform-origin: bottom;
	border-right: 0;
	border-bottom: 0;
	margin-top: 0;
    transform: rotate(0);
}
.linkBtn:hover::after, .post .linkBtn:hover::after, a.linkBtn:hover::after {
    transform: rotateX(90deg);
}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == == == == == == == == == == == == 
 * トップ、下層調整/ .top-content, .page-content
 * == == == == == == == == == == == == == == == == == == */
#mainImg {
    background: #F8F8F8;
}
.top-content, .page-content {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.top-content::before, .page-content::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
.top-content {
    padding: var(--clamp-80) 0;
}
.top-content h2 {
    color: var(--color-primary);
}

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .top-content__about-us
 * == == == == == == == == */
.top-content__about-us {
    text-align: center;
    background-color: #F8F8F8;
}
.top-content__about-us::before {
    content: '';
    height: 80%;
    background-image: url(/wp-content/uploads/top_about-us_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.top-content__about-us p.lead {
    font-size: var(--font-size32);
    font-weight: bold;
    font-family: var(--font-family03);
}
.top-content__about-us p {
    line-height: 2.5;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == ==
 * .top-content__features
 * == == == == == == == == */
.top-content__features {
    background-color: #F1F1F1;
}
 @media print, screen and (min-width: 769px) {}
 @media print, screen and (max-width: 768px) {
 }
/* == == == == == == == ==
 * .top-content__service
 * == == == == == == == == */
.top-content__service {
    text-align: left;
    background-image: url(/wp-content/uploads/top_service_bg.jpg);
    background-size: cover;
    background-position: center;
}
.top-content__service h2 {
    text-align: left;
}
.top-content__service .flexbox {
    align-items: center;
}
ul.service-list {
    counter-reset: number 0;
}
ul.service-list {
    margin: 4rem auto 0;
    max-width: 700px;
}
ul.service-list li {
    background: #FFF;
    transition: .3s;
    margin-bottom: var(--clamp-20);
}
ul.service-list a {
    transition: .5s ease;
    display: block;
    padding: 4% 5%;
    position: relative;
    color: var(--color-primary);
    font-size: var(--font-size28);
}
ul.service-list a:hover {
    transform: translateY(-2px);
	box-shadow: 0 4px 6px #00000020;
	background: var(--color-primary);
	color: #FFF;
}
ul.service-list a::after {
    content: '→';
    position: absolute;
    font-size: .928em;
    font-weight: bold;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
}
ul.service-list li span {
    padding-right: 2em;
    position: relative;
    font-weight: bold;
    display: block;
}
ul.service-list li span:last-child {
    margin-bottom: 0;
}
ul.service-list li span::before {
    content: '0' counter(number);
    counter-increment: number 1;
    font-family: var(--font-family02);
    margin-right: 1em;
}


@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == ==
 * .top-content__recruit
 * == == == == == == == == */
.top-content__recruit h2 {
    text-align: left;
 }
.top-content__recruit p {
    color: #FFF;
}
.top-content__recruit p.lead {
    font-weight: bold;
	font-size: var(--font-size28);
}
.top-content__recruit .img-area {
    margin-top: var(--clamp-60);
}
.top-content__recruit .txt-area {
    text-align: center;
    background: #058636D9;
    padding: min(5%, 25px);
    margin-top: calc(var(--clamp-150) * -1);
}


@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.top-content__recruit img {
		min-height: 200px;
		object-fit: cover;
		object-position: center;
	}
}
/* == == == == == == == ==
 * .top-content__information
 * == == == == == == == == */
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .page-content
 * == == == == == == == == */
body:has(.page-content) #content.wide {
	padding-top: var(--clamp-80);
	padding-bottom: var(--clamp-80);
}
.page-content + .page-content {
    padding-top: var(--clamp-80);
}
/* == == == == == == == ==
 * .page-content__service
 * == == == == == == == == */
.service-content {
    padding-top: var(--clamp-120);
    margin-top: calc(var(--clamp-40) * -1);
}
.service-content:first-child {
    padding-top: var(--clamp-120);
    margin-top: calc(var(--clamp-120) * -1);
}
.service-content .flexbox {
    align-items: flex-start;
}
.service-content .img-area {
    background: linear-gradient(90deg, transparent 8%, #F8F8F8 8%);
    padding: max(2%, 15px) 0;
}
.service-content .txt-area {
    padding-top: 2%;
}
.service-content .rev .img-area {
    background: linear-gradient(90deg, #F8F8F8 92%, transparent 92%);
}
.service-content .inner {
    max-width: 522px;
    width: 94%;
}
.service-content h2 {
	text-align: left;
    border-bottom: 2px solid #D5D5D5;
    padding-bottom: .2em;
    margin-bottom: .5em;
}
.service-content h2::before {
    content: '';
    position: absolute;
    width: 2.2em;
    height: 2px;
    background: var(--color-primary-shade);
    bottom: -2px;
    left: 0;
}
.service-content p.lead {
    margin-bottom: .5em;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.service-content .inner {
		margin: 0 auto;
	}
}

 /* == == == == == == == ==
 * .page-content__recruit
 * == == == == == == == == */
.page-content__message {
    background-image: url(/wp-content/uploads/message_bg.jpg);
    background-size: cover;
    background-position: center;
    padding: var(--clamp-70) 0;
    margin-top: calc(var(--clamp-80) * -1);
}
.page-content__message::before {
    content: '';
    top: 0;
    left: 0;
    background: #000000;
    opacity: .23;
    z-index: 0;
}
.page-content__message .content_inner {
    background: #FFFFFFCC;
    padding: min(5%, 55px);
    text-align: center;
}
.page-content__job-info h2 {
	text-align: left;
}
 @media print, screen and (min-width: 769px) {}
 @media print, screen and (max-width: 768px) {}

/* == == == == == == == ==
 * .page-content__company
 * == == == == == == == == */
.page-content__greeting p {
    font-family: var(--font-family03);
}
.page-content__company h2 {
	text-align: left;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}

/* == == == == == == == == == == == == == == == == == == 
 * サイトマップ
 * == == == == == == == == == == == == == == == == == == */
#sitemap_list .en {
    display: none;
}
/* == == == == == == == == == == == == == == == == == == 
 * コンタクトフォーム
 * == == == == == == == == == == == == == == == == == == */
.wpcf7-form .must {
    border-radius: 5px;
}
.wpcf7-form .linkBtn {
    padding: 0;
}
.wpcf7-form .linkBtn:hover {
    background: var(--color-primary-tint);
    color: #FFF;
}
.wpcf7-form .linkBtn:hover input[type="submit"] {
    color: #FFF;
}
.post .subimitarea .linkBtn input[type="submit"] {
    padding: 1em 2em;
}

/* == == == == == == == == == == == == == == == == == == 
 * その他の調整 / other
 * == == == == == == == == == == == == == == == == == == */

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {

}

