@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&family=Oswald:wght@200..700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFFFFF;
    --color-font: #333;
    --color-primary: #00469C;
    --color-primary-shade: #F8F8F8;
    --color-primary-tint: #06B5EC;
    --color-grad: linear-gradient(-45deg, #00469CE6, #06B5ECE6);
    --color-secondary: #F73737;
    --color-secondary-tint: #DDD;
    --color-table-border: #C7C7C7;
	--body-font-size: clamp(14px, .94vw, 16px);
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #00469C;
    --header-color-font: #FFFFFF;
    --header-color-primary: #00469C;
    --header-color-primary-shade: #F8F8F8;
    --header-color-primary-tint: #06B5EC;
	/*------▼フッター設定▼------*/
	--footer-background: #00469C;
    --footer-color-font: #FFF;
    --footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', serif;
    --font-family03: 'Shippori Mincho', serif;
    --font-style01: normal;
    --font-style02: italic;
	/*------▼フォントサイズ設定▼------*/
    /* ---- ベース ---- */
    --font-size12: clamp(10px, .63vw, 12px);
    --font-size14: clamp(12px, .73vw, 14px);
    --font-size16: clamp(14px, .84vw, 16px);
	--font-size18: clamp(14px, .94vw, 18px);
    --font-size20: clamp(18px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.15vw, 22px);
    --font-size24: clamp(18px, 1.25vw, 24px);
    --font-size26: clamp(20px, 1.36vw, 26px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size30: clamp(22px, 1.7vw, 30px);
    --font-size32: clamp(22px, 1.7vw, 32px);
    --font-size34: clamp(24px, 1.85vw, 34px);
    --font-size36: clamp(24px, 1.85vw, 36px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size40: clamp(26px, 2.1vw, 40px);
    --font-size42: clamp(26px, 2.3vw, 42px);
	--font-size46: clamp(26px, 2.4vw, 46px);
    --font-size50: clamp(26px, 2.61vw, 50px);
    --font-size52: clamp(26px, 2.71vw, 52px);
    --font-size60: clamp(30px, 3.13vw, 60px);
    /* ---- 追加 ---- */
    --font-size80: clamp(36px, 4.17vw, 80px);
	/*------▼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);
    color: #FFF;
}
/* == == == == == == == == == == == == == == == == == == 
 * 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_w600 {
    width: 600px;
}
.content_inner {
	position: relative;
	z-index: 0; 
}
 /* == == == == == == == == == == == == == == == == == == 
 *  テキスト/text 
 *  == == == == == == == == == == == == == == == == == == */
.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;
}
/* ==== post ~ ===== */
.post p, .post h1, .post h2, .post h3, .post h4, .post h5, h1.title {
	color: var(--color-font);
}
.post p {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1.5em;
	font-weight: 500;
    letter-spacing: .5px;
}
.post h2 {
    font-size: var(--font-size32);
    line-height: 1.2;
    margin-bottom: .5em;
	font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: .3em;
    color: var(--color-primary);
}
.post h3 {
    font-size: var(--font-size24);
    line-height: 1.5;
    margin-bottom: .7em;
    padding-bottom: .3em;
	font-weight: bold;
}
.post h4 {
    font-size: var(--font-size20);
    line-height: 1.5;
    margin-bottom: .5em;
	font-weight: bold;
}
.post h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: .5em;
	font-weight: bold;
}

.post p.lead, p.lead {
    font-size: var(--font-size32);
    font-family: var(--font-family01);
    font-weight: bold!important;
    line-height: 1.75;
    margin-bottom: 1em;
}
.post p.name, p.name {
    font-size: var(--font-size22);
    font-weight: bold; 
    font-family: var(--font-family03);
    text-align: right;
}
.post p.name span, p.name span {
    font-size: var(--font-size16);
    font-family: var(--font-family01);
    font-weight: 500;
    margin-right: .8em;
}
/* ==== text / ユーティリティ ===== */
.mid {font-weight: 500!important;}
.bold {font-weight: bold!important;}
.ja {font-family: var(--font-family01);}
.en {font-family: var(--font-family02);}
.color-font {color: var(--color-font);}
.color-primary {color: var(--color-primary);}
.color-tint {color: var(--color-primary-tint);}
.color-shade {color: var(--color-primary-shade);}
.color-white {color: #FFF;}
.px12 {font-size: var(--font-size12)!important;}
.px14 {font-size: var(--font-size14)!important;}
.px16 {font-size: var(--font-size16)!important;}
.px18 {font-size: var(--font-size18)!important;}
.px20 {font-size: var(--font-size20)!important;}
.px22 {font-size: var(--font-size22)!important;}
.px24 {font-size: var(--font-size24)!important;}
.px26 {font-size: var(--font-size26)!important;}
.px28 {font-size: var(--font-size28)!important;}
.px30 {font-size: var(--font-size30)!important;}
.px32 {font-size: var(--font-size32)!important;}
.px34 {font-size: var(--font-size34)!important;}
.px36 {font-size: var(--font-size36)!important;}
.px38 {font-size: var(--font-size38)!important;}
.px40 {font-size: var(--font-size40)!important;}
.px46 {font-size: var(--font-size46)!important;}
.px50 {font-size: var(--font-size50)!important;}
.px52 {font-size: var(--font-size52)!important;}
.px60 {font-size: var(--font-size60)!important;}
.txt-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.txt-marker {background: linear-gradient(0, #FCA10580 35%, transparent 35%);}
.txt-bg-grad {
    display: inline-block;
    background: var(--color-grad)!important;
    color: #FFF;
    padding: 0 .5em!important;
    margin-bottom: .3em;
}
/* ===== text / 追加ユーティリティ ===== */
.post h2 .en, h2 .en {
    font-weight: 400;
}
.post .top-h2-ttl .ja, .top-h2-ttl .ja {
    position: relative;
    padding-left: 1.5em; 
}
.post .top-h2-ttl .ja::before, .top-h2-ttl .ja::before {
    position: absolute;
    content: '';
    width: 1em;
    height: 1em;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--color-grad);
    border-radius: 50vw;
}
.post .page-h3-ttl, .page-h3-ttl {
    background: var(--color-grad);
    padding: .35em 1em;
    color: #FFF;
    text-align: center;
}
.post .page-h4-ttl, .page-h4-ttl {
    display: inline-block;
    background: var(--color-grad);
    padding: .3em .8em;
    border-radius: 5px;
    font-size: var(--font-size16);
    color: #FFF;
    margin-bottom: 1em;
}
.post .card-ttl, .card-ttl {
    background: var(--color-grad);
    color: #FFF;
    font-size: clamp(16px, 1.15vw, 22px);
    padding: .7em;
}
.font-fa01 {
    font-family: var(--font-family01);
}
.font-fa02 {
    font-family: var(--font-family02);
}
.font-fa03 {
    font-family: var(--font-family03);
}
.px80 {font-size: var(--font-size80)!important;}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 *  レイアウト/あしらい
 *  == == == == == == == == == == == == == == == == == == */
.gap {
    gap: 4%;
}
.box-shadow {
    box-shadow: 0 3px 20px #00000026;
}
.border {
    border: 1px solid #E5E5E5;
}
.border-bottom {
    border-bottom: 1px solid !important;
}
.border-left {
    border-left: .2em solid #808080 !important;
    padding-left: .4em !important;
}
.border-radius {
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}
.dis-block {
    display: block;
    position: relative;
}
.dis-inline-block {
    display: inline-block;
    position: relative;
}
.dis-flex {
    display: flex;
    position: relative;
}
.bg-white {background: #FFF;}
.bg-gray {background: #F7F7F7;}
.bg-primary{background: var(--color-primary);}
.bg-tint {background: var(--color-primary-tint);}
.bg-shade {background: var(--color-primary-shade);}
.content-item {
    padding-top: var(--clamp-50);
    padding-bottom: var(--clamp-50);
}
.content-radius {
    background: #FFF;
    padding: min(5%, 40px) min(3%, 20px);
    border-radius: 20px;
    box-shadow: 0 3px 20px #00000014;
}
.sticky_space {
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-150) * -1);
}
.txt-area {
    position: relative;
}
.img-area img {
    width: 100%;
}
/* ===== 追加 ===== */
.bg-circle {
    position: absolute;
    width: 15vw;
    height: auto;
    top: var(--clamp-100);
    left: 0;
}
.bg-triangle {
    position: absolute;
    width: 12vw;
    height: auto;
    right: 0;
    bottom: calc(var(--clamp-50) * -1);
}
@media print, screen and (max-width: 768px) {
	.sp_center {
		text-align: center;
	}
	.bg-circle {
		top: 0;
		min-width: 20%;
	}
	.bg-triangle {
		min-width: 30%;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * ヘッダー調整/header
 * == == == == == == == == == == == == == == == == == == */
 #header {
	position: relative;
}
@media print, screen and (min-width: 1024px) {
/* == == == == == == == ==
 * ヘッダー下部
 * == == == == == == == == */
    #header {
        height: 100px;
		background: var(--header-background);
    }
	body.home #header {
		background: transparent;
		position: absolute;
	}
	#header .logo {
		padding: 0;
	}
	#header .logo img {
		max-height: 100px;
		max-width: 350px;
	}
/* == == == == == == == ==
 * スティッキーヘッダー
 * == == == == == == == == */
    .sticky-header #header-layout {
        height: 100px;
    }
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
/* == == == == == == == ==
 * ヘッダー下部__グローバルナビ
 * == == == == == == == == */
	nav#mainNav ul li a b {
		font-family: var(--font-family01);
        font-size: var(--font-size18);
		font-weight: bold;
		letter-spacing: 1px;
		color: var(--header-color-font);
		position: relative;
		padding-bottom: 5px;
	}
    nav#mainNav ul li a span {
        font-family: var(--font-family03);
        font-size: var(--font-size14);
		font-weight: 500;
		letter-spacing: 1px;
    }
	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-font);
	}
	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-font);
	}
	nav#mainNav ul li a b::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 1px;
		background: var(--header-color-font);
		left: 0;
		bottom: 0;
		transition: .5s ease;
		transform-origin: center;
		-webkit-transform: rotateY(90deg);
		transform: rotateY(90deg);
	}
	nav#mainNav ul li.current-menu-item a b::before, 
	nav#mainNav ul li a:hover b::before, 
	nav#mainNav ul li a:active b::before, 
	nav#mainNav ul li.current-menu-parent a b::before {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
