@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');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #252524;
	--color-primary: #350000;
	--color-primary-shade: #30B1AE;
	--color-primary-tint: #F1CF38;
	--color-secondary: #EBF7EB;
	--color-secondary-tint: #EBF7EB;
	--color-table-border: #EBF7EB;
	--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: #252524;
	--header-color-primary: #350000;
	--header-color-primary-shade: #30B1AE;
	--header-color-primary-tint: #F1CF38;
	/*------▼フッター設定▼------*/
	--footer-background: #EBF7EB;
	--footer-color-font: #252524;
	--footer-color-primary: #252524;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Roboto", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: min(calc(6.8rem + (1vw - 1.92rem) * 1.6828), 6.8rem);
                font-weight: 500;
                line-height: .9;
                letter-spacing: .1em;
				margin-bottom: 0;
				position: relative;
                &::first-letter {
                    color: var(--color-primary-tint);
                }
                &.color-common {
					color: var(--color-font);
				}
				&.color-white {
					color: #fff;
				}
            }
            .ttl--primary__ja {
                font-size: var(--rem30);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: .08em;
                &.color-common {
					color: var(--color-font);
				}
				&.color-white {
					color: #fff;
				}
            }
        }
    }
	.heading_mod-01 {
		font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: .14em;
		border: none;
		margin-bottom: var(--rem30);
		padding: 0;
		&::before, &::after {
			display: none;
		}
	}
	.heading_mod-02 {
		color: var(--color-primary-shade);
		font-size: var(--rem24);
		font-weight: 700;
		letter-spacing: 0;
		width: 100%;
		border-bottom: 1px solid;
		padding: 0 0 var(--rem16) 0;
		margin-bottom: var(--rem16);
	}
	.heading_mod-03 {
		font-size: var(--rem24);
		font-weight: 700;
		letter-spacing: 0;
		padding: 0;
		border: none;
		&::before, &::after {
			display: none;
		}
	}
	.heading_mod-04 {
		color: #fff;
		font-size: var(--rem24);
		font-weight: 700;
		letter-spacing: 0;
		background: var(--color-primary-shade);
		border: none;
		padding: .4em 2em;
		margin-bottom: var(--rem40);
		&::before, &::after {
			display: none;
		}
	}
	.heading_mod-05 {
		color: var(--color-primary-shade);
		font-size: var(--rem30);
		font-weight: 700;
		letter-spacing: 0;
		padding: 0;
		margin-bottom: var(--rem50);
		border: none;

	}
	.txt-deco_mod-01 {
		display: flex;
		align-items: baseline;
		gap: var(--rem12);
		.accent {
			flex-shrink: 0;
			white-space: nowrap;
			color: var(--color-primary-shade);
			font-size: var(--rem30);
			font-weight: 700;
		}
	}
    p {
        line-height:2;
        letter-spacing: .1em;
    }
	.box {
		padding: var(--rem60) min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
		img {
			width: 100%;
		}
		@media screen and (max-width: 768px) {
			padding: var(--rem60) var(--rem40);
		}
		&:is(.box_mod-01) {
			background: var(--color-secondary);
		}
		&:is(.box_mod-02) {
			background-color: #F9F9F9;
		}
	}
	.productBox {
		display: flex;
		align-items: flex-start;
		gap: var(--px80);
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
		@media screen and (max-width: 768px) {
			flex-direction: column;
			gap: var(--rem60);
			width: 100%;
			margin-bottom: var(--rem120);
		}
		.productBox__figure, .productBox__summary {
			width: 50%;
			@media screen and (max-width: 768px) {
				width: 100%;
			}
		}
		.productBox__figure {
			display: flex;
			justify-content: center;
			gap: var(--px40);
			img {
				aspect-ratio: 262/ 362;
				width: calc((100% - var(--px40)) / 2);
				height: 100%;
				object-fit: cover;
			}
			&:is(.col1) {
				display: block;
				img {
					    aspect-ratio: 561 / 362;
						width: 100%;
						height: auto;
						object-fit: contain;
				}
			}
		}
		.productBox__summary {
			max-width: 520px;
			margin-left: auto;
			margin-right: 0;
			@media screen and (max-width: 768px) {
				max-width: unset;
			}
		}
	}
	.figureList {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		& > li {
			width: calc((100% - 15px) / 2);
			background: #fff;
		}
	} 
	.list {
		&:is(.list_mod-01) {
			font-weight: 700;
			li {
				display: flex;
				align-items: center;
				gap: var(--rem16);
				font-size: var(--rem24);
				border-bottom: 1px solid #A7D6A7;
				& + & {
					margin-top: var(--rem40);
				}
				.num {
					color: var(--color-primary-tint);
					font-size: var(--rem40);
				}
			}
		}
	}
	.lh-mod-01 {
		line-height: 1.2 !important;
	}
	.ffs-none {
		font-feature-settings: 'palt' off;
	}
	.fw-400 {
		font-weight: 400 !important;
	}
	.fw-500 {
		font-weight: 500 !important;
	}
	.fw-700 {
		font-weight: 700 !important;
	}
    .color-white {
        color: #fff;
    }
	.color-green {
        color: var(--color-primary-shade);
    }
    .color-yellow {
        color: #EFF316;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.marker.green {
		background: linear-gradient(transparent 60%, rgba(48, 177, 174, .2) 60%);
		padding: 0 var(--rem12);
	}
    .m-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
	.br_mod-01 {
		display: block;
		@media screen and (max-width: 768px) {
			display: none;
		}
		@media screen and (max-width: 560px) {
			display: block;
		}
	}
	.br_mod-02 {
		display: block;
		@media screen and (max-width: 560px) {
			display: none;
		}
	}
}

