@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=Marcellus&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #252524;
	--color-primary: #D6C6A7;
	--color-primary-shade: #968b75;
	--color-primary-tint: #e2d7c1;
	--color-secondary: #F5F5F5;
	--color-secondary-tint: #f8f8f8;
	--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: #D6C6A7;
	--header-color-primary-shade: #968b75;
	--header-color-primary-tint: #e2d7c1;
	/*------▼フッター設定▼------*/
	--footer-background: #D6C6A7;
	--footer-color-font: #111;
	--footer-color-primary: #111;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Marcellus", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				margin: 0.3em auto 0;
            }
            .ttl--primary__en {
                color: var(--color-font);
				font-family: var(--font-family03);
                font-size: min(calc(4.6rem + (1vw - 1.92rem) * 1.4887), 4.6rem);
                font-weight: 400;
                line-height: 1.4;
				position: relative;
            }
            .ttl--primary__ja {
				color: var(--color-primary);
                font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
                font-weight: 500;
                line-height: 1.4;
				letter-spacing: .1em;
            }
			&:is(.none-border) {
				&::after {
					display: none;
				}
			}
        }
    }
	.heading_mod-01 {
		color: #fff;
		font-size: var(--rem30);
		font-weight: 700;
		padding: 4px var(--px18);
		border: none;
		background: var(--color-primary);
		margin-bottom: var(--rem40);
	}
	.heading_mod-02 {
		font-size: var(--rem30);
		font-weight: 700;
		border: none;
		padding: 0 0 0 20px;
		margin: var(--px40) auto var(--px24);
		&::before {
			content: '';
			position: absolute;
			width: 10px;
			height: 100%;
			background: var(--color-primary);
			top: 0;
			left: 0;
		}
		&::after {
			display: none;
		}
	}
	.anchorLinks {
		& > ul {
			display: flex;
			align-items: stretch;
			justify-content: center;
			gap: var(--rem30);
			margin-top: var(--rem80);
			@media screen and (max-width: 1200px) {
				flex-wrap: wrap;
				gap: var(--rem24) var(--rem30);
			}
			@media screen and (max-width: 768px) {
				margin-top: var(--rem40);
				margin-bottom: var(--rem80);
			}
			@media screen and (max-width: 414px) {
				flex-wrap: wrap;
				gap: var(--rem24);
			}
			& > li {
				width: 100%;
				max-width: 250px;
				@media screen and (max-width: 1200px) {
					max-width: 260px;
				}
				@media screen and (max-width: 414px) {
					width: calc((100% - var(--rem24)) / 2);
				}
				&:last-child {
					@media screen and (max-width: 414px) {
						width: 100%;
						max-width: unset;
					}
				}
				& > a {
					display: block;
					color: #fff;
					font-size: var(--rem16);
					font-weight: 700;
					letter-spacing: .1em;
					padding: 10px 5px;
					background: var(--color-primary);
					border: 1px solid var(--color-primary);
					text-align: center;
					transition: all .3s;
					&:hover {
						color: var(--color-primary);
						background: #fff;
					}
				}
			}
		}
	}
    p {
		font-size: var(--rem14);
        line-height:2;
    }
    .color-white {
        color: #fff;
    }
    .color-yellow {
        color: #EFF316;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
    .m-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
	.marker.brown {
		background: linear-gradient(transparent 60%, rgba(252, 200, 170, .34) 60%);
	}
	.worksFIgure {
		display: flex;
		gap: min(calc(9rem + (1vw - 1.92rem) * 2.9126), 9rem);
		@media screen and (max-width: 560px) {
			flex-direction: column;
		}
		& > div {
			width: 50%;
			@media screen and (max-width: 560px) {
				width: 100%;
			}
			&:first-child > div:has(img) {
				position: relative;
				&::after {
					display: block;
					content: "";
					width: var(--px40);
					height: var(--px80);
					background: url(/wp-content/uploads/icon_arrow_01_pink.png.webp) no-repeat center / contain;
					position: absolute;
					top: 50%;
					right: calc(min(calc(9rem + (1vw - 1.92rem) * 2.9126), 9rem) / -4);
					transform: translate(100%, -50%);
				}
				@media screen and (max-width: 560px) {
					&::after {
						margin-left: auto;
						margin-right: auto;
						top: unset;
						left: 0;
						right: 0;
						bottom: calc(var(--px80) * -1);
						transform: rotate(90deg) translateX(50%);
					}
				}
			}
			& > div {
				color: var(--color-primary);
				font-size: min(calc(2.5rem + (1vw - 1.92rem) * 0.6472), 2.5rem);
				font-weight: 700;
				text-align: center;
				margin-bottom: var(--rem14);
			}
			img {
				box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
				object-fit: cover;
			}
		}
	}
	.worksFIgure-2 {
		display: flex;
		gap: var(--px20);
		margin-bottom: var(--rem60);
		@media screen and (max-width: 560px) {
			flex-wrap: wrap;
		}
		& > img {
			width: calc((100% - (var(--px20) * 3)) / 4);
			aspect-ratio: 293 / 206;
			box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
			@media screen and (max-width: 560px) {
				width: calc((100% - var(--px20)) / 2);
			}
		}
	}
}

