@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
/*------@import------*/
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #231F20;
	--color-primary: #67A8D9;
	--color-primary-shade: #38586F;
	--color-primary-tint: #95c2e4;
	--color-secondary: #00B900;
	--color-secondary-tint: #4dce4d;
	--color-table-border: #D1D1D1;
	--body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
	/* 1.6-1.4rem (1920-375) */
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #231F20;
	--header-color-primary: #67A8D9;
	--header-color-primary-shade: #38586F;
	--header-color-primary-tint: #95c2e4;
	/*------▼フッター設定▼------*/
	--footer-background: #38586F;
	--footer-color-font: #fff;
	--footer-color-primary: #fff;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Tangerine", cursive;
    --font-family04: "Noto Serif JP", serif;
    --font-family05: "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: var(--rem80);
                font-weight: 400;
                line-height: 1;
				margin-bottom: -.1em;
            }
            .ttl--primary__ja {
				font-family: var(--font-family04);
                font-size: var(--rem24);
                font-weight: 600;
                line-height: 1.4;
            }
        }
    }
	/* h2のスタイル */
	.heading_mod-01 {
		font-size: var(--rem36);
		font-family: var(--font-family01);
		font-weight: 600;
		text-align: center;
		letter-spacing: .2rem;
		padding: 0;
		margin: var(--px120) auto var(--px50);
		&::after {
			content: '';
			position: relative;
			visibility: visible;
			display: block;
			width: 2.2em;
			height: 3px;
			background: var(--color-primary);
			margin: 0.6em auto 0;
		}
	}
	/* h3のスタイル */
	.heading_mod-02 {
		font-size: var(--rem24w);
		font-family: var(--font-family01);
		font-weight: 600;
		letter-spacing: .1rem;
		padding: 0 0 .4em;
		margin: var(--px60) auto var(--px20);
		border-bottom: 2px solid var(--color-primary);
		&::before, &::after {
			display: none;
		}
	}
	/* h3のスタイル 左にボーダー */
	.heading_mod-03 {
		font-size: var(--rem24w);
		font-weight: 600;
		font-family: var(--body-font-family);
		letter-spacing: .1rem;
		padding: 0 1rem 0.2rem;
		margin: var(--rem60) auto var(--rem30);
		border-left: 4px solid;
		border-bottom: none;
		&::before, &::after {
			display: none;
		}
	 }
	/* h4のスタイル */
	.heading_mod-04 {
		position: relative;
		font-size: var(--rem18);
		font-family: var(--font-family01);
		font-weight: 600;
		padding: 0 0 0 1.2em;
		margin: var(--px40) auto var(--px24);
		border: none;
		&::before {
			content: '';
			position: absolute;
			width: .7em;
			height: 2px;
			background: var(--color-primary);
			top: .8em;
			left: 0;
		}
		&::after {
			display: none;
		}
	}
    p {
        line-height:2;
        letter-spacing: 0;
    }
	.card {
		display: flex;
		.card__link {
			display: block;
		}
		&:is(.card--mod-01) {
			justify-content: space-between;
			width: 100%;
			max-width: 1240px;
			margin-left: auto;
			margin-right: auto;
			@media screen and (max-width: 414px) {
				flex-direction: column;
				row-gap: var(--rem40);
			}
			.card__item {
				width: 48.4%;
				position: relative;
				overflow: hidden;
				@media screen and (max-width: 414px) {
					width: 100%;
				}
			}
			.card__link {
				padding: min(calc(15rem + (1vw - 1.92rem) * 3.2362), 15rem) min(calc(5rem + (1vw - 1.92rem) * 1.6181), 5rem);
				&:hover {
					.linkBtn {
						color: #fff;
						background: var(--color-primary);
						border-color: var(--color-primary);
						&::after {
							background: url(/wp-content/uploads/icon_arow_01_white.png.webp) no-repeat center / contain;
						}
					}
					.card__figure {
						img {
							opacity: 1;
							transform: scale(1.2);
						}
					}
				}
			}
			.card__summary {
				.ttl.ttl--primary {
					margin-bottom: 0;
				}
				.linkBtn {
					pointer-events: none;
				}
			}
			.card__figure {
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				z-index: -1;
				transition: all .3s;
				filter: brightness(70%);
				img {
					width: 100%;
					height: 100%;
					object-fit: cover;
				}
			}
		}
	}
	.flowList {
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		.flowList__item {
			display: flex;
			align-items: center;
			gap: var(--rem30) var(--px30);
			background: #fff;
			padding: var(--rem60) var(--px50);
			position: relative;
			box-shadow: 0 6px 10px rgba(73, 128, 151, .5);
			@media screen and (max-width: 414px) {
				flex-direction: column;
			}
			& + & {
				margin-top: var(--rem80);
				&::before {
					display: block;
					content: "\f078";
					color: #fff;
					font-family: 'FontAwesome';
					font-size: var(--rem60);
					font-weight: 400;
					line-height: var(--rem80);
					text-align: center;
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					transform: translateY(-100%);
				}
			}
			.flowList__num {
				flex-shrink: 0;
				color: var(--color-primary);
				font-family: var(--font-family04);
				font-size: min(calc(9.6rem + (1vw - 1.92rem) * 3.1068), 9.6rem);
				font-weight: 700;
				line-height: 1;
			}
			.flowList__ttl {
				color: var(--color-font);
				font-family: var(--font-family04);
				font-size: var(--rem28);
				font-weight: 700;
				padding: 0;
				border: none;
				@media screen and (max-width: 414px) {
					text-align: center;
				}
			}
			.flowList__copy {
				font-size: var(--rem18);
				line-height: 1.8;
			}
		}
	}
	.worksList {
		.worksList__item {
			& + & {
				margin-top: var(--rem120);
			}
		}
		.worksList__ttl {
			display: flex;
			align-items: baseline;
			column-gap: var(--px20);
			font-family: var(--font-family01);
			font-size: var(--rem24);
			font-weight: 400;
			border-bottom: 1px dotted #333;
			border-image: unset;
			margin-bottom: var(--rem30);
			padding-bottom: var(--rem24);
			.num {
				display: grid;
  				place-content: center;
				width: fit-content;
				color: #fff;
				background: var(--color-primary-shade);
				padding: 6px var(--px18);
			}
		}
		.worksList__content {
			display: flex;
			gap: var(--rem36) calc(var(--px18) * 2);
			@media print, screen and (max-width: 768px) {
				flex-direction: column;
			}
			.txtarea, .imgarea {
				width: 50%;
				@media print, screen and (max-width: 768px) {
					width: 100%;
				}
			}
			table {
				th, td {
					padding: var(--rem18) var(--px24);
				}
				th {
					width: 32%;
				}
			}
		}
	}
	.qaList {
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		.qaList__item {
			background: #EFF8FF;
			& + & {
				margin-top: var(--rem24);
			}
		}
		.qaList__term, .qaList__description {
			display: flex;
			align-items: center;
		}
		.qaList__term {
			gap: var(--rem40) var(--px40);
			color: var(--color-font);
			font-family: var(--font-family04);
			font-size: var(--rem28);
			font-weight: 700;
			line-height: 1.4;
			letter-spacing: 0;
			border-bottom: 1px solid #B9B9B9;
			padding: 10px var(--px30);
			@media screen and (max-width: 414px) {
				font-size: var(--rem20w);
				padding: var(--rem20) var(--px30);
			}
			.head-q {
				color: var(--color-primary);
				font-family: var(--font-family04);
				font-size: var(--rem60);
				font-weight: 700;
				line-height: 1;
				padding-bottom: .2em;
				@media screen and (max-width: 414px) {
					font-size: var(--rem48);
				}
			}
		}
		.qaList__description {
			gap: var(--rem40) var(--px60);
			font-size: var(--rem18);
			line-height: 1.8;
			padding: var(--rem36) var(--px30) var(--rem40);
			@media screen and (max-width: 414px) {
				gap: var(--rem40) var(--px40);
			}
			.head-a {
				color: var(--color-primary-shade);
				font-family: var(--font-family04);
				font-size: var(--rem60);
				font-weight: 700;
				line-height: 1;
				@media screen and (max-width: 414px) {
					font-size: var(--rem48);
				}
			}
		}
	}
	.flexbox {
		&:is(.flexbox--ordinarily) {
			display: flex;
		}
	}
	.max-w {
		margin-left: auto;
		margin-right: auto;
		&:is(.leftSide) {
			margin-left: 0;
		}
		&:is(.rightSide) {
			margin-right: 0;
		}
		&:is(.max-w--960) {
			max-width: 960px;
		}
		&:is(.max-w--1000) {
			max-width: 1000px;
		}
	}
	.none-style {
		padding: 0;
		border: 0;
		&::before, &::after {
			display: none;
		}
	}
	.ffs-on {
		font-feature-settings: 'palt' on;
	}
	.ffs-off {
		font-feature-settings: 'palt' off;
	}
	.ff-01 {
		font-family: var(--font-family01) !important;
	}
	.ff-02 {
		font-family: var(--font-family02) !important;
	}
	.ff-03 {
		font-family: var(--font-family03) !important;
	}
	.ff-04 {
		font-family: var(--font-family04) !important;
	}
	.fsz-12 {
        font-size: var(--rem12);
    }
    .fsz-14 {
        font-size: var(--rem14);
    }
    .fsz-16 {
        font-size: var(--rem16);
    }
    .fsz-18 {
        font-size: var(--rem18);
    }
    .fsz-20 {
        font-size: var(--rem20);
    }
    .fsz-24 {
        font-size: var(--rem24);
    }
    .fsz-28 {
        font-size: var(--rem28);
    }
    .fsz-30 {
        font-size: var(--rem30);
    }
    .fsz-36 {
        font-size: var(--rem36);
		@media screen and (max-width: 768px) {
			font-size: var(--rem28);
		}
    }
    .fsz-40 {
        font-size: var(--rem40);
    }
    .fsz-48 {
        font-size: var(--rem48);
    }
    .fsz-60 {
        font-size: var(--rem60);
		@media screen and (max-width: 768px) {
			font-size: min(calc(5.2rem + (1vw - 1.92rem) * 1.6828), 5.2rem);
		}
    }
    .fsz-72 {
        font-size: var(--rem72);
    }
    .fsz-80 {
        font-size: var(--rem80);
    }
    .fsz-120 {
        font-size: var(--rem120);
    }
	.fw-100 {
		font-weight: 100 !important;
	}
    .fw-200 {
		font-weight: 200 !important;
	}
    .fw-300 {
		font-weight: 300 !important;
	}
	.fw-400 {
		font-weight: 400 !important;
	}
	.fw-500 {
		font-weight: 500 !important;
	}
	.fw-600 {
		font-weight: 600 !important;
	}
	.fw-700 {
		font-weight: 700 !important;
	}
    .fw-800 {
		font-weight: 800 !important;
	}
    .fw-900 {
		font-weight: 900 !important;
	}
	.lh-mod-01 {
		line-height: 1 !important;
	}
	.lh-mod-02 {
		line-height: 1.1 !important;
	}
	.lh-mod-03 {
		line-height: 1.2 !important;
	}
	.lh-mod-04 {
		line-height: 1.3 !important;
	}
	.lh-mod-05 {
		line-height: 1.4 !important;
	}
	.lh-mod-06 {
		line-height: 1.5 !important;
	}
	.lh-mod-07 {
		line-height: 1.6 !important;
	}
	.lh-mod-08 {
		line-height: 1.7 !important;
	}
	.lh-mod-09 {
		line-height: 1.8 !important;
	}
	.lh-mod-10 {
		line-height: 1.9 !important;
	}
	.lh-mod-11 {
		line-height: 2 !important;
	}
	.ls-mod-01 {
        letter-spacing: 0 !important;
    }
	.ls-mod-02 {
        letter-spacing: .1em !important;
    }
	.color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
	.color-primary-shade {
		color: var(--color-primary-shade);
	}
	.color-primary-tint {
		color: var(--color-primary-tint);
	}
    .color-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		text-fill-color: transparent;
	}
	.d-inline {
        display: inline;
    }
    .d-inline-b {
        display: inline-block;
    }
    .d-block {
        display: block;
    }
	.ml-12 {
		margin-left: var(--rem12);
	}
	.ml-14 {
		margin-left: var(--rem14);
	}
	.ml-16 {
		margin-left: var(--rem16);
	}
	.ml-18 {
		margin-left: var(--rem18);
	}
	.ml-20 {
		margin-left: var(--rem20);
	}
	.ml-24 {
		margin-left: var(--rem24);
	}
	.mr-12 {
		margin-right: var(--rem12);
	}
	.mr-14 {
		margin-right: var(--rem14);
	}
	.mr-16 {
		margin-right: var(--rem16);
	}
	.mr-18 {
		margin-right: var(--rem18);
	}
	.mr-20 {
		margin-right: var(--rem20);
	}
	.mr-24 {
		margin-right: var(--rem24);
	}
    .m-inline-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
	.m-inline-none {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.br_mod-01 {
	display: none;
	@media screen and (max-width: 414px) {
		display: block;
	}
}
.br_mod-02 {
	display: block;
	@media screen and (max-width: 414px) {
		display: none;
	}
}
.br_mod-03 {
	display: none;
	@media screen and (max-width: 1079px) {
		display: block;
	}
	@media screen and (max-width: 414px) {
		display: none;
	}
}
.br_mod-04 {
	display: none;
	@media screen and (max-width: 1079px) {
		display: block;
	}
	@media screen and (max-width: 768px) {
		display: none;
	}
}

/* floatingBanner */
.page-id-21, .page-id-17, .page-id-19 {
	.floatingBanner {
		display: none !important;
	}
}
.floatingBanner {
	position: fixed;
	top: 17%;
	right: 0;
	z-index: 100;
	@media screen and (max-width: 768px) {
		display: none !important;
	}
	& > a {
		display: block;
		transition: all .2s;
		img {
			aspect-ratio: 113 / 658;
			width: calc(113 / 1935 * 100vw);
			min-width: 60px;
			height: auto;
		}
		&:hover {
			img {
				opacity: .7;
			}
		}
	}
}

/**/
.bg_wide { position: relative; }
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
.box_w2_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_w2_sp.rev { flex-direction: row-reverse; }
.box_w2_sp.vtop { align-items: flex-start; }
.box_w2_sp.vcen { align-items: center; }
.box_w2_sp.vbtm { align-items: flex-end; }
.box_pad { padding: 20px; box-sizing: border-box; }
.box_w2 .column2_50:not(.cen) { text-align: left; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.bg_fix::before { background-attachment: fixed !important; }
	.box_w2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_w2.rev { flex-direction: row-reverse; }
	.box_w2.vtop { align-items: flex-start; }
	.box_w2.vcen { align-items: center; }
	.box_w2.vbtm { align-items: flex-end; }
	.box_pad { padding: 30px; }
	.box_w2 .column3_33 { width: 32%; }
	.box_w2 .column2_50 { width: 48.5%; }
	.box_w2 .column2_60 { width: 57%; }
	.box_w2 .column2_70 { width: 67%; }
	.box_w2 .column2_80 { width: 77%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }

/**/

.fw_contents {
    margin-top: 0;
    margin-bottom: 0;
}
#content:has(.fw_contents), body:not(.home) #content:has(.fw_contents).wide {
    padding: 0;
}

/* アンカーリンク 遷移後の表示位置調整 */
.anchor_link {
	&::before {
		padding-top: 100px;
		margin-top: -100px;
	}
}

/*-----------------------------
fullwide01_max1240
------------------------------*/
.fullwide01 {
	position: relative;
	padding: 0;
}
.fullwide01_wrap {
    background: rgba(255, 255, 255, .9);
    max-width: 1240px;
	width: 100%;
    margin: 0 auto;
    padding: var(--px80) var(--px40);
	display: flex;
    justify-content: center;
    align-items: center;
}
@media print, screen and (max-width: 768px) {
  .fullwide01_wrap {
    padding: var(--px80) 5%;
  }
}

/*-----------------------------
column_05
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column05 {
	position: relative;
	max-width: 1240px;
	margin: var(--px60) auto 0;
}
.column05_wrap {
	position: relative;
    width: 100%;
    margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	z-index: 20;
}
.column05_wrap + .column05_wrap {
	margin-top: calc(100px + 70px);
}
.column05 .imgarea {
	position: relative;
	aspect-ratio: 865 / 490;
	overflow: hidden;
	width: 70%;
}
.column05 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column05 .txtarea {
	position: relative;
	width: 50%;
	 display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--rem48) var(--px60) var(--rem60);
	margin: 0 auto -70px -20%;
	z-index: 10;
}
.column05 .txtarea .txtinner {
    max-width: 500px;
}
@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + 30px);
	}
	.column05_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column05_wrap.rev .txtarea {
		margin: 0 -20% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + (1vw - 10.23px) * 7.7160);
	}
	.column05_wrap.rev {
		flex-direction: row;
	}
	.column05 .imgarea, .column05 .txtarea {
		width: 90%;
	}
	.column05 .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
	}
}

@media print, screen and (max-width: 768px) {
  .column05 .txtarea {
    padding: var(--px80) 5%;
  }
}
	
/*---------txtstyle-----------*/
.post .txtstyle04, .txtstyle04 {
	font-family: var(--font-family04);
	font-size: var(--rem36);
	font-weight: 600;
	margin: var(--rem36) auto;
	background: transparent;
	border: none;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle04:before, .txtstyle04:before {
	content: none;
}
.post .column05 .txtstyle04, .column05 .txtstyle04 {
	color: var(--color-font);
	font-size: var(--rem28);
	line-height: 2;
	letter-spacing: 0;
	padding-bottom: .2em;
	border-bottom: 1px solid;
	border-image: linear-gradient(69.91deg, #A16700 4.33%, #F4B811 90.7%) 1;
	margin-bottom: var(--rem20);
}
.post .column05 .txtstyle04:after, .column05 .txtstyle04:after {
    display: none;
}

/*-----------------------------
card
------------------------------*/
  .toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
  }
  .card01_wrap {
	position: relative;
	margin: var(--px60) 0 0;
  }
  .card01_inner {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
  }
  .card01_list > li {
	position: relative;
	background: transparent;
  }
  .card01_list .imgarea {
	width: 100%;
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	line-height: 0;
  }
  .card01_list .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .card01_list .txtarea {
	padding: 20px 0 0 0;
	line-height: 1.6;
	text-align: left;
	background: transparent;
  }
	
  /*---------txtstyle02 -----------*/
	
  .post .txtstyle02, .txtstyle02 {
	font-size: var(--rem36);
	font-weight: 600;
	margin: var(--rem36) auto;
	background: transparent;
	line-height: 1.4;
	padding: 0;
	border: none !important;
	&::before, &::after {
		display: none;
	}
  }
  .post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
  }
  .post .card01_list .txtstyle02, .card01_list .txtstyle02 {
	font-size: var(--rem24w);
	letter-spacing: 0;
	font-weight: 500;
	margin: 0 0 var(--rem16);
  }

  /*-----------------------------
.cardstyle
------------------------------*/
  
/*---------style03-------------*/
  
.card01_list.cardstyle03 > li {
    padding: 16px;
    background: #fff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, .14));
}

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

  /*---------coln02-----------*/
  
.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 {
	display: flex;
	flex-direction: column;
    width: 48.4%;
	border-radius: 10px;
	margin-bottom: 2%;
	padding: var(--rem30) var(--px30) var(--rem40);
	.imgarea {
		aspect-ratio: 540 / 304;
		border-radius: 10px;
	}
	.txtarea {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		& > p {
			flex-grow: 1;
		}
	}
	.txtstyle04 {
		color: var(--color-font);
		font-size: var(--rem28);
		line-height: 2;
		letter-spacing: 0;
		padding-bottom: .2em;
		border-bottom: 1px solid;
		border-image: linear-gradient(69.91deg, #A16700 4.33%, #F4B811 90.7%) 1;
		margin-bottom: var(--rem20);
	}
}
@media print, screen and (max-width: 414px) {
	.post .col2_list > li {
		width: 100%;
		margin-bottom: 10%;
	}
	.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;
	&:is(.col3_list--mod-01) {
		& > li {
			width: 31%;
			margin-bottom: 5%;
			@media screen and (max-width: 768px) {
				width: 48%;
			}
			@media screen and (max-width: 414px) {
				width: 100%;
				margin-bottom: 10%;
			}
			.imgarea {
				aspect-ratio: 383 / 271;
				border-radius: 0;
			}
			.txtarea {
				flex-grow: unset;
				.txtstyle02 {
					flex-grow: unset;
					font-family: var(--font-family01);
					font-size: var(--rem20w);
					font-weight: 700;
				}
			}
		}
	}
}
.post .col3_list > li {
    width: 29%;
	margin-bottom: 2%;
	display: flex;
	flex-direction: column;
	.txtarea {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		.txtstyle02 {
			flex-grow: 1;
			@media screen and (max-width: 1079px) {
				flex-grow: unset;
				font-size: var(--rem20);
			}
			@media screen and (max-width: 768px) {
				font-size: var(--rem24w);
			}
		}
	}
}
.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: 46%;
		margin-bottom: 10%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 414px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------
	リンクボタン
--------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
	font-weight: 700;
	max-width: 300px;
	border-radius: 0;
}

div:has(.linkBtn) {
	&:is(.txt_l) {
		.linkBtn {
			margin-left: 0;
		}
	}
	&:is(.txt_r) {
		.linkBtn {
			margin-right: 0;
		}
	}
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 366px;
		max-height: 72px;
    }
    #header a.head_btn {
        background: var(--color-primary);
        padding-left: var(--rem28);
        padding-right: var(--rem28);
        &:hover {
            background-color: var(--color-primary-tint);
        }
    }
    #header a.head_btn.tel_btn {
        color: var(--header-color-font);
        background: transparent;
        margin-left: var(--px50);
        &:hover {
            color: var(--color-primary);
            background: transparent;
        }
		.tel_btn__info {
			font-weight: 500;
			.note b {
				font-weight: 500;
			}
		}
    }
    #header a.head_btn.tel_btn::before {
        display: none;
    }
    #header a.head_btn .tel_btn__num::before {
        content: '\f095';
        position: relative;
        top: 2px;
        display: block;
        font-family: 'FontAwesome';
        font-size: .75em;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .1em;
    }
    #header a.head_btn .tel_btn__num {
        display: flex;
        align-items: center;
        column-gap: min(calc(0.8rem + (1vw - 1.92rem) * 0.1294), .8rem);
        font-size: var(--rem24);
        font-weight: 700;
        margin-bottom: 3px;
    }
    #header a.head_btn.mail_btn {
        font-size: var(--rem16);
        flex-direction: row;
        align-items: center;
        padding-left: var(--rem36);
        padding-right: var(--rem36);
    }
    #header a.head_btn.mail_btn::before {
        font-size: var(--rem20);
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.mail_btn span {
        font-size: var(--rem14);
    }
	nav#mainNav ul li:has(> .sub-menu) {
		&:hover {
			background: var(--color-primary);
			a b {
				color: #fff;
			}
		}
    }
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 700;
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
        color: var(--header-color-font);
    }
    nav#mainNav ul li a:hover {
	background: transparent;
        b {
             color: var(--color-primary);
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
         color: var(--color-primary);
    }
    nav#mainNav ul li.current-menu-item a {
        background: transparent;
    }
    body:not(.home) {
        nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
            color: var(--header-color-primary);
        }
		nav#mainNav ul li.current-menu-item:hover a b, nav#mainNav ul li.current-menu-parent a:hover b {
			color: var(--color-primary);
        }
    }
		nav#mainNav ul li:hover {
		& > a, & > b {
			color: var(--color-primary);
		}
	}
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
}