/* == == == == == == == ==
 * ヘッダー下部__コンタクトボタン
 * == == == == == == == == */
	#header ul.header__contact {
		margin: 0 var(--px30);
	}
	#header ul.header__contact li {
		display: flex;
		align-items: center;
	}
    #header a.head_btn {
        font-size: var(--font-size20);
		font-weight: bold;
		flex-direction: row;
		background: transparent;
		outline: 1px solid;
		min-width: 210px;
		height: 70px;
		border-radius: 5px;
		color: var(--header-color-font);
    }
	#header a.head_btn::before {
		margin-right: .5em;
	}
	#header a.head_btn:hover {
		background: var(--header-color-font);
		color: var(--header-color-primary);
	}
}
/* == == == == == == == ==
 * スマホ
 * == == == == == == == == */
body.mobile #header .logo .mark {
    padding: 0;
}
body.mobile #header .logo img {
    max-width: 350px;
    max-height: 60px;
}
.spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
    background: var(--header-color-font);
}
.spmenu #menu p {
    color: var(--header-color-font);
    width: 100%;
}
@media print, screen and (max-width: 1023px) {
    nav#mainNav ul li a:hover span, nav#mainNav ul li.current-menu-item a span {
        color: var(--header-color-primary);
    }
	nav#mainNav ul li a, nav#mainNav ul li a:hover, nav#mainNav ul li.current-menu-item a {
		background: var(--header-background);
		color: var(--header-color-font);
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * トップ記事投稿（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;
}
/* == == == == == == == == == == == == == == == == == == 
 *  リスト表示
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == == == == == == == == == == == == 
 * アイキャッチ/eyecatch
 * == == == == == == == == == == == == == == == == == == */
 header#h1Header h1.title {
    font-weight: bold;
    font-size: var(--font-size42);
    font-family: var(--font-family01);
}
#thumbImg::before, header#h1Header::before {
    opacity: .5;
	background: #000;
}
/* == == == == == == == == == == == == == == == == == == 
 *  フッター調整/footer 
 * == == == == == == == == == == == == == == == == == == */
 #footer {
	padding: 0;
}
#footer a {
	transition: .5s ease;
}
#footer .footer-content {
	padding: var(--clamp-50) 0;
	background: #0D4FA1;
}
#footer h2 {
	font-size: var(--font-size32);
    line-height: 1.2;
    margin-bottom: .5em;
    font-weight: bold;
    letter-spacing: 1px;
	padding-bottom: .3em;
}
#footer p {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1.5em;
	font-weight: 500;
    letter-spacing: .5px;
}
#footer .inner {
    padding-top: 10px;
}
#copyright {
    margin: 0;
    padding-bottom: 10px;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * パンくず
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == == == == == == == == == == == == 
 * postlist
 * == == == == == == == == == == == == == == == == == == */
