@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=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #333;
	--color-primary: #1081D0;
	--color-primary-shade: #0b5a92;
	--color-primary-tint: #58a7de;
	--color-secondary: #8FC31F;
	--color-secondary-tint: #b1d562;
	--color-table-border: #DDD;
	--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: #444;
	--header-color-primary: #1081D0;
	--header-color-primary-shade: #0b5a92;
	--header-color-primary-tint: #58a7de;
	/*------▼フッター設定▼------*/
	--footer-background: #EEEEEE;
	--footer-color-font: #292929;
	--footer-color-primary: #292929;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Roboto", 'Noto Sans JP', sans-serif;
    --font-family04: "Noto Serif JP", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			margin-bottom: var(--rem30);
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: var(--rem24);
                font-weight: 500;
                line-height: 1;
				letter-spacing: .03em;
				position: relative;
            }
            .ttl--primary__ja {
                font-size: var(--rem48);
                font-weight: 400;
                line-height: 1.4;
				letter-spacing: .03em;
				margin-bottom: .1em;
            }
			&:is(.ttl--primary--mod-01) {
				flex-direction: column-reverse;
				margin-bottom: var(--rem48);
				.ttl--primary__en {
					margin-bottom: var(--rem48);
				}
				.ttl--primary__ja {
					font-family: var(--font-family04);
					font-size: var(--rem40);
					font-weight: 500;
					line-height: 1.6;
					margin-bottom: 0;
				}
			}
        }
    }
	.heading_mod-01 {
		font-size: var(--rem24w);
		font-weight: 700;
		margin-bottom: var(--rem40);
		padding: 0 0 var(--rem20) 0;
		border-bottom: 1px solid var(--color-font);
	}
	.card {
		display: flex;
		.card__link {
			display: block;
		}
		&:is(.card--mod-01) {
			gap: var(--rem20);
			width: 100%;
			max-width: 1450px;
			margin-left: auto;
			margin-right: auto;
			@media screen and (max-width: 640px) {
				flex-wrap: wrap;
			}
			.card__item {
				width: calc(100% / 2);
				position: relative;
				overflow: hidden;
				@media screen and (max-width: 640px) {
					width: 100%;
				}
			}
			.card__link {
				padding: var(--rem120);
				@media screen and (max-width: 1366px) {
					padding: var(--rem120) var(--rem40);
				}
				&:hover {
					.linkBtn {
						color: var(--color-font);
						background: #fff;
						&::after {
							border-color: var(--color-font);
						}
					}
					.card__figure {
						img {
							opacity: 1;
							transform: scale(1.2);
						}
					}
				}
			}
			.card__summary {
				.card__ttl {
					color: #fff;
					font-size: var(--rem48);
					font-weight: 500;
					line-height: 1.4;
					margin-bottom: var(--rem40);
					position: relative;
					&::before, &::after {
						display: none;
					}
				}
				.card__copy {
					color: #fff;
					font-size: var(--rem18);
					font-weight: 500;
					line-height: 1.6;
				}
				.linkBtn {
					pointer-events: none;
				}
			}
			.card__figure {
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				z-index: -1;
				transition: all .3s;
				img {
					width: 100%;
					height: 100%;
					object-fit: cover;
				}
			}
		}
	}
	.anchorLinks {
		& > ul {
			display: flex;
			align-items: stretch;
			justify-content: center;
			gap: var(--rem48);
			margin-bottom: var(--rem120);
			@media screen and (max-width: 768px) {
				flex-wrap: wrap;
				gap: var(--rem24) var(--rem48);
			}
			@media screen and (max-width: 414px) {
				flex-wrap: wrap;
				gap: var(--rem24);
			}
			& > li {
				width: 100%;
				max-width: 300px;
				& > a {
					display: block;
					color: #fff;
					font-weight: 500;
					text-align: center;
					padding: 20px 30px 20px 10px;
					background: var(--color-primary);
					border: 1px solid var(--color-primary);
					border-radius: 50vh;
					position: relative;
					transition: all .3s;
					&:hover {
						color: var(--color-primary);
						background: #fff;
						&::after {
							border-color: var(--color-primary);
						}
					}
					&::after {
						display: block;
						content: '';
						position: absolute;
						top: 50%;
						right: 20px;
						width: 6px;
						height: 6px;
						border-right: 1px solid #fff;
						border-bottom: 1px solid #fff;
						-webkit-transform: rotate(-45deg);
						transform: rotate(-45deg);
						margin-top: -3px;
						transition: all .3s;
					}
				}
			}
		}
		&:is(.anchorLinks--mod-01) {
			& > ul {
				gap: var(--rem14);
				margin-top: var(--rem60);
				& + & {
					margin-top: var(--rem30);
					@media screen and (max-width: 768px) {
						margin-top: var(--rem14);
					}
				}
				@media screen and (max-width: 768px) {
					flex-wrap: wrap;
				}
				& > li {
					width: 100%;
					max-width: calc((100% - (var(--rem14) * 4)) / 5);
					@media screen and (max-width: 768px) {
						width: calc((100% - var(--rem48)) / 2);
						max-width: unset;
					}
					& > a {
						font-size: var(--rem16);
						@media screen and (max-width: 1080px) {
							font-size: var(--rem14);
						}
					}
				}
			}
		}
	}
    p {
        line-height:2;
    }
	.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;
	}
	.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);
    }
    .fsz-40 {
        font-size: var(--rem40);
    }
    .fsz-48 {
        font-size: var(--rem48);
    }
    .fsz-60 {
        font-size: var(--rem60);
    }
    .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-700 {
		font-weight: 700 !important;
	}
    .fw-800 {
		font-weight: 800 !important;
	}
    .fw-900 {
		font-weight: 900 !important;
	}
	.lh-mod-01 {
		line-height: 1.2 !important;
	}
	.lh-mod-02 {
		line-height: 1.6 !important;
	}
	.ls-mod-01 {
        letter-spacing: 0 !important;
    }
	.color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
    .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;
	}
    .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: 1079px) {
		display: block;
	}
	@media screen and (max-width: 1023px) {
		display: none;
	}
	@media screen and (max-width: 414px) {
		display: block;
	}
}
.br_mod-02 {
	display: block;
	@media screen and (max-width: 1079px) {
		display: none;
	}
	@media screen and (max-width: 1023px) {
		display: block;
	}
}