/**/
.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; }
.max-w {
	margin-left: auto;
	margin-right: auto;
	&.max-w--610 {
		max-width: 610px;
		
	}
	&.max-w--960 {
		max-width: 960px;
		
	}
	&.max-w--1000 {
		max-width: 1000px;
	}
}

/**/

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

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

/*-----------------------------
fullwide03
------------------------------*/
.fullwide03 {
	position: relative;
	background: transparent;
	padding: var(--px80) 0 var(--rem120);
}
.fullwide03:before {
    content: "";
    background: var(--color-primary-shade);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.fullwide03_wrap {
    background: #fff;
	position: relative;
	z-index: 1;
    max-width: 1600px;
	width: 94%;
    margin: 0 auto;
    padding: var(--px80);
	display: flex;
    justify-content: center;
    align-items: center;
}
.fullwide03_inner {
    max-width: 960px;
}

/*-----------------------------
column_05
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column06 {
	position: relative;
	margin: var(--px60) 0 0;
}
.column06_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: center;
	z-index: 20;
}
.column06 .imgarea {
	position: relative;
	    aspect-ratio: 4 / 3;
	overflow: hidden;
	width: 60%;
}
.column06 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column06 .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;
}
.column06 .txtarea .txtinner {
    max-width: 720px;
}
.column06_wrap + .column06_wrap {
	margin-top: var(--px80);
}

@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column06_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column06_wrap.rev .txtarea {
		margin: 0 -5% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column06_wrap.rev {
		flex-direction: row-reverse;
	}
	.column06 .imgarea, .column06 .txtarea {
		width: 100%;
	}
	.column06 .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 .column06 .txtstyle02, .column06 .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 .column06 .txtstyle04, .column06 .txtstyle04 {
	font-size: var(--rem36);
}
.post .column06 .txtstyle04:after, .column06 .txtstyle04:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px80);
    height: 3px;
    background: #111;
    margin: var(--rem30) 0 0 0.5rem;
}

/*-----------------------------
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: 1600px;
	width: 94%;
	margin: 0 auto;
  }
  .card01_list > li {
	position: relative;
	background: transparent;
  }
  .card01_list .imgarea {
	width: 100%;
	position: relative;
	aspect-ratio: 4 / 3;
	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_l) {
		text-align: left;
	}
  }
  .post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
  }
  .post .card01_list .txtstyle02, .card01_list .txtstyle02 {
	font-size: var(--rem20);
	margin: 0 0 1rem;
	&:is(.color-green) {
		color: var(--color-primary-shade);
	}
	&:is(.txt_c) {
		text-align: center;
	}
  }

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

/*---------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 {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 414px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col03-----------*/
  
.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
	margin-bottom: 2%;
	.txtarea {
		.txtstyle02 {
			border: none;
			margin-top: 5px;
			margin-bottom: var(--rem20);
		}
	}
}
.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}
.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
@media print, screen and (max-width: 768px) {
	.post .col3_list > li {
		width: 49%;
		margin-bottom: 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;
	}
}