/*------ヘッダー　レスポンシブ
--------------------------------------------*/

@media screen and (max-width: 1400px) {
	nav#mainNav ul, #header .header__nav-contact {
		flex-shrink: 0;
	}

    #header a.head_btn.tel_btn {
        margin-left: var(--px20);
    }

	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: 1.4rem;
	}

	#header a.head_btn.mail_btn {
		font-size: 1.4rem;
		padding-left: var(--rem20);
        padding-right: var(--rem20);
	}

	#header a.head_btn {
		padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
	}

	#header a.head_btn.sns_btn {
		padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
	}

	nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	}
}

@media print, screen and (max-width: 1240px) {
	#header a.headBtn span {
		display: none;
	}

	#header a.headBtn::before {
		margin-right: 0;
	}
}

@media print, screen and (max-width: 1023px) {
	#header-upper .header__socialicon, #header .sticky-logo, #header ul.header__contact {
		display: none;
	}

	#header h1, #header .description, #header-upper h1, #header-upper .description {
		display: block;
		float: none;
		text-align: center;
		padding: 20px 0 10px;
	}
}

@media screen and (max-width: 1023px) {
	nav#mainNav ul li ul.sub-menu li a, nav#mainNav ul li ul.sub-menu li a:hover, nav#mainNav ul li ul.sub-menu li.current-menu-item a, nav#mainNav ul li.current-menu-item ul.sub-menu li a {
		color: #4d4d4d;
		font-size: 1.4rem;
	}
    nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: var(--rem16);
	}
	/* nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	} */
	nav#mainNav ul li a, nav#mainNav ul li.current-menu-item li a {
		padding: 15px 10px;
	}
	nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a {
		padding-left: 43px;
	}
}