/**/
.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: 120px;
		margin-top: -120px;
	}
}

/*-----------------------------
column_01
------------------------------*/
.column01 {
	position: relative;
	margin: var(--px60) 0 0;
}
.column01_wrap {
	position: relative;
	max-width: 1600px;
	width: 94%;
    margin: 0 auto;
	z-index: 1;
}
.column01 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.column01 .txtarea .txtinner {
    max-width: 540px;
}
.column01 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column01 .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	
/*---------txtstyle-----------*/
	
.post .txtstyle02, .txtstyle02 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
}
.post .column01 .txtstyle02, .column01 .txtstyle02 {
	font-size: var(--rem20);
	margin: var(--rem20) 0;
}
.post .txtstyle04, .txtstyle04 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
	border: none;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle04:before, .txtstyle04:before {
	content: none;
}
.post .column01 .txtstyle04, .column01 .txtstyle04 {
	font-size: var(--rem36);
}
.post .column01 .txtstyle04:after, .column01 .txtstyle04:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    background: #111;
    margin: var(--rem30) 0 0 0.5rem;
}

/*-----------------------------
column_05
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column05 {
	position: relative;
	margin: var(--px60) 0 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: 4 / 3;
	overflow: hidden;
	width: 60%;
}
.column05 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column05 .txtarea {
	position: relative;
	width: 45%;
	 display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px80) var(--px40);
	margin: 0 auto -70px -5%;
	z-index: 10;
}
.column05 .txtarea .txtinner {
    max-width: 540px;
}
@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + 70px);
	}
	.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 -5% -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;
	}
}
	
/*---------txtstyle-----------*/
	