/**/
.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; }
.w-full {
	width: 100%;
}
.max-w {
	margin-left: auto;
	margin-right: auto;
	&.max-w--240 {
		width: 100%;
		max-width: 240px;
		
	}
	&.max-w--400 {
		max-width: 400px;
		@media screen and (max-width: 768px) {
			max-width: 240px;
		}
		
	}
	&.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: 120px;
    margin-top: -120px;
}

/* POST 施工事例 */
.post4b img {
	aspect-ratio: 380 / 260;
    max-height: 260px;
}
.post_link, .post2b_link, .post4b_link {
    color: var(--color-font);
}
.post_link a, .post2b_link a, .post4b_link a {
    color: var(--color-font);
}

/*-----------------------------
column_01
------------------------------*/
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.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: 720px;
}
.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;
}

/*-----------------------------
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;
  }
  .post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
  }
  .post .card01_list .txtstyle02, .card01_list .txtstyle02 {
	font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
	font-weight: 700;
	text-align: center;
	border: none;
	margin: 0 0 1rem
  }
	
  /*---------column04-----------*/
	
  .col4_list {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
	  gap: var(--px40);
  }
  .col4_list {
	  position: relative;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
  }
  .col4_list::before {
	content:"";
	display: block;
	width: calc(100% / 4 - var(--px40));
	order: 1;
  }
  .col4_list:after {
	  content: "";
	  display: block;
	  width: calc((100% - (var(--px40) * 3)) / 4);
	order: 2;
  }
  .col4_list > li {
	display: flex;
	flex-direction: column;
	width: calc((100% - (var(--px40) * 3)) / 4);
	border: 2px solid #ddd;
	padding: var(--rem12) var(--px16) var(--rem30);
	.txtarea {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		& > p:not(.txtstyle02) {
			flex-grow: 1;
		}
	}
  }
	
  @media print, screen and (max-width: 1240px) {
	.col4_list > li {
	  width: calc((100% - (var(--px40)* 1)) / 2);
	}
  }
  @media print, screen and (max-width: 600px) {
	.col4_list > li {
	  width: 100%;
	}
  }