/*-----------------------------
card02
------------------------------*/
 .post {
	.card02_wrap {
		position: relative;
		margin: var(--px60) 0 0;
	  }
	  .card02_inner {
		max-width: 1600px;
		width: 94%;
		margin: 0 auto;
	  }
	  .card02_list > li {
		display: flex;
		gap: var(--px40);
		justify-content: center;
		align-items: center;
		background: transparent;
		padding: 0;
		line-height: 1.6;
	  }
	  .card02_list .icoimg {
		  width: var(--px120);
		  height: var(--px120);
		  flex-shrink: 0;
		  overflow: hidden;
		  line-height: 0;
		  margin: 0;
	  }
	  .card02_list .icoimg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	  }
	  @media print, screen and (max-width: 768px) {
		.card02_list > li {
		  flex-direction: column;
		  padding: var(--px80) var(--px40);
		}
	  }
 }

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

.post {
	.card02_list.cardstyle02 > li {
		padding: 16px;
		background: var(--color-secondary-tint);
		@media screen and (max-width: 768px) {
			padding: 16px 16px 48px;
		}
	}
}

/*-----------------------------
以下アウトラインデザイン
------------------------------*/
.post {
	.card02_wrap {
		position: relative;
		margin: var(--px60) 0 0;
	}
	.card02_inner {
		max-width: 1600px;
		width: 94%;
		margin: 0 auto;
	}
	.card02_list > li {
		display: flex;
		gap: var(--px40);
		justify-content: center;
		align-items: center;
		width: 48.5%;
		background: transparent;
		padding: 0;
		margin-bottom: var(--rem60);
		line-height: 1.6;
		@media screen and (max-width: 1079px) {
			gap: var(--px20);
		}
	}
	.card02_list .icoimg {
		aspect-ratio: 1 / 1;
		width: 40%;
		height: auto;
		background: #fff;
		flex-shrink: 0;
		overflow: hidden;
		line-height: 0;
		margin: 0;
		@media print, screen and (max-width: 768px) {
			width: 100%;
		}
	}
	.card02_list .icoimg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.card02_list .txtarea {
		width: 60%;
		@media print, screen and (max-width: 768px) {
			width: 100%;
		}
		.linkBtn.linkBtn--arw {
			margin-top: var(--rem20);
		}
	}
	@media print, screen and (max-width: 768px) {
		.card02_list > li {
			flex-direction: column;
			padding: var(--px80) var(--px40);
		}
	}
	@media print, screen and (max-width: 414px) {
		.card02_list > li {
			width: 100%;
		}
	}
		
	/*---------txtstyle02 -----------*/
	.card02_list.cardstyle02 > li {
		.txtarea {
			.txtstyle02 {
				font-size: min(calc(3.4rem + (1vw - 1.92rem) * 0.7767), 3.4rem);
				font-weight: 500;
				line-height: 1.4;
				letter-spacing: .14em;
				text-align: center;
				margin: 0;
				@media screen and (max-width: 1079px) {
					font-size: var(--rem24);
				}
				@media screen and (max-width: 959px) {
					font-size: var(--rem18);
				}
				&:is(.txt_l) {
					text-align: left;
				}
			}
		}
	}
}