.post .txtstyle02, .txtstyle02 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
}
.post .column05 .txtstyle02, .column05 .txtstyle02 {
	font-size: var(--rem20);
	margin: var(--rem20) 0;
}
.post .txtstyle04, .txtstyle04 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
	border: none;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle04:before, .txtstyle04:before {
	content: none;
}
.post .column05 .txtstyle04, .column05 .txtstyle04 {
	font-size: var(--rem36);
}
.post .column05 .txtstyle04:after, .column05 .txtstyle04:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    background: #111;
    margin: var(--rem30) 0 0 0.5rem;
}


/*-----------------------------
card
------------------------------*/

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

/*---------col03-----------*/
  
.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
	display: flex;
	flex-direction: column;
    width: 31%;
	margin-bottom: 2%;
	@media screen and (max-width: 768px) {
		margin-bottom: 10%;
	}
}
.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: 960px) {
	.post .col3_list > li {
		width: 49%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 640px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

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

/*-----------------------------
.cardstyle
------------------------------*/
  
/*---------style02-------------*/

.card01_list.cardstyle02 > li .txtarea {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
    background: #fff;
    padding: 20px var(--px40) 40px var(--px40);
	p:not(.txtstyle02) {
		flex-grow: 1;
	}
}

.card01_list.col3_list.cardstyle02.cardstyle02--mod-01 {
	& > li {
		display: flex;
		flex-direction: column;
		width: 32%;
		background: #F8F8F8;
		@media print, screen and (max-width: 960px) {
			width: 49%;
			margin-bottom: 2%;
		}
		@media print, screen and (max-width: 640px) {
			width: 100%;
		}
		.txtarea {
			display: flex;
			flex-direction: column;
			background: transparent;
			padding: var(--rem40) var(--px30);
			.txtstyle02 {
				font-size: var(--rem20);
			}
		}
	}
}
.card01_list.col4_list.cardstyle02.cardstyle02--mod-01 {
	&::before, &::after {
		display: none;
	}
	& > li {
		background: #F8F8F8;
	}
	.txtarea {
		display: flex;
		flex-direction: column;
		background: transparent;
		padding: var(--rem40) var(--px18);
		.txtstyle02 {
			font-size: var(--rem20);
		}
	}
}

/*-----------------------------
以下アウトラインデザイン
------------------------------*/
.card01_wrap {
  position: relative;
  margin: var(--px60) 0 0;
}
.card01_inner {
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
}
.cardstyle01 > li {
  position: relative;
  background: transparent;
}
.card01_list .imgarea {
  width: 100%;
  position: relative;
  aspect-ratio: 450 / 294;
  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-family: var(--font-family02);
  font-size: var(--rem36);
  font-weight: 600;
  text-align: left;
  margin: var(--rem36) auto;
  background: transparent;
  color: #111;
  line-height: 1.4;
  padding: 0;
  &:is(.txt_c) {
	text-align: center;
  }
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
  content: none;
}
.post .card01_list .txtstyle02, .card01_list .txtstyle02 {
  font-size: var(--rem24);
  font-weight: 500;
  padding: 0;
  border: none;
  margin: 1rem 0 1.75rem;
  &::before, &::after {
	display: none;
  }
}

/*--------------------------------------------------
	リンクボタン
--------------------------------------------------*/
.linkBtn, .post .linkBtn {
    max-width: 300px;
	border: 1px solid var(--color-primary);
	&:is(.linkBtn_mod-01) {
		color: #fff;
		background: transparent;
		border-color: #fff;
		border-radius: 0;
		&:hover {
			background: var(--color-primary);
			border-color: var(--color-primary);
		}
	}
	&:is(.linkBtn--round) {
		border-radius: 50vh;
	}
}

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

/*--------------------------------------------------
	Google Language Translator 
--------------------------------------------------*/
/*-----フラッグのみ SPで表示-----*/
#glt-translate-trigger {
	display: none;
	opacity: 0;
}
@media print, screen and (max-width: 1023px) {
    #glt-translate-trigger {
        display: block;
    }
	.tool-container {
		display: block !important;
		opacity: 1 !important;
		overflow: hidden;
		position: fixed;
		top: 50% !important;
		left: unset !important;
        right: 0 !important;
        bottom: unset !important;
        background: rgba(255, 255, 255, .8);
        padding: 5px 10px;
        border-radius: 5px 0 0 5px;
		border: none;
		transform: translateY(-50%);
		box-shadow: unset;
        transition: .5s;
		.tool-items {
			display: flex;
			flex-direction: column;
			.flag {
				margin-left: 0;
				margin-right: 0;
			}
		}
		.arrow {
			display: none;
		}
	}
    #translator_area, #google_language_translator {
        display: none;
    }
    #flags {
        width: fit-content !important;
    }

    #flags ul {
		display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* ヘッダーアッパー用 */
