@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
	--base_font_family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	--base_font_color: #000;
	--base_green:#008300;
	--base_navy:#3C4354;
	--base_black:#000000;
	--c_sec_space:100px;
	--c_contents_space:80px;
	--c_block_space:40px;
	--c_duration:0.4s;
	--c_hover_opa:0.6
}

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

input,
select,
textarea{
	font-family: var(--base_font_family);
	color:var(--base_black);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-feature-settings: 'palt';
	touch-action: manipulation;
	resize: none;
	display: block;
}

button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	color: var(--base_font_color);
	font-size: 16px;
	font-family: var(--base_font_family);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: clip;
}

.grecaptcha-badge { visibility: hidden; }

a{
	color: inherit;
}

main{
	padding-top: 100px;
}

section{
	position: relative;
	padding-top: var(--c_sec_space);
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.c_hover_opa{
	transition-duration: var(--c_duration);
}


@media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: var(--c_hover_opa);
	}
	
}


/*
------------------------------------
共通パーツ
------------------------------------
*/

.container{
	width: 92%;
	max-width: 1000px;
	margin-inline: auto;
}


/*下線付きの見出し*/
.c_sec_head{
    text-align: center;
    width: fit-content;
    min-width: min(100% , 600px);
    margin-inline: auto;
    padding:0 24px 20px;
    border-bottom:1px solid var(--base_black);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/*サブ見出し*/
.c_sub_head{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.67;
    letter-spacing: 0.05em;
}
.c_sub_head.center{
    text-align: center;
}

/*サブ説明*/
.c_sub_detail {
	font-size: 12px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.6px;
}

.c_sub_detail:first-of-type {
	margin-top: 10px;
}


/*特長のリスト*/
.c_feature_list{
    margin-top: var(--c_block_space);
    width: fit-content;
    margin-inline: auto;
}

.c_feature_list .feature_line{
    position: relative;
    counter-increment: cnt;
}
.c_feature_list .feature_line::before{
    content: counter(cnt)"";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border:1px solid var(--base_black);
	font-size: 25px;
	line-height:1;
    padding-bottom: 4px;
	position: absolute;
	left:0;
	top:-8px;
}

.c_feature_list .feature_line + .feature_line{
    margin-top: 48px;
}

.c_feature_list .feature_text_block{
    padding-left: 100px;
}

.c_feature_list .feature_title{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.67;
    letter-spacing: 0.05em;
}

.c_feature_list .feature_text{
    margin-top: 20px;
    line-height: 1.875;
    letter-spacing: 0.05em;
}

/*サイズ：単体画像ブロック*/
.c_img_block{
	margin-top: var(--c_contents_space);
}
.c_img_block_inner{
	margin-top: var(--c_block_space);
}
.c_img_block_inner:first-child{
	margin-top: 0;
}

/*サイズ：2カラム横並び*/
.c_flex_cols{
	margin-top: var(--c_block_space);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.c_flex_cols_img{
	margin-top: var(--c_block_space);
}
.c_flex_cols_img:first-child{
	margin-top: 0;
}


/*施工写真*/

.c_construction_photo_section{

}

.c_construction_photo_section .photo_list{
	margin-top: var(--c_block_space);
	display: grid;
	grid-template-columns: repeat(2, 300px);
	gap:24px calc(20 / 1000 * 100%);
	justify-content: center;
}

.c_construction_photo_section .photo_img{
	margin-bottom: 10px;
}

/*施工写真グループ（タイトル + 複数枚セット）*/
.c_construction_photo_section .photo_group{
	margin-top: 24px;
	text-align: center;
}

.c_construction_photo_section .photo_group .c_sub_head{
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.8px;
}

.c_construction_photo_section .photo_group .photo_list{
	margin-top: 14px;
}

.c_construction_photo_section .photo_group .photo_img{
	margin-top: 0;
}

/*施工例*/

.c_construction_example_section{

}

.c_construction_example_section .example_list{
	margin-top: var(--c_block_space);
	display: grid;
	grid-template-columns: repeat(2, 300px);
	gap:24px calc(20 / 1000 * 100%);
	justify-content: center;
}

.c_construction_example_section .example_img{
	margin-bottom: 10px;
}

.c_construction_example_section .c_sub_detail{
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.7px;
}


/*
------------------------------------
ヘッダー
------------------------------------
*/


header{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 100;
	background-color: #fff;
}

header .header_inner{
	padding-inline: min(40px , calc(40 / 1440 * 100vw));
}

header .header_flex{
	height:100px ;
	padding:16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:12px;
}

header .header_logo{
	display: flex;
	align-items: center;
	gap:min(24px , calc(24 / 1440 * 100vw));
}

header .header_logo01{
	width:250px;
}
header .header_logo02{
	width:160px;
}

header .header_right{
	display: flex;
	align-items: center;
	gap:min(24px , calc(24 / 1440 * 100vw));
}

header .header_parent_menu{
	display: flex;
	align-items: center;
	gap:min(24px , calc(24 / 1440 * 100vw));
	color:var(--base_black);
}

header .header_parent_item{
	position: relative;

}

header .header_parent_link{
	font-weight: 700;
	cursor: pointer;
	transition-duration:var(--c_duration);
}

header a.header_parent_link{
	position: relative;
}

header a.header_parent_link::after{
	content:'';
	width:100%;
	height:2px;
	border: 2px;
	background-color: var(--base_green);
	position: absolute;
	left:0;
	top:calc(100% + 3px);
	transition-duration: var(--c_duration);
	transform-origin: left;
	transform: scaleX(0);
}

@media (any-hover: hover) {
	header a.header_parent_link:hover{
		color:var(--base_green);
	}

	header a.header_parent_link:hover::after{
		transform: scaleX(1);
	}
}

header .header_contact{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height:40px;
	width:144px;
	border-radius: 9999px;
	background-color: var(--base_green);
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	transition-duration: var(--c_duration);
	border:1px solid var(--base_green);
}
@media (any-hover: hover) {
	header .header_contact:hover{
		background-color: #fff;
		color:var(--base_green);
	}
}

header .header_parent_item:has(.header_child_menu){
	display: flex;
	align-items: center;
	gap:8px;
}

header .header_parent_item:has(.header_child_menu)::after{
	content:'';
	width:11px;
	aspect-ratio: 1 / calc(5.5 / 11);
	background-image: url('../img/common/icon_angle_bottom_black.svg');
	flex-shrink: 0;
	transition-duration: var(--c_duration);
}

header .header_parent_item.active .header_parent_link{
	color:var(--base_green);
}
header .header_parent_item.active::after{
	transform: rotateZ(180deg);
	background-image: url('../img/common/icon_angle_bottom_green.svg');
}

header .header_child_area{
	position: absolute;
	top:0;
	left:-16px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition-duration: var(--c_duration);
}

header .header_parent_item.active .header_child_area{
	top:calc(100% + 12px);
	opacity: 1;
	pointer-events: auto;
}

header .header_child_frame{
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.30);
	padding:16px;
}

header .header_child_item + .header_child_item{
	margin-top: 16px;
}

header .header_child_link{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:8px;
	transition-duration: var(--c_duration);
}

header .header_child_link::after{
	content:'';
	flex-shrink: 0;
	width:5px;
	aspect-ratio: 1 / calc(10 / 5);
	background-image: url('../img/common/icon_angle_right_black.svg');
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	header .header_child_link:hover{
		color:var(--base_green);
		color:#008300;
	}
	header .header_child_link:hover::after{
		transform: translateX(6px);
		background-image: url('../img/common/icon_angle_right_green.svg');
	}
}


/*
------------------------------------
フッター
------------------------------------
*/

footer{
	background-color: var(--base_navy);
	padding-top: 40px;
	padding-bottom: 8px;
	color: #FFF;
}

footer .footer_inner{
	width: 92%;
	max-width: 1200px;
	margin-inline: auto;
}

footer .footer_logo{
	display: block;
	max-width: 304px;
}

footer .footer_flex{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:16px;
}

footer .footer_banner_area{
	display: flex;
	align-items: flex-start;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:calc(40 / 608 * 100%);
	width:calc(608 / 1200 * 100%);
	flex-shrink: 0;
}



footer .footer_nav{
	
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap:64px;
}

footer .footer_parent_menu{

}

footer .footer_parent_item + .footer_parent_item{
	margin-top: 24px;
}

footer .footer_parent_link{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:16px;
	
	font-weight: 700;
	letter-spacing: 0.05em;
}

footer .footer_parent_link::after{
	content:'';
	width:6px;
	aspect-ratio: 1 / calc(11 / 6);
	flex-shrink: 0;
	background-image: url('../img/common/icon_angle_right_white.svg');
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	footer .footer_parent_link:hover::after{
		transform: translateX(6px);
	}
}

footer .footer_copy{
	margin-top: 40px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}



/*
------------------------------------
製品ラインナップ
------------------------------------
*/

.c_lineup_section{
	margin-top: 180px;
	padding-top: 0;
	--base_lineup_color:var(--base_green);
}

body.top_body .c_lineup_section.--top{
	margin-top: 0;
	--base_lineup_color:var(--base_navy);
}

body.top_body .c_lineup_section.--bottom{
	display: none;
}

.c_lineup_section .sec_head{
	height:100px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 16px;
	padding-top: 24px;
	color:#fff;
	background-color: var(--base_lineup_color);
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.c_lineup_section .lineup_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom:2px solid var(--base_navy);
}

.c_lineup_section .lineup_block{
	min-height: 250px;
	position: relative;
	padding:56px 16px 24px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background-color: #fff;
}

.c_lineup_section .lineup_block + .lineup_block{
	border-left:2px solid var(--base_navy);
}

.c_lineup_section .lineup_num{
	width:86px;
	height:43px;
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 4px;
	background-color: var(--base_lineup_color);
	color:#fff;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	z-index: 4;

}

.c_lineup_section .lineup_block::before{
	content:'';
	width:100%;
	height:100%;
	background-color: rgba(237, 237, 237, 1);
	position: absolute;
	top:0;
	left:0;
	transition-duration: var(--c_duration);
	transform-origin: left;
	transform:scaleX(0)
}
.c_lineup_section .lineup_contents{
	position: relative;
	z-index: 2;
}

.c_lineup_section .lineup_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	height:104px;
}