.postlist li {
    border-bottom: 1px solid #DDD;
    max-width: 1100px;
    width: 94%;
}
 .postlist li:first-child {
    border-top: 1px solid #DDD;
}
.postlist .time {
    font-size: var(--font-size16);
    background: var(--color-grad);
    font-weight: bold;
    padding: .5em 1em;
    border-radius: 5px;
}
.postlist .time a {
    color: #FFF;
}
.postlist .ttls, .postlist .date {
    font-size: var(--font-size18);
    font-weight: 500;
}
@media print, screen and (min-width: 769px) {
	.postlist li {
	    padding: 1em 0;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 *  flex / card
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == ==
 * flex 
 * == == == == == == == == */
.col-1{ width: 100%;}
.col-2{width: calc(50% - 7px);}
.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%;}
.w55 {width: 55%;}
.w65 {width: 65%;}
.w75 {width: 75%;}
.w85 {width: 85%;}
.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: 620px;
    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-1, .col-2, .col-3, .col-4, .col-5 {
        width: 100%;
        margin-bottom: 20px;
    } 
    .w25, .w35, .w45, .w55, .w65, .w75, .w85 {
        width: 100%;
		margin-bottom: 20px;
    }
	.flex_1 {
		margin-bottom: 40px;
	}
    .txt-inner {
        max-width: 94%;
		width: 100%;
        margin: 0 auto;
    }
}
/* == == == == == == == ==
 * 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: 25px;}
.card:has(.col-4) {gap: 0;}
.card:has(.col-5) {gap: 10.5px;}
.card .col-2 {
    width: calc(50% - 24px);
    background: #FFF;
}
.card .col-3 {
	width: calc((100% / 3) - 17px);
    overflow: hidden;
}
.card .img-area {
    position: relative;
}
.card .txt-area {
    padding: 3% 15%;
}
.card .col-4 {width: calc(100% / 4);}
.card .col-5 {width: calc((100% / 5) - 10px);}
.card p:last-child {margin: 0;}
/* ==== 追加 ==== */
.card .num {
    background: linear-gradient(-45deg, transparent 50%, var(--color-primary) 50%);
    display: flex;
    flex-direction: row;
    font-family: var(--font-family02);
    font-weight: bold;
    font-style: italic;
    font-size: var(--font-size30);
    color: #FFF;
    width: calc(var(--font-size30) * 3.3);
    height: calc(var(--font-size30) * 3.3);
    line-height: 1.5;
    padding: .3em;
    position: absolute;
    top: 0;
    left: 0;
}
@media print, screen and (max-width: 1023px) {
	.card .col-5 {width: calc((100% / 4) - 10px);}
/* 	.card .col-4 {
		width: calc(100% / 2);
		margin-bottom: 20px;
	} */
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .card {flex-direction: row;}
    .card .col-2, .card .col-3 {
        width: 100%;
        margin-bottom: 0;
    }
	.card .col-4, .card .col-5 {
	    width: calc((100% / 2) - 10px);
        margin-bottom: 0;
	}
    .card .phone-img {
        margin: var(--clamp-20) auto;
    }
}
@media print, screen and (max-width: 500px) {
	.card .col-4, .card .col-5 {
	   width: 100%;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * テーブル、マップ調整/table,map
 * == == == == == == == == == == == == == == == == == == */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    padding: 1em;
    font-size: var(--body-font-size);
    font-weight: 500;
	background: transparent;
	color: var(--color-font);
    border-bottom: 1px solid #DCDDDD;
}
.post table th {
    font-weight: bold;
}
.post table td {
    font-weight: 500;
}
.page-content table th, .page-content table td {
    vertical-align: middle;
}
.page-content table th {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
        padding: 1em;
    }
}
/* ==== .page-content table ==== */
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * ボタン/btn
 * == == == == == == == == == == == == == == == == == == */