@media screen and (max-width: 1023px) {
	#thumbImg, header#h1Header {
		width: 100%;
		aspect-ratio: 1920 / 500;
	}
}



.spmenu #menu p {
    width: 100%;
}
@media print, screen and (min-width: 1024px) {
	nav#mainNav ul li:hover {
		& > a, & > b {
			color: var(--color-primary);
		}
	}
	nav#mainNav ul li:hover ul.sub-menu {
		background: #fff;
	}
}
#header #mainNav .sp-nav-block {
	display: none;
	@media screen and (max-width: 1023px) {
	   display: block;
	}   
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
	padding: var(--px80) 0 var(--px60);
    .footer__logo img {
        width: 100%;
		max-width: 156px;
		max-height: 72px;
    }
	.footer__logo:not(:last-child) {
		text-align: center;
		margin-bottom: var(--rem48);
	}
	.catch {
		font-size: var(--rem30);
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		margin-top: 5px;
	}
	.footnav:not(:last-child) {
		margin-bottom: var(--rem20);
	}
}
#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home, .page-id-21, .page-id-17, .page-id-19 {
	.page-cta {
		display: none !important;
	}
}
/*-----------------------------
cta01_col2_max1240
------------------------------*/
.cta01 {
	background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
	padding: var(--rem120) 0;
	position: relative;
	z-index: 0;
	.ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: var(--rem80);
                font-weight: 400;
                line-height: 1;
				margin-bottom: -.1em;
            }
            .ttl--primary__ja {
				font-family: var(--font-family04);
                font-size: var(--rem24);
                font-weight: 600;
                line-height: 1.4;
            }
        }
    }
	.color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
	.color-primary-shade {
		color: var(--color-primary-shade);
	}
	.color-primary-tint {
		color: var(--color-primary-tint);
	}
    .color-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
 }