.c_lineup_section .lineup_icon img{
	width: auto;
	transition-duration: var(--c_duration);
}

.c_lineup_section .lineup_icon_material{
	height:calc(93 / 104 * 100%);
}
.c_lineup_section .lineup_icon_method{
	height:calc(104 / 104 * 100%);
}
.c_lineup_section .lineup_icon_parts{
	height:calc(100 / 104 * 100%);
}

.c_lineup_section .lineup_name{
	margin-top: 24px;
	color: var(--base_navy);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

@media (any-hover: hover) {
	.c_lineup_section .lineup_block:hover::before{
		transform: scaleX(1);
	}

	.c_lineup_section .lineup_block:hover .lineup_icon img{
		transform: scale(1.2);
	}
}


/*
------------------------------------
下層ページタイトルセクション
------------------------------------
*/

.c_page_title_section{
	padding-top: 0;
	position: relative;
	background-color: var(--base_green);
}


.c_page_title_section .page_title_inner{
	min-height:400px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:56px 0;
	max-width: 92%;
	margin-inline: auto;
}

.c_page_title_section .page_title{
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	color:#fff;
}

/*
------------------------------------
パンクズ
------------------------------------
*/

.c_bread_area{
	position: absolute;
	bottom:8px;
	width:100%;
	left:0;
}

.c_bread_area .bread_frame{
	width:92%;
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	justify-content: flex-end;
}

.c_bread_area .bread_list{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:4px;
	color: #FFF;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.c_bread_area .bread_list a{
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	.c_bread_area .bread_list a:hover{
		opacity: var(--c_hover_opa);
	}
}


/*
------------------------------------
製品ページ ページ最上部の導入部分セクション
------------------------------------
*/
.c_product_guide_section{

}

.c_product_guide_section .guide_flex{
	display: flex;
	justify-content: space-between;
	gap:calc(60 / 1000 * 100%);
}

.c_product_guide_section .guide_left{
	flex-shrink: 0;
	width:calc(500 / 1000 * 100%);
}

.c_product_guide_section .guide_right{
	width:100%;
	display: flex;
	align-items: center;
}

.c_product_guide_section .guide_head{
	font-size: 20px;
	font-weight: 700;
}

.c_product_guide_section .guide_text{
	
	line-height: 1.875;
	letter-spacing: 0.05em;
}

.c_product_guide_section .guide_head + .guide_text{
	margin-top: 44px;
}


/*
------------------------------------
製品ページ 関連する商材/工法紹介セクション
------------------------------------
*/

.c_relation_list_section{

}

.c_relation_list_section .relation_list{
    margin-top: var(--c_block_space);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px calc(40 / 1000 * 100%);
}

.c_relation_list_section .relation_block{
    height:100%;
    min-height: 235px;
    border-radius: 5px;
    background: #D9D9D9;
    padding:20px;
    display: flex;
    align-items: center;
}

.c_relation_list_section .relation_flex{
    display: flex;
    gap:16px;
    width: 100%;
}

.c_relation_list_section .relation_left{
    flex-shrink: 0;
    width:calc(180 / 440 * 100%);
}

.c_relation_list_section .relation_right{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c_relation_list_section .relation_text{
    min-height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
}

.c_relation_list_section .relation_button{
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 48px;
	min-width:166px;
	width: fit-content;
	border-radius: 9999px;
	margin-inline: auto;
	padding:16px 24px;
	transition-duration: var(--c_duration);
	background-color: var(--base_navy);
	color:#fff;
	font-size: 14px;
	font-weight: 700;
	gap:8px;
	border:1px solid var(--base_navy);
	
}

.c_relation_list_section .relation_button::after{
	content:'';
	width:7px;
	aspect-ratio: 1 / calc(13 / 7);
	flex-shrink: 0;
	background-image: url('../img/common/icon_angle_right_white.svg');
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	.c_relation_list_section .relation_button:hover{
		background-color: #fff;
		color:var(--base_navy)
	}
	.c_relation_list_section .relation_button:hover::after{
		background-image: url('../img/common/icon_angle_right_navy.svg');
	}
}

/*
------------------------------------
製品ページ 嵩上げ・捨て支保工等の商品リストセクション
------------------------------------
*/

.c_product_section{

}

.c_product_section .product_list{
	padding-top: 120px;
	max-width: 475px;
	margin-inline: auto;
}

.c_product_section .product_list:has(.product_item:nth-child(2)){
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:180px calc(48 / 1000 * 100%);
}


.c_product_section .product_block{
	height:100%;
	border-radius: 5px;
	background: #D9D9D9;
	position: relative;
	padding:90px 16px 96px;
}

.c_product_section .product_block_thumb{
	position: absolute;
	width:240px;
	aspect-ratio: 1 / calc(172 / 240);
	max-width: 90%;
	left: 50%;
	transform: translateX(-50%);
	bottom:calc(100% - 44px);
}

.c_product_section .product_block_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.c_product_section .product_block_title{
	text-align: center;
	font-weight: 400;
}

.c_product_section .product_block_text{
	margin-top: 32px;
	text-align: center;
	line-height: 1.5;
}

.c_product_section .product_block_button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 48px;
	width:166px;
	max-width: 90%;
	border-radius: 9999px;
	padding:16px 24px;
	transition-duration: var(--c_duration);
	background-color: var(--base_navy);
	color:#fff;
	font-size: 14px;
	font-weight: 700;
	gap:8px;
	border:1px solid var(--base_navy);
	position: absolute;
	bottom:16px;
	left: 50%;
	transform: translateX(-50%);
}

.c_product_section .product_block_button::after{
	content:'';
	width:7px;
	aspect-ratio: 1 / calc(13 / 7);
	flex-shrink: 0;
	background-image: url('../img/common/icon_angle_right_white.svg');
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	.c_product_section .product_block_button:hover{
		background-color: #fff;
		color:var(--base_navy)
	}
	.c_product_section .product_block_button:hover::after{
		background-image: url('../img/common/icon_angle_right_navy.svg');
	}
}

/*
------------------------------------
製品ページ 主な用途セクション
------------------------------------
*/

.c_product_use_section{

}

.c_product_use_section .use_list{
    margin-top: var(--c_block_space);
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: fit-content;
    margin-inline: auto;
    gap:20px;
}

.c_product_use_section .use_item{
    width:100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #E9EEE8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.2em;
}
.c_product_use_section .use_item.on{
    background-color: #629F62;
}

/*
------------------------------------
製品ページ アンカーリンクリスト
------------------------------------
*/

.c_product_link_section{

}


.c_product_link_section .link_list_frame{
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.c_product_link_section .link_list_frame::before,
.c_product_link_section .link_list_frame::after
{
    content:'';
    width:100vw;
    max-width: 1920px;
    height:1px;
    background-color: var(--base_black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.c_product_link_section .link_list_frame::before{
    top:0;
}
.c_product_link_section .link_list_frame::after{
    bottom:0;
}

.c_product_link_section .link_list{
    margin-inline: auto;
    display: flex;
	justify-content: center;
    gap:30px 70px;
    flex-wrap: wrap;
	
}

.c_product_link_section .link_item{
	width:31%;
    max-width:250px;
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:12px 20px;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.67;
    letter-spacing: 0.05em;
    border-top:1px solid;
    border-bottom:1px solid;
}


.c_product_link_section .link_item::after{
    content:"";
    width:7px;
    aspect-ratio: 1 / calc(13 / 7);
    background-image: url('../img/common/icon_angle_right_black.svg');
    position: absolute;
    top: 50%;
    right:8px;
    transform: translateY(-50%);
}

.c_product_link_section .link_list:has(.link_item:nth-child(3)){
	max-width: 890px;
	justify-content: space-between;
	gap:30px 0;
}


.c_product_link_section .link_list:has(.link_item:nth-child(3)) .link_item{
	
}