/*-----------------------------
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: center;
	z-index: 20;
}
.column05_wrap + .column05_wrap {
	margin-top: calc(100px + 70px);
}
.column05 .imgarea {
	position: relative;
	aspect-ratio: 1158 / 517;
	overflow: hidden;
	width: 60%;
}
.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(--px80) var(--px40);
	margin: 0 auto 0 -10%;
	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;
}

/*--------------------------------------------------
	button
--------------------------------------------------*/
.linkBtn {
	&:is(.linkBtn--square) {
		position: relative;
		display: inline-block;
		width: 100%;
		max-width: 240px;
		color: var(--color-font);
		font-weight: 700;
		line-height: 1.8;
		letter-spacing: .1em;
		background: transparent;
		padding: 20px 50px 20px 10px;
		border-radius: 0;
		border: 1px solid var(--color-font);
		&:hover {
			color: var(--color-font);
		}
		&::before {
			display: block;
			content: '';
			position: absolute;
			top: 50%;
			right: 20px;
			width: 54px;
			height: 1px;
			background: var(--color-font);
		}
		&::after {
			display: block;
			content: '';
			position: absolute;
			top: 50%;
			right: 20px;
			width: 10px;
			height: 1px;
			background: var(--color-font);
			border-right: none;
			border-bottom: none;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
			margin-top: -4px;
			transition: all .3s;
		}
	}
	&:is(.linkBtn--fill) {
		width: 100%;
		max-width: 240px;
		color: #fff;
		background-color: var(--color-primary);
		border-radius: 0;
		padding: 20px 5px;
		&::before, &::after {
			display: none;
		}
	}
}
.w-full .w50 .linkBtn--fill {
	max-width: none;
}
div:has( > .linkBtn--fill) {
	width: 100%;
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 322px;
		max-height: 64px;
	}
	#header ul.header__contact li {
		display: flex;
		align-items: center;
		& + & {
			margin-left: var(--px16);
		}
		&:last-child {
			margin-right: var(--px20);
		}
	 }
    #header a.head_btn {
        color: var(--header-color-font);
		height: calc(100% - 40px);
        background: var(--color-primary);
        padding-left: var(--rem24);
        padding-right: var(--rem24);
        &:hover {
            background-color: var(--color-primary-tint);
        }
    }
    #header a.head_btn.tel_btn {
        background: var(--color-secondary);
		margin-left: var(--px30);
        &:hover {
            background: var(--color-primary-tint);
        }
		.tel_btn__info {
			.note {
				font-weight: 400;
				b {
					font-weight: 400;
				}
			}
		}
    }
    #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: var(--rem16);
        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(--rem20);
        font-weight: 400;
        margin-bottom: -2px;
    }
    #header a.head_btn.mail_btn {
		color: var(--header-color-font);
        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 {
		color: #fff;
		font-size: var(--rem20);
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.mail_btn span {
		font-family: var(--font-family03);
        font-size: var(--rem16);
		font-weight: 400;
		letter-spacing: .2em;
    }
	nav#mainNav ul li:has(> .sub-menu) {
        &:hover {
            background: var(--color-primary);
            a b {
                color: #000;
            }
        }
    }
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 400;
		letter-spacing: .2em;
    }
    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 {
		font-family: var(--font-family03);
	}
    nav#mainNav ul li a:hover {
        background: var(--color-primary);
        b {
            color: #000;
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
        color: #000;
    }
    nav#mainNav ul li.current-menu-item a {
		font-family: var(--font-family03);
		letter-spacing: .2em;
        background: transparent;
        &:hover {
            background: var(--color-primary);
        }
    }
    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 a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
			color: var(--header-color-font);
		}
    }
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
	.sticky-header #header-layout {
		height: 100px;
	}
}

/*------ヘッダー　レスポンシブ
--------------------------------------------*/
@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.4rem;
	}

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

	#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(--px40);
    .footer__logo img {
        width: 100%;
		max-width: 308px;
		max-height: 100px;
    }
}
/*--------------------------------------------
FOOTER01
--------------------------------------------*/

/* ----全体LAYOUT調整----*/

.footer__inner {
	width: 94%;
	margin: 0 auto;
	padding-bottom: var(--px40);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 5%;
    border-bottom: solid 1px;
}
@media print, screen and (max-width: 768px) {
	.footer__inner {
		flex-direction: column;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

/* ----------------------------
right
----------------------------*/

#footer .footnav ul {
    justify-content: flex-end;
}
@media print, screen and (max-width: 768px) {
	#footer .footnav ul {
		justify-content: center;
		margin-top: var(--px40);
	}
}

/*footer navi ico*/

#footer .footnav ul > li {
	position: relative;
	line-height: 1.4;
	padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 25px; /* 16-9px、15-8px (1920-375) */
	margin-bottom: 10px;
}
#footer .footnav ul > li::before {
    left: 0;
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 0;
    background: transparent;
}

#footer .footnav ul > li::after {
	content: none;
}

/* ----------------------------
left
----------------------------*/

#footer .footer__logo:not(:last-child) {
    margin: 0;
    text-align: left;
}
.leftarea .logoare {
    display: flex;
    flex-direction: column;
    gap: var(--px14);
    line-height: 1;
}
.footer__catchphrase {
    line-height: 1.2;
	text-align: left;
}
@media print, screen and (max-width: 768px) {
	#footer .footer__logo:not(:last-child) {
		text-align: center;
	}
	.footer__catchphrase {
		text-align: center;
	}
}

/* ----------------------------
SNSアイコン
----------------------------*/