.cta01 .cta01_wrap {
  max-width: 1240px;
  width: 90%;
  background: rgba(255, 255, 255, .9);
  margin: 0 auto;
  padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) var(--px40);
}
.cta01 .ctabtnlist {
  justify-content: space-between;
  max-width: 760px;
  margin: var(--px50) auto 0 auto;
}
.cta01 .ctabtnlist li {
  width: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: var(--px24) 0;
	text-align: center;
	box-sizing: border-box;
	color: #111;
	border-radius: 0;
	transition: all ease .15s;
}
.cta01 a.item:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 768px) {
	.cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
	width: 100%;
	}
	.cta01 .ctabtnlist li + li {
  margin-top: 1rem;
	}
}
	
/*ボタン共通パーツ*/
	
.cta01 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}
.cta01 .infotxt {
	font-size: var(--rem18);	
	font-weight: 500;
	.note {
		font-size: var(--rem16);
		font-weight: 500;
		b {
			font-weight: 500;
		}
	}
}
	
/*電話ボタン*/
	
.cta01 .telnum {
	font-size: var(--rem36);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
	font-weight: 500;
}
.cta01 a.telbtn {
    background: var(--color-primary-shade);
	color: #fff;
}
	
/*メールボタン*/
	
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
	font-weight: 500;
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #fff;
}
	