/*--------------------------------------------------
	button
--------------------------------------------------*/
.linkBtn, .post .linkBtn {
	background: var(--color-primary-tint);
	&:hover {
		background: var(--color-primary-shade);
	}
}
/* color */
.linkBtn.linkBtn_mod-01 {
	color: #fff;
	font-size: var(--rem18);
	font-weight: 700;
	letter-spacing: 0;
	max-width: 200px;
	background: var(--color-primary-tint);
	border-radius: 50vh;
	padding: 10px 10px 12px;
	box-shadow: 0px 8px 0px #9B7106;
	&::before, &::after {
		display: none;
	}
}

/* common */
.linkBtn.linkBtn--arw, .post .linkBtn.linkBtn--arw, a.linkBtn.linkBtn--arw {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
	font-size: var(--rem18);
    color: var(--color-font);
    line-height: 1.4;
    text-align: left;
    background: transparent;
	font-weight: 700;
    padding: min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) min(calc(65px + (1vw - 19.2px) * 1.6181), 65px) min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) 0;
    margin: var(--px40) auto 0;
	border: none;
    border-radius: 0;
    transition: all .3s;
	@media screen and (max-width: 1079px) {
		font-size: var(--rem16);
	}
	&:is(.size-large) {
		max-width: 350px;
		width: 100%;
	}
}
.post .linkBtn.linkBtn--arw::after, .linkBtn.linkBtn--arw::after, a.linkBtn.linkBtn--arw::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-font);
    border: none;
    margin-top: 0;
    position: absolute;
    bottom: -16px;
    top: unset;
    right: 0;
    transform: unset;
}
.linkBtn.linkBtn--arw:hover, .post .linkBtn.linkBtn--arw:hover, a.linkBtn.linkBtn--arw:hover {
	color: var(--color-primary-shade);
}
.linkBtn.linkBtn--arw .arw, .post .linkBtn.linkBtn--arw .arw, a.linkBtn.linkBtn--arw .arw {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	width: auto;
	height: auto;
    background: transparent;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .4s;
	transition: .4s;
}
.linkBtn.linkBtn--arw .arw::after, .post .linkBtn.linkBtn--arw .arw::after, a.linkBtn.linkBtn--arw .arw::after {
	content: "\f35a";
    color: var(--color-primary-tint);
    font-family: 'FontAwesome';
    font-size: min(calc(5rem + (1vw - 1.92rem) * 1.6181), 5rem);
    font-weight: 400;
	position: absolute;
	width: auto;
	height: auto;
	top: 50%;
	left: unset;
    right: 0;
	transform: translateY(-50%);
	transition: all .3s;
}
.linkBtn.linkBtn--arw:hover .arw, .post .linkBtn.linkBtn--arw:hover .arw, a.linkBtn.linkBtn--arw:hover .arw  {
	background: var(--color-primary);
    border-color: var(--color-primary);
}
.linkBtn.linkBtn--arw:hover .arw::after, .post .linkBtn.linkBtn--arw:hover .arw::after, a.linkBtn.linkBtn--arw:hover .arw::after {
	color: var(--color-primary-shade);
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 312px;
		max-height: 74px;
    }
    #header a.head_btn {
        color: #000;
        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 {
        background: var(--color-secondary-tint);
        &:hover {
            background: var(--color-primary-shade);
        }
    }
    #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;
        .note {
            font-size: var(--rem12);
        }
    }
    #header a.head_btn.mail_btn {
        color: var(--color-primary);
        font-size: var(--rem16);
        font-weight: 700;
        letter-spacing: .1em;
        font-feature-settings: 'palt' on;
        flex-direction: row;
        align-items: center;
        background: var(--color-primary-tint);
        padding-left: var(--rem36);
        padding-right: var(--rem36);
        &:hover {
            background: var(--color-primary-shade);
        }
    }
    #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(--rem16);
    }
	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 {
        b {
            color: var(--color-primary-tint);
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
        color: var(--color-primary-tint);
    }
    nav#mainNav ul li.current-menu-item a {
        &:hover {
            color: var(--header-color-primary-tint);
        }
    }
    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-tint);
        }
		nav#mainNav ul li.current-menu-item:hover a b, nav#mainNav ul li.current-menu-parent a:hover b {
			color: var(--header-color-primary-tint);
        }
    }
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
}