/*LAYOUT調整*/

#footer .socialicon ul, .socialicon ul {
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
#footer .socialicon ul li, .socialicon ul li {
    padding: 0;
}
@media print, screen and (max-width: 768px) {
	#footer .socialicon ul, .socialicon ul {
		justify-content: center;
	}
}

/*アイコンサイズ調整*/

#footer .socialicon .fa-facebook:before, #footer .socialicon .fa-twitter:before, #footer .socialicon .fa-youtube:before, #footer .socialicon .fa-instagram:before, #footer .socialicon .fa-x-twitter:before, #footer .socialicon .fa-line:before, #footer .socialicon .fa-tiktok:before {
    font-size: var(--rem24);
}
#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	.page-cta {
		display: none !important;
	}
}
/*-----------------------------
cta01_col2
------------------------------*/
.cta01 {
	padding: var(--rem120) 0;
	position: relative;
	z-index: 0;
	&.bg_wide::before {
		background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
	}
	.ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
            }
            .ttl--primary__en {
                color: var(--color-font);
				font-family: var(--font-family03);
                font-size: min(calc(4.6rem + (1vw - 1.92rem) * 1.4887), 4.6rem);
                font-weight: 400;
                line-height: 1.4;
				position: relative;
            }
            .ttl--primary__ja {
				color: var(--color-primary);
                font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
                font-weight: 500;
                line-height: 1.4;
				letter-spacing: .1em;
            }
			&:is(.none-border) {
				&::after {
					display: none;
				}
			}
        }
    }
}
.cta01 .cta01_wrap {
	max-width: 1600px;
    width: 100%;
    margin: 0 auto;
	background: rgba(255, 255, 255, 0.96);
    padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) var(--px80) var(--rem120);
	@media screen and (max-width: 768px) {
		padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) var(--px40) var(--rem120);
	}
}
body:not(.home) {
	.cta01 .cta01_wrap {
		width: 90%;
	}
}
.cta01 .ctabtnlist {
    justify-content: space-between;
	gap: var(--px30);
    max-width: 960px;
    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) var(--px16);
    text-align: center;
    box-sizing: border-box;
    color: #333;
	background: #fff;
    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(--rem16);	
	font-weight: 700;
	.note {
		font-size: var(--rem16);
		font-weight: 700;
	}
}
	
/*電話ボタン*/
	
.cta01 .telnum {
	font-size: var(--rem36);
	font-weight: 500;
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: #fff;
	border: 2px solid #333;
}
	
/*メールボタン*/
	
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	.infotxt {
		font-size: var(--rem18);
		font-weight: 700;
	}
}
	
/*ボタンアイコン*/
	
.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);
}
.cta01 .telnum::before {
	content: '\f3cd';
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
}
/* POST */
.top_news {
	max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
	&.bg_wide::before {
		background: var(--color-secondary);
	}
	.front_contents {
		padding-bottom: min(calc(18rem + (1vw - 1.92rem) * 3.8835), 18rem);
		@media screen and (max-width: 560px) {
			padding-bottom: var(--rem120);
		}
	}
}
.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);

}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	line-height: 1.2 !important;
}
/* CONTENT01 */
#top_service {
	&.bg_wide::before {
		background: var(--color-secondary);
	}
	.front_contents {
		padding-top: 0;
		@media screen and (max-width: 560px) {
			padding-bottom: var(--rem60);
		}
	}
	.column01 {
		margin-top: 0;
		.column01_wrap {
			width: 100%;
		}
		.imgarea {
			width: 47vw;
			height: 135%;
			aspect-ratio: 909 / 440;
			position: absolute;
			top: 50%;
			right: -5vw;
			transform: translateY(-50%);
			@media screen and (max-width: 560px) {
				width: 100%;
				height: auto;
				position: static;
				transform: unset;
			}
		}
		.txtarea {
			width: 60%;
			max-width: 960px;
			position: relative;
			left: -4vw;
			z-index: 1;
			transition: all .3s;
			&:hover {
				background: #f7f4ed;
			}
			@media screen and (max-width: 560px) {
				width: 100%;
				left: 0;
			}
		}
	}
	.card01_wrap {
		padding-top: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
		padding-bottom: var(--rem60);
		&.bg_wide::before {
			background: #fff;
		}
	}
	.card01_inner {
		width: 100%;
		.txtarea {
			& > div:is(.max-w--240) {
				display: flex;
				& > .w50 {
					margin-bottom: 0;
				}
			}
		}
	}
}
/* CONTENT02 */
#top_company {
	.front_contents {
		padding: 0;
	}
	.column05 {
		margin-top: 0;
		.txtarea {
			transition: all .3s;
			&:hover {
				background: #f7f4ed;
			}
		}
	}
}
/* INSTAGRAM */
#top_instagram {
	padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) 0;
	@media screen and (max-width: 768px) {
		padding: var(--rem40) 0 min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
	}
}
/* WORKS */
#top_works {
	padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) 0;
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
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: 400;
    } */
    &.post, .post {
        ul {
            li {
                font-size: var(--rem16);
            }
        }
        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);
			border-color: #fff;
        }
		table td {
			border-color: #fff;
			border-right: 1px solid #fff;
		}
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        .anchorLink-view {
            padding-top: 120px;
            margin-top: -120px;
        }
		.postlist {
			&:is(.postlist--mod_01) {
				.date {
					width: 7.5em;
				}
				.ttls {
					width: auto;
					margin-top: 0;
					margin-left: 1em;
				}
			}
		}
    }
}

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