/*ボタンアイコン*/
	
.cta01 .mailbtn .btnttl::before, .cta01 .telnum::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
	font-size: var(--rem28);
	position: relative;
	top: .1em;
}
.cta01 .telnum::before {
	content: '\f095';
	font-size: var(--rem30);
	position: relative;
	top: -.1em;
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
    /* CONTENT01 */
    #top_about {
		padding: var(--rem80) 0;
        &.bg_wide {
            &::before {
                background: url(/wp-content/uploads/top_bg_01.png.webp) no-repeat center / cover;
            }
        }
    }
	/* CONTENT02 */
	#top_problem {
		padding: var(--rem120) 0;
		position: relative;
		&::after {
			display: block;
			content: "";
			width: 0;
			height: 0;
			border-style: solid;
			border-right: 5.4375em solid transparent;
			border-left: 5.4375em solid transparent;
			border-top: 5.625em solid var(--color-primary-shade);
			border-bottom: 0;
			margin: 0 auto;
			position: absolute;
			left: 0;
			right: 0;
			bottom: 2px;
			transform: translateY(100%);
		}
		&.bg_wide {
			&::before {
				background: var(--color-primary-shade);
			}
		}
	}
	/* CONTENT03 */
	#top_benefit {
		padding: calc(var(--rem40) + 5.625em) 0 min(calc(24rem + (1vw - 1.92rem) * 10.3560), 24rem);
		&.bg_wide {
			&::before {
				background: linear-gradient(180deg, #FFFFFF 11.87%, #B9E1FE 100%);
			}
		}
		& > h2 {
			img {
				width: 3.25em;
			}
		}
	}
	/* CONTENT04 */
	#top_service {
		padding: var(--rem80) 0 min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
		.card {
			&.card--mod-01 {
				column-gap: 3.2%;
				.card__item {
					flex-grow: 1;
				}
			}
		}
	}
	/* CONTENT05 */
	#top_flow {
		padding: var(--rem120) 0 min(calc(16rem + (1vw - 1.92rem) * 6.4725), 16rem);
		&.bg_wide {
			&::before {
				background: linear-gradient(180deg, #FFFFFF 11.87%, #B9E1FE 100%);
			}
		}
	}
	/* CONTENT06 */
	#top_flow {
		padding: var(--rem80) 0 min(calc(20rem + (1vw - 1.92rem) * 6.4725), 20rem);
	}
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        color: transparent;
        font-size: var(--rem48);
        font-family: var(--font-family01);
        font-weight: 400;
    }
	&:is(.single) {
		h1.title {
			color: var(--color-font);
		}
	}
    &.post, .post {
		h2, h3 {
			font-family: var(--font-family04);
		}
		h3 {
			font-size: var(--rem28);
			border-bottom: 2px solid;
			border-image: linear-gradient(69.91deg, #A16700 4.33%, #F4B811 90.7%) 1;
			padding-left: 0;
		}
		.table {
            &:is(.table--mod-01) {
                th, td {
                    vertical-align: middle;
                    padding: var(--rem30) var(--rem24);
                }
                th {
                    width: 30%;
                    color: #fff;
                    text-align: center;
                    background: #007B8B;
                }
            }
            &:is(.caption-right) {
                caption {
                    text-align: right;
                }
            }
            &:is(.caption-center) {
                caption {
                    text-align: center;
                }
            }
            &:is(.caption-bottom) {
                caption-side: bottom;
            }
        }
        table th, table td {
            font-size: var(--rem16);
            padding: min(calc(3.2rem + (1vw - 1.92rem) * 0.7120), 3.2rem) var(--rem24);
            line-height: 1.7;
        }
        table th {
			color: #fff;
            font-weight: 700;
			background: var(--color-primary);
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
    }
}

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

.contact_area {
    padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);/*80px-40px (1920-375)x*/
    text-align: center;
    background: #F6FBFF;
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
}
.post .contact_ttl {
	font-family: var(--font-family04);
	font-size: var(--rem30);
	font-weight: 700;
	text-align: center;
	letter-spacing: .1rem;
	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.4em auto 0;
}
.contact_read {
    margin: 0 0 var(--px50);/*30px-15px (1920-375)*/
	letter-spacing: .1em;
    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;
	&::after {
		display: none;
	}
}
.contact_area .linkBtn a {
    color: #fff;
    padding: 0.8em 1.2em;
    display: block;
}