#flags {
	display: none;
}
@media print, screen and (min-width: 1024px) {
	#header-upper {
		justify-content: flex-end;
		background: #CCC;
		height: 37px;
		padding-right: 5px;
		#google_language_translator {
			display: flex;
			align-items: center;
		}
		#flags {
			display: block;
			width: fit-content;
			position: relative;
			top: 1px;
			li {
				line-height: 1;
			}
		}
		#flags ul {
			display: flex;
			align-items: center;
		}
	}
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
body.home {
	@media print, screen and (min-width: 1024px) {
		nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li.current-menu-parent a span {
			color: var(--color-font);
		}
		nav#mainNav ul li.current-menu-item a:hover span, nav#mainNav ul li.current-menu-parent a:hover span {
			color: var(--color-primary);
		}
	}
}
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 298px;
		max-height: 68px;
    }
	nav#mainNav ul li a:active span, nav#mainNav ul li a:hover span, nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li.current-menu-parent a span {
		color: var(--color-primary);
	}
    #header a.head_btn {
        color: #000;
        background: var(--color-primary);
        padding-left: var(--rem28);
        padding-right: var(--rem28);
        &:hover {
			color: #fff;
            background-color: var(--color-primary-tint);
        }
    }
    #header a.head_btn.tel_btn {
        background: #fff;
        &:hover {
            background: var(--color-primary-tint);
        }
    }
    #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 {
		color: #fff;
        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 {
        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 {
			a b, a span {
				color: var(--color-primary);
			}
		}
    }
	nav#mainNav ul li ul.sub-menu li a:hover {
		color: #fff;
		background: var(--color-primary);
	}
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 700;
    }
	nav#mainNav ul li a b {
		margin-bottom: .2em;
	}
	nav#mainNav ul li a span {
		font-weight: 400;
	}
    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, span {
             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;
    }
}

.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;
	}   
}

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

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

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

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
	padding: var(--px80) 0 var(--px60);
    .footer__logo img {
        width: 100%;
    }
	.footer__logo:not(:last-child) {
		margin-bottom: 30px;
	}
	ul li a {
		font-weight: 500;
	}
	.footnav:not(:last-child) {
		margin-bottom: 0;
	}
}
#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	.page-cta {
		display: none !important;
	}
}
/*-----------------------------
cta02_col2_max1240
------------------------------*/
.cta02 {
	position: relative;
	padding: var(--rem120) 0 var(--rem40);
	z-index: 0;
	.ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			margin-bottom: var(--rem30);
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: var(--rem24);
                font-weight: 500;
                line-height: 1;
				letter-spacing: .03em;
				position: relative;
            }
            .ttl--primary__ja {
                font-size: var(--rem48);
                font-weight: 400;
                line-height: 1.4;
				letter-spacing: .03em;
				margin-bottom: .1em;
            }
			&:is(.ttl--primary--mod-01) {
				flex-direction: column-reverse;
				margin-bottom: var(--rem48);
				.ttl--primary__en {
					margin-bottom: var(--rem48);
				}
				.ttl--primary__ja {
					font-family: var(--font-family04);
					font-size: var(--rem40);
					font-weight: 500;
					line-height: 1.6;
					margin-bottom: 0;
				}
			}
        }
    }
	.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-700 {
		font-weight: 700 !important;
	}
    .fw-800 {
		font-weight: 800 !important;
	}
    .fw-900 {
		font-weight: 900 !important;
	}
	.color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
    .color-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
}
.cta02:before {
    content: "";
    background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.cta02 .cta02_wrap {
	max-width: 1240px;
    width: 90%;
    margin: 0 auto;
	padding: 0;
	background: transparent;
	position: relative;
	z-index: 1;
}
.cta02 .ctabtnlist {
    justify-content: space-between;
    margin: var(--px50) auto 0 auto;
}
.cta02 .ctabtnlist li {
    width: 50%;
	background: #fff;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}
.cta02 .item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30);
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta02 .item:hover{
	opacity: 0.8;
}
	
@media print, screen and (max-width: 768px) {
	.cta02 .ctabtnlist li, .cta02 .ctabtnlist .item {
		width: 100%;
	}
	.cta02 .ctabtnlist li + li {
		margin-top: 1rem;
	}
}
	
/*ボタン共通パーツ*/

.cta02 .infotxt {
	font-size: var(--rem16);	
	font-weight: 700;
}
.cta02 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-size: var(--rem20);
}

	
/*電話ボタン*/
	