/*--見出し--------------------------------------------*/
	
.post .sub_company h2 {
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 600;
	text-align: left;
	letter-spacing: .2rem;
	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 .sub_company h2::before {
	content: none;
	position: relative;
	width: auto;
	height: auto;
	top: auto;
	left: auto;
}
.post .sub_company h2::after {
	content: '';
	position: relative;
	visibility: visible;
	display: block;
	width: 2.2em;
	height: 2px;
	background: var(--color-primary);
	margin: 0.6em auto 0;
	margin-right: auto;
	margin-left: 0;
}
.post .sub_company h2:first-child {
	margin-top: 0;
}

/*--テーブル--------------------------------------------*/

.post table.table_style02 , .post table.table_style02 th, .post table.table_style02 td {
	border-width: 1px 0;
	border-color: var(--color-table-border);
}
.post table.table_style02 {
	margin: min(calc(30px + (1vw - 19.2px) * 0.6472), 30px) auto;/* 30-20px (1920-375) */
}
.post table.table_style02 th, .post table.table_style02 td {
	font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
	padding: min(calc(20px + (1vw - 19.2px) * 0.5580), 20px) min(calc(15px + (1vw - 19.2px) * 0.3236), 15px);/* 20-15px 15-10px (1920-375) */
}
.post table.table_style02 th {
	width: 25%;
	font-weight: 600;
}
.post table.table_style02:first-child {
	margin-top: 0;
}
.post table.table_style02:last-child {
	margin-bottom: 0;
}

/*--list--------------------------------------------*/

.post .list_style01 li {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	flex-shrink: 0;
	border-bottom: solid 1px #ddd;
}
.post .history_style01 li .head {
	width: 25%;
	padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/* 30-20px 15-10px (1920-375) */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.post .list_style01 li .body {
	padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/* 30-20px 15-10px (1920-375) */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.post .list_style01 li:nth-child(odd) {
	background: #eee;
}
@media only screen and (max-width: 640px) {
	.post .list_style01 li {
		flex-direction: column;
	}
	.post .list_style01 li .head {
		width: 100%;
		padding-bottom: 0;
	}
}	

/*--幅フル100%背景色--------------------------------------------*/

.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px); 
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: #fafafa;
}

/*--幅フル100%--------------------------------------------*/

.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}
/*================================================
					事業内容
================================================*/
.page-id-136 {
	.card01_inner {
		width: 100%;
		.txtarea {
			& > div:is(.max-w--240) {
				display: flex;
				& > .w50 {
					margin-bottom: 0;
				}
			}
		}
	}
}
/*-------------------------------------------
 teleco_v1
------------------------------------------- */
.teleco_v1 {
	@media screen and (max-width: 768px) {
		margin-bottom: var(--rem80);
		&:last-child {
			margin-bottom: 0;
		}
	}
}
.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(--rem28) var(--rem28) var(--rem80);
	@media screen and (max-width: 768px) {
		padding: var(--rem28);
	}
	h3 {
		width: 100%;
		margin-left: 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: 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;
		margin-bottom:0;
	}
}