/*================================================
					お問い合わせ
================================================*/
body:not(.home) {
	.wpcf7 {
		.wpcf7-form {
			table {
				border: none;
				tr:last-child {
					th, td {
						border-bottom: none;
					}
				}
				th, td {
					font-size: var(--rem20);
					border-top: none;
					border-left: none;
					border-right: none;
					padding: var(--rem16) var(--rem24);
				}
				th {
					color: var(--color-font);
					width: 30%;
					min-width: 16em;
					background: transparent;
					&:is(.v-align-middle) {
						vertical-align: middle;
					}
					&:is(.p-block) {
						padding: var(--rem28) var(--rem24);
						@media screen and (max-width: 640px) {
							padding-bottom: 0;
						}
					}
					@media screen and (max-width: 640px) {
						border-bottom: none;
						padding-bottom: 0;
					}
				}
				td {
					padding-right: 8px;
					@media screen and (max-width: 640px) {
						border-top: none;
					}
				}
				input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select {
					line-height: 55px;
					height: 55px;
					border: 1px solid #D9D9D9;
					border-radius: 0;
					color: var(--color-font);
					font-size: var(--rem20);
					background: #fff;
					margin-bottom: 5px;
				}
				.wpcf7-form-control.wpcf7-radio {
					line-height: 55px;
					@media screen and (max-width: 1023px) {
						line-height: 1.7;
					}
				}
				textarea {
					color: var(--color-font);
					font-size: var(--rem20);
					background: #fff;
					border: 1px solid #D9D9D9;
					border-radius: 0;
				}
			}
			.subimitarea {
				.linkBtn {
					margin-left: auto;
					margin-right: auto;
					padding: 0;
					&::after {
                        display: none;
                    }
                    input {
                        font-weight: 700;
                    }
				}
			}
			.must {
				font-family: var(--font-family05);
				font-size: var(--rem20);
				font-weight: 500;
				background: #DC143C;
			}
		}
	}
}
.privacy-acceptance {
	.wpcf7-form-control-wrap {
		display: inline;
	}
}
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
@media only screen and (max-width: 640px) {
    .wpcf7-form .wpcf7-date {
        text-align: left;
        appearance: none;
        min-width: 100%;
        height: 30px;
    }
    input[type="date"]::-webkit-date-and-time-value {
        text-align: left;
      }
}