.pageBtn, a.pageBtn {
    position: relative;
    display: inline-block;
    transition: .5s ease;
    line-height: 1.5;
    text-align: left;
    padding: 1em 4.5em 1em 0;
    border-radius: 0;
    width: auto;
    color: var(--color-font);
    background: transparent;
    font-size: var(--font-size18);
    font-family: var(--font-family01);
    font-weight: 500;
}
.pageBtn::after, a.pageBtn::after {
    position: absolute;
    content: '';
    width: 2.7em;
    height: 2.7em;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: .3s ease;
    background-image: url(/wp-content/uploads/icon_btn-arrow_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: .3s ease;
}
a.pageBtn.tint {
    color: #FFF;
    background: transparent;
}
a.pageBtn.tint::after {
    background-image: url(/wp-content/uploads/icon_btn-arrow_02.png);
}
.pageBtn:hover, a.pageBtn:hover {
    transform: translateX(10px);
	opacity: .7;
}
.pageBtn:hover::after, a.pageBtn:hover::after {
    background-image: url(/wp-content/uploads/icon_btn-arrow_02.png);
}
.linkBtn, .post .linkBtn, a.linkBtn {
	transition: .5s ease;
	color: #FFF;
}
.linkBtn:hover, .post .linkBtn:hover {
    background: #FFF;
    color: var(--color-primary);
    outline: 2px solid;
    transform: translateY(-5px);
}
.linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	border-right: 1px solid;
    border-bottom: 1px solid;
}