.cta02 .telnum {
	font-size: var(--rem36);
	font-weight: 700;
	margin-bottom: 1rem;
}	
.cta02 a.telbtn {
    background: var(--color-primary);
	color: #fff;
	.infotxt {
		font-size: var(--rem16);
		font-weight: 700;
		display: flex;
		.note {
			font-size: var(--rem16);
			font-weight: 700;
		}
	}
}
	
/*メールボタン*/
	
.cta02 .mailarea.item {
	color: #FFF;
    background: var(--color-secondary);
}
.cta02 a.mailbtn {
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    flex-direction: row;
	justify-content: center;
    max-width: 400px;
    width: 90%;
    border-radius: 50vh;
    padding: 20px;
    margin: 0 0 1rem 0;
}
.cta02 a.mailbtn {
    background: #fff;
	color: var(--color-secondary);
}
	
/*ボタンアイコン*/
	
.cta02 a.mailbtn::before, .cta02 .telnum::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
.cta02 .telnum::before {
	content: '\f3cd';
}
.cta02 a.mailbtn::before {
	color: var(--color-secondary);
	content: '\f0e0';
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
	/* CONTENT01 */
	#top_greeting {
		.column05 {
			margin-top: 0;
			.imgarea {
				aspect-ratio: 1340 / 760;
				border-radius: var(--px20) 0 0 var(--px20);
				@media screen and (max-width: 1023px) {
					border-radius: 0 var(--px20) var(--px20) 0;
				}
			}
			.txtarea {
				border-radius: 0 var(--px20) var(--px20) 0;
				@media screen and (max-width: 1023px) {
					border-radius: var(--px20) 0 0 var(--px20);
				}
				.txtinner {
					max-width: 650px;
				}
			}
		}
	}
	/* CONTENT02 */
	#top_service {
		padding: var(--rem120) 0;
		&.bg_wide {
			&::before {
				background: url(/wp-content/uploads/top_bg_01.jpg.webp) no-repeat center / cover;
			}
		}
		.card01_wrap {
			background: rgba(255, 255, 255, .8);
			border-radius: var(--px20);
			margin-top: 0;
			padding: var(--rem120) var(--rem60);
			.card01_inner {
				width: 100%;
			}
		}
	}
	/* CONTENT03 */
	#top_recruit {
		padding: var(--rem120) 0;
	}
	/* CONTENT04 */
	#top_company {
		.front_contents.sec02 {
			padding-top: var(--rem80);
		}
		.column01 {
			margin-top: 0;
			.column01_wrap {
				max-width: unset;
				width: 100vw;
				.txtarea {
					.txtinner {
						max-width: 740px;
					}
				}
			}
		}
	}
	/* POST */
	.top_news {
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
	}
	.postlist {
		.post_text {
			color: #CCC;
			padding: 26px 0;
		}
		li {
			border-bottom: 1px solid #ccc;
		}
	}
	.postlist .ttls, .postlist .date {
		color: var(--color-font);
		font-size: 100%;
	}
	.post .time, .postlist .time, .post2b .time, .post4b .time {
		line-height: 1.2 !important;
	}
}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	background: #111;

}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        color: var(--color-font);
        font-size: var(--rem48);
        font-family: var(--font-family01);
        font-weight: 500;
    }
    &.post, .post {
		.ttl.ttl--primary {
			margin-bottom: var(--rem48);
		}
		.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;
			vertical-align: middle;
			background: var(--color-primary);
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
		.googlemap {
            padding-bottom: 28%;
            @media screen and (max-width: 768px) {
                padding-bottom: 45%;
            }
        }
    }
}