.spmenu #menu p {
    width: 100%;
}

/*------ヘッダー　レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 1710px) {
	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: 1.6rem;
	}

	#header .head_btn.mail_btn {
		font-size: 1.6rem;
	}

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

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

@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.2rem;
	}

	#header .head_btn.mail_btn {
		font-size: 1.2rem;
	}

	#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.head_btn.mail_btn {
        padding-left: var(--rem20);
        padding-right: var(--rem20);
    }

	#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 .footer__logo img {
    max-width: 329px;
    max-height: 89px;
    -o-object-fit: contain;
    object-fit: contain;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}
#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	.page-cta {
		display: none !important;
	}
}

/*-----------------------------
cta02_col2
------------------------------*/
.cta02 {
	position: relative;
	background: url(/wp-content/uploads/cta_bg_01.jpg.webp) no-repeat center / cover;
	padding: min(calc(18rem + (1vw - 1.92rem) * 3.8835), 18rem) 0 min(calc(20rem + (1vw - 1.92rem) * 6.4725), 20rem);
	z-index: 0;
	@media screen and (max-width: 768px) {
		padding: var(--rem120) 0;
	}
	.ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family03);
                font-size: min(calc(6.8rem + (1vw - 1.92rem) * 1.6828), 6.8rem);
                font-weight: 500;
                line-height: .9;
                letter-spacing: .1em;
				margin-bottom: 0;
				position: relative;
                &::first-letter {
                    color: var(--color-primary-tint);
                }
                &.color-white {
					color: #fff;
				}
            }
            .ttl--primary__ja {
                font-size: var(--rem30);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: .08em;
                &.color-white {
					color: #fff;
				}
            }
        }
    }
}
/* .cta02:before {
    content: "";
    background: #eee;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
} */
.cta02 .cta02_wrap {
	max-width: 1600px;
    width: 90%;
    margin: 0 auto;
	padding: 0;
	background: transparent;
	position: relative;
	z-index: 1;
}
.cta02 .ctabtnlist {
    justify-content: space-between;
	gap: var(--rem30);
    max-width: 1600px;
    margin: var(--rem80) auto 0 auto;
}
.cta02 .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
	background: #fff;
	border-radius: 50vh;
	&:first-child {
		box-shadow: 0px 8px 0px #9B7106;
	}
	&:last-child {
		box-shadow: 0px 8px 0px #5F5959;
	}
}
.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: 3rem;
	}
}
	
/*ボタン共通パーツ*/

.cta02 .infotxt {
	font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
	font-weight: 700;
	.note {
		font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
		margin-top: 12px;
	}
}
.cta02 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-size: var(--rem20);
}

	
/*電話ボタン*/
	