.btn-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4%;
}
.btn-content a.linkBtn {
    margin: 0;
}
@media print, screen and (max-width: 768px) {

}
/* == == == == == == == == == == == == == == == == == == 
 *  ul ol / リスト
 *  == == == == == == == == == == == == == == == == == == */
.post .list-circle li {
    padding-left: 1.7em;
    position: relative;
    font-size: var(--font-size14);
    font-weight: 500;
    line-height: 2;
}
.post .list-circle li::before {
    content: '';
    position: absolute;
    width: .5em;
    height: .5em;
    top: .8em;
    left: .5em;
    background: var(--color-grad);
    border-radius: 50vw;
}
@media print, screen and (max-width: 768px) {
}
@media print, screen and (max-width: 499px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * トップ、下層調整/ .top-content, .page-content
 * == == == == == == == == == == == == == == == == == == */
.mv-content, .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 h2 {
    text-align: left;
}
.top-content p {
	font-size: var(--font-size18);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * TOP / section
 * == == == == == == == == == == == == == == == == == == */
/* ==== about-u ==== */
.top-content#about-us::before {
    content: '';
    position: absolute;
    width: 94%;
    max-width: 1580px;
    background: #F8F8F8;
    height: calc(100% - (10rem + var(--clamp-80)));
    bottom: 0;
    left: 0;
}
.top-content#about-us .img-area {
    padding-right: min(3%, 50px);
    padding-left: 6%;
}
.top-content#about-us .txt-inner {
    position: relative;
}
.top-content#about-us .txt-inner::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background-image: url(/wp-content/uploads/top_about-us_bg.jpg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: .05;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; 
}
@media print, screen and (min-width: 769px) {
	 .top-content#about-us .txt-area {
		 margin-top: var(--clamp-150);
	 }
}
@media print, screen and (max-width: 768px) {
	.top-content#about-us .img-area {
		padding-right: 0;
		padding-left: 6%;
		padding-top: 2%;
	}
	.top-content#about-us .img-area img {
		aspect-ratio: 2/1;
		object-fit: cover;
		object-position: center;
	}
	.top-content#about-us .txt-inner::before {
		background-position: bottom right;
	}
}
/* ==== service ==== */
.top-content#service::before {
    content: '';
    position: absolute;
    width: 94%;
    max-width: 1440px;
    background: #F8F8F8;
    height: calc(100% - (10rem + (var(--font-size80) / 2)));
    bottom: 0;
    right: 0;
}
.top-content#service .card .img-area {
    margin-left: var(--clamp-20);
}
.top-content#service .card h3 {
    margin-right: var(--clamp-40);
    margin-top: calc(1.5em * -1);
}
.top-content#service .card .img-area::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: var(--color-grad);
}
@media print, screen and (min-width: 769px) {
	 .top-content#service .col-4:nth-child(1) {
		 margin-top: calc(var(--clamp-20) * 3);
	 }
	 .top-content#service .col-4:nth-child(2) {
		 margin-top: calc(var(--clamp-20) * 2);
	 }
	 .top-content#service .col-4:nth-child(3) {
		 margin-top: calc(var(--clamp-20) * 1);
	 }
}
@media print, screen and (max-width: 768px) {
	.top-content#service .card img {
		aspect-ratio: 2/1;
		object-fit: cover;
		object-position: center;
	}
	.top-content#service::before {
		width: 100%;
	}
}
/* ==== company ==== */
.top-content#company .txt-area {
    margin-top: calc((var(--clamp-80) / 2) * -1);
}

 @media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
	 .top-content#company .img-area img {
		 aspect-ratio: 2/1;
		 object-fit: cover;
		 object-position: center;
	}
}
/* ==== news ==== */
.top-content#news .sc_geneleted_list {
    margin-top: var(--clamp-20);
}