/*================================================
					事業内容
================================================*/
/*-------------------------------------------
 teleco_v1
------------------------------------------- */
.teleco_v1 h2 {
	width: 100%;
}
.teleco_v1 .w50.image_box{
	aspect-ratio: 620 / 387;
	position: relative;
	overflow: hidden;
}
.teleco_v1 .w50.image_box::before {
	content: '';
	display: block;
}
.teleco_v1 .w50.image_box img {
	position: absolute;
	width: 102%;
	height: auto;
	max-width: none;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.teleco_v1 .w50.text_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #ffffff;
	padding: var(--rem24) var(--px24) var(--rem24) var(--px16);
	& > h3 {
		letter-spacing: 0;
		width: 100%;
		padding: 0 0 .4em;
	}
}
@media print, screen and (min-width: 769px) {
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(550px + (1vw - 19.2px) * 17.3762);
	}
	.teleco_v1 .w50.image_box img {
		width: auto;
		height: 116%;
	}
}
.flexinnerBtn {
	align-self: normal;
}
@media print, screen and (max-width: 768px) {
	.teleco_v1 .w50.image_box{
		margin-bottom:0;
	}
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(350px + (1vw - 7.68px) * 27.9898);
	}
	.teleco_v1 .w50.text_box {
		padding: 20px 0;
		margin-bottom:0;
	}
}

/*================================================
				　　ご利用の流れ
================================================*/

/*--flow01--------------------------------------------*/
	
.flowlist01 {
	padding-left: 3rem;
	position: relative;
}
.flowlist01::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -8px;
	display: block;
	position: absolute;
	top: 0;
	left: 3rem;
}
.flowlist01 > li {
	position: relative;
}
.flowlist01 > li:not(:last-child) {
	margin-bottom: 8vh;
}
.flowlist01 > li .icon {
	font-size:1.6rem;
	color: #fff;
	background: var(--color-primary);
	padding: 0.8rem 2rem;
	display: block;
	position: absolute;
	top: 0;
	left: -3rem;
	z-index: 100;
	font-style: italic;
	aspect-ratio: 1 / 1;
    border-radius: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .flowlist01 > li .icon::after {
	content: "";
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #000000;
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
} */
.flowlist01 > li dl {
	padding-left: 7rem;
	position: relative;
	padding-top: 1rem;
}
.flowlist01 > li dl::before,
.flowlist01 > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 2rem;
}
.flowlist01 > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: 0;
	background: #1A1A1A;
	border-radius: 50%;
	left: -4px;
}
.flowlist01 > li dl::after {
	width: 50px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
	top: 3rem;
}
.flowlist01 > li dl dt {
	border-bottom: 1px solid #C3C3C3;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
	font-weight: 600;
	font-size: 2rem;
}
@media (max-width: 768px) {
	.flowlist01 > li .icon {
		font-size: 1.2rem;
	}

	.flowlist01 {
		padding-left: 3rem;
	}

	.flowlist01 > li .icon {
		left: -3rem;
	}

	.flowlist01::before {
		left: 2.7rem;
	}

	.flowlist01 > li dl {
		padding-left: 4.5rem;
	}

	.flowlist01 > li dl::after {
		width: 30px;
		top: 2.7rem;
	}

	.flowlist01 > li dl dt {
		font-size: 1.4rem;
	}
}

/*================================================
					お問い合わせ
================================================*/
body:not(.home) {
	.wpcf7 {
		.wpcf7-form {
			table {
				th {
					width: 30%;
				}
			}
			.subimitarea {
				.linkBtn {
					margin-left: auto;
					margin-right: auto;
					padding: 0;
				}
			}
			.must {
				background: #DC143C;
			}
		}
	}
}