.cta02 .telnum, .cta02 .faxnum {
	font-size: var(--rem48);
	font-weight: 700;
	margin-bottom: 0;
	@media screen and (max-width: 1079px) {
		font-size: var(--rem36);
	}
}
.cta02 .faxnum {
	margin-top: 10px;
}
.cta02 a.telbtn {
    background: var(--color-primary-tint);
	border-radius: 50vh;
	color: #fff;
	.tel-box {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}
	
/*メールボタン*/
	
.cta02 .mailarea.item {
    background: #fff;
	border-radius: 50vh;
}
.cta02 a.mailbtn {
    background: var(--color-primary-tint);
    color: #fff;
	font-size: var(--rem20);
	font-weight: 700;
    display: flex;
    flex-direction: row;
	justify-content: center;
    max-width: 500px;
    width: 90%;
    border-radius: 0;
    padding: 20px;
    margin: 0 0 1rem 0;
}
.cta02 a.mailbtn {
    background: var(--color-primary-tint);
	color: #fff;
}
	
/*ボタンアイコン*/
	
.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';
	display: none;
}
.cta02 a.mailbtn::before {
	content: '\f0e0';
	font-size: var(--rem24);
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
#mainImg {
	display: none;
}
body:not(.home) .placeholder-class {
	display: none !important;
}
.slide_copy_sp {
	@media screen and (max-width: 768px) {
		margin-top: 10px;
	}
}
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
    /* CONTENT01 */
    #top_about {
        .front_contents.sec01 {
            padding: var(--rem72) 0 var(--rem72) min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
            background: var(--color-secondary);
			@media screen and (max-width: 1365px) {
				background: var(--color-secondary);
			}
			@media screen and (max-width: 768px) {
				padding-bottom: var(--rem80);
				padding: var(--rem72) var(--px40) var(--rem80);
			}
        }
        .column06 {
			width: 100%;
			max-width: 1600px;
			position: relative;
			&::after {
				display: block;
				content: "";
				aspect-ratio: 327 / 433;
				width: 20%;
				height: auto;
				background: url(/wp-content/uploads/top_about_02.png.webp) no-repeat center / contain;
				position: absolute;
				right: 0;
				bottom: 0;
				transform: translateX(50%);
			}
			@media screen and (max-width: 1840px) {
				&::after {
					width: 17%;
					bottom: -1%;
					transform: unset;
				}
			}
			@media screen and (max-width: 1080px) {
				&::after {
					width: 12%;
					right: 5%;
				}
			}
            .column06_wrap {
                align-items: center;
            }
            .imgarea {
				display: flex;
				flex-wrap: wrap;
				gap: var(--rem40) var(--px30);
                width: 40%;
                aspect-ratio: unset;
				@media screen and (max-width: 768px) {
					width: 100%;
				}
				img {
					width: calc((100% - var(--px30)) / 2);
					height: auto;
					@media screen and (max-width: 768px) {
						width: calc((100% - (var(--px30) * 3)) / 4);
					}
				}
            }
            .txtarea {
                width: 60%;
                background: transparent;
                margin: 0 auto 0 0;
                padding-top: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
				@media screen and (max-width: 768px) {
					width: 100%;
				}
				.txtinner {
					max-width: 580px;
				}
            }
        }
    }
    /* CONTENT02 */
    #top_service {
        .front_contents.sec02 {
            padding: var(--rem80) 0 var(--rem120);
            &::before, &::after {
                display: block;
                content: "";
                width: 100%;
                height: var(--rem120);
                position: absolute;
                z-index: 0;
            }
            &::before {
                top: 0;
                background: #fff;
            }
            &::after {
                bottom: 0;
                background: #45B9B6;
            }
            .imgarea {
                width: 50%;
                &:has(.imgarea_figure) {
                    height: 100%;
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 1;
					@media screen and (max-width: 1023px) {
						height: 85%;
						top: 50%;
						transform: translateY(-50%);
					}
					@media screen and (max-width: 768px) {
						display: flex;
						gap: var(--px80);
						width: 100%;
						height: auto;
						position: relative;
						top: 0;
						transform: unset;
					}
                }
                .imgarea_figure {
                    aspect-ratio: 500 / 780;
                    position: absolute;
                    z-index: 1;
					@media screen and (max-width: 1400px) {
						transform: translateY(-36%);
					}
					@media screen and (max-width: 960px) {
						transform: translateY(-18%);
					}
					@media screen and (max-width: 768px) {
						transform: unset;
					}
                    &:first-child {
						width: 50%;
                        bottom: 0;
                        left: -4.7%;
						@media screen and (max-width: 1400px) {
							width: 45%;
							left: 3%;
							@media screen and (max-width: 768px) {
								position: relative;
								top: calc(var(--rem40) * -1);
							}
						}
                    }
                    &:last-child {
						width: 50%;
                        right: 0;
						bottom: 10%;
						@media screen and (max-width: 1400px) {
							width: 45%;
						}
						@media screen and (max-width: 768px) {
							position: relative;
							top: var(--rem80);
                            right: 0;
						}
                    }
                }
            }
        }
        .column06 {
			background: linear-gradient(to bottom, #fff 20%, var(--color-secondary) 20%);
			@media screen and (max-width: 1500px) {
				background: linear-gradient(to bottom, #fff 10%, var(--color-secondary) 10%);
			}
			@media screen and (max-width: 1500px) {
				background: var(--color-secondary);
			}
            .imgarea {
                width: 50%;
				@media screen and (max-width: 768px) {
					display: none;
				}
                &:has(.imgarea_figure) {
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 1;
                }
            }
            .txtarea {
                width: 50%;
                background: transparent;
                margin: 0 auto 0 0;
                padding-top: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
				@media screen and (max-width: 768px) {
					width: 100%;
				}
            }
        }
    }
	/* CONTENT03 */
	#top_product {
		padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) 0 var(--rem60);
		@media screen and (max-width: 768px) {
			padding: 0 0 var(--rem60);
		}
		&.bg_wide {
			&::before {
				background: url(/wp-content/uploads/top_bg_01.jpg.webp) no-repeat top center / cover;
			}
			&::after {
				display: block;
				content: "";
				width: 100vw;
				height: min(calc(30rem + (1vw - 1.92rem) * 9.7087), 30rem);
				background: #fff;
				margin-left: calc(((100vw - 100%) / 2)* -1);
    			margin-right: calc(((100vw - 100%) / 2)* -1);
				position: absolute;
				bottom: 0;
				z-index: -1;
			}
		}
		.card02_inner {
			width: 100%;
		}
	}
	/* loop-slide */
	#top_loop-slide {
		padding-bottom: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
	}
	/* CONTENT04 */
	#top_information {
		&.bg_wide {
			&::before {
				background: linear-gradient(90deg, #F5F5F5 0%, #CADDD7 100%);
			}
		}
		.fullwide03 {
			background: url(/wp-content/uploads/bg_dotted_01.png.webp) repeat center;
		}
	}
	/* 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 {
		background: var(--color-primary-tint);

	}
	.post .time, .postlist .time, .post2b .time, .post4b .time {
		line-height: 1.2 !important;
	}
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        color: #fff;
        font-size: var(--rem40);
        font-family: var(--font-family01);
        font-weight: 700;
    }
    &.post, .post {
		.ttl {
			&.ttl--primary {
				margin-bottom: var(--rem60);
			}
		}
		p {
			letter-spacing: 0;
		}
        ul {
            li {
                font-size: var(--rem16);
				line-height: 1.7;
            }
        }
		.table_mod-01 {
			border: none;
			th, td {
				color: var(--color-font);
				background: transparent;
				border-left: none;
				border-right: none;
				border-color: #A7D6A7;
			}
			th {
				width: 7em;
			}
		}
        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 {
			background: var(--color-primary-shade);
			color: #fff;
            font-weight: 700;
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
    }
	.post .time, .postlist .time, .post2b .time, .post4b .time {
		background: var(--color-primary-tint);
	}
}

/*================================================
					会社概要
================================================*/
.googlemap {
	padding-bottom: 27%;
	@media screen and (max-width: 768px) {
		padding-bottom: 45%;
	}
}

/*================================================
					事業内容
================================================*/
/*-------------------------------------------
 teleco_v1
------------------------------------------- */
.teleco_v1 {
	align-items: center;
}
.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: 0 var(--rem28) 0 0;
}
@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: 100%;
	}
}
.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;
	}
}

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