@media print, screen and (min-width: 769px) {
    .top-content#news .sc_geneleted_list {
        width: calc(100% - 260px);
    }
    .top-content#news h2 {
        width: 200px;
    }
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * page / section
 * == == == == == == == == == == == == == == == == == == */
@media print, screen and (min-width: 769px) {
}
/* == == == == == == == == == == == == == == == == == == 
 * サイトマップ
 * == == == == == == == == == == == == == == == == == == */
.post ul#sitemap_list.sitemap_disp_level_0 > li a {
	font-family:var(--font-family01);
}
/* == == == == == == == == == == == == == == == == == == 
 * コンタクトフォーム
 * == == == == == == == == == == == == == == == == == == */
.wpcf7-form .must {
    border-radius: 5px;
}
.wpcf7-form .linkBtn {
    padding: 0;
}
.wpcf7-form .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
    padding: 1em 2em;
}
/* == == == == == == == == == == == == == == == == == == 
 * その他の調整 / other
 * == == == == == == == == == == == == == == == == == == */
/* == #content.wide ==== */
#content, body:not(.home) #content.wide {
    padding-top: 0;
    padding-bottom: var(--clamp-80);
}
body.archive.category #content.wide,
body.single #content.wide,
body.page-contact #content.wide,
body.page-thanks #content.wide,
body.page-sitemap #content.wide,
body.page-privacy #content.wide {
    padding: var(--clamp-80) 0;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}