﻿/*==============================================================================

	共通デザイン

================================================================================*/

/*============================================
	ページ全体
==============================================*/

body {
	background-color: rgba(248,248,255,0.5);
	color: #42493A;
	font-size: 1rem;
	line-height: 1.7;
	font-family: "メイリオ", Meiryo, 'Noto Serif JP', serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

img{
	vertical-align: top;
}
#wrapper {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
}

/*------------ a要素 ------------*/

a{
	text-decoration: none;
	color: #42493A;
	transition:all 300ms;
}

a:hover {
	color: #42493A;
	
}

.pc_no{
	pointer-events: none;
}

/*-------------タッチデバイス-------------*/

.touch-device　a:hover{
	color: inherit;
}

.touch-device .pc_no{
	pointer-events: auto;
}
.touch-device .pc_no.sp_btn{
	display: block;
}

/*============================================
	ヘッダー
==============================================*/
#header {
	width: 100%;
	height: 400px;
	background-repeat: no-repeat;
	background-position:left center;
	background-image: url("../images/4header_top_2022-10.jpg");
	background-size:  980px cover;
	position: relative;
}

#header::after{
	display: block;
	content: "";
	width: 300px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	background-color: #FFF;
}

/*---------------------------
	バナー
-----------------------------*/
.hdr_btn {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: rgba(66,73,58,0.8);

}
.hdr_btn a{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #FFF;
	line-height: 1.25;
	font-size: 1.125rem;
	font-weight: bold;
	padding: 16px;
}

.hdr_text{
	display: flex;
	align-items: baseline;
	font-size: 2rem;
	letter-spacing: 0.1rem;
}

.touch-device .hdr_btn{
	border: outset 5px rgba(104,194,21,0.6);
}

/*----------------------------
		サブページ　h1
------------------------------*/

.page_title{
	font-family: 'Noto Serif JP', serif;
	font-size: 2.75rem;
	font-weight: 700;
	position: absolute;
	right: 330px;
	bottom: 20px;
}

/*----------------------------
		サイドメニュー
------------------------------*/

#side_container{
	width: 300px;
	height: 100%;
	background-color: rgba(238,237,236,0.8);
	top: 0;
	right: 0;
	z-index: 98;
	position: absolute;
}

.side_menu{
	height: 700px;
}

.logo a {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 60px;
	margin-bottom: 60px;
}

.logo_upper {
	margin-right: -12px;
	margin-bottom: 24px;
}

.menu_list{
	display: block;
	width: 100%;
	height: 32px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.menu_list a{
	width: 100%;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

.menu_icon{
	height: 40px;
	width: 40px;
	border-radius: 20px;
	background-color: rgba(104,194,21,0.00);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 8px;
}

.menu_icon.right{
	margin-right: 0;
	margin-left: 8px;
	transform: rotate(45deg);
}

.menu_svg{
	width: 30px;
	height: 30px;
	fill: none;
	stroke: #42493A;
	stroke-width: 1.5px;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.menu_svg.company{
	height: 28px;
	width: 28px;
}

.menu_icon.mail{
	margin-top: -4px;
	padding-bottom: 2px;
}

.menu_text.mail{
	margin-top: 2px;
}

.menu_text, .menu_icon, .menu_svg{
	transition-duration: 300ms;
}

/*---------- ホバー ----------*/

a:hover .menu_text{
	color: #68C215;
	font-weight: bold;
}
a:hover .menu_icon{
	background-color: #68C215;
}

a:hover .menu_icon.right{
	transform: rotate(0deg);
}

a:hover .menu_svg{
	stroke: #fff;
	stroke-width: 3px;
}

/*-------------タッチデバイス-------------*/

.touch-device a:hover .menu_text,
.touch-device a:hover .menu_icon,
.touch-device a:hover .menu_svg{
	color: #42493A;
	font-weight: inherit;
	background-color: inherit;
	stroke:#42493A;
	stroke-width: 1px;
}

.touch-device .menu_icon.right{
		display: none;
	}

/*----------------------------
		サブメニュー
------------------------------*/

.sub_wrap{
	display: block;
	width: 0;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	position: absolute;
	top: 0;
	right: 300px;
	z-index: 99;
	padding-top: 100px;
	white-space: nowrap;
	overflow: hidden;
	transition-property: width;
	transition-duration: 500ms;
}

.open_sub:hover .sub_wrap{
	width: 300px;
}

.sub_inner{
	opacity: 0;
	transition-property: opacity;
	transition-delay: 0.3s;
	transition-duration: 300ms;
}

.open_sub:hover .sub_inner{
	opacity: 100;
}

.sub_title{
	display: table;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem 20px 1rem;
	border-bottom: solid 1px #42493A;
}

.sub_title a{
	display: flex;
	align-items: center;
	margin-left: -30px;
}

.sub_menu{
	margin-top: 45px;
	margin-right: 65px;
}

.sub_list{
	display: table;
	margin-left: auto;
	margin-right: 0;
	margin-bottom: 25px;
	font-size: 0.875rem;
}

.sub_text{
	padding-left: 1rem;
	padding-right: 1rem;
	flex-shrink: 1;
}

.sub_ar{
	width: 20px;
	height: 20px;
	flex-shrink: 1;
	fill: none;
	stroke: #FF9966;
	stroke-width: 1px;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.menu_text.sub, .menu_icon.sub, .menu_svg.sub, .sub_text{
	transition-duration: 300ms;
}

/*---------- ホバー ----------*/

a:hover .menu_text.sub{
	color: rgba(66,73,58,0.5);
}

a:hover .menu_icon.sub{
	background-color: transparent;
}

a:hover .menu_svg.sub{
	stroke: rgba(66,73,58,0.5);
	stroke-width: 3px;
}

.sub_list a:hover{
	flex-direction: row-reverse;
	justify-content: flex-start;
}

a:hover .sub_text{
	color: #FF9966;
	font-weight: bold;
}

/*-------------タッチデバイス-------------*/

.touch-device .sub_wrap{
	display: none;
}


/*============================================
		メイン
==============================================*/

main{
	display: block;
}

/*--- 読み上げ用非表示 ---*/

.disp_none{
	display: none;
}

/*----------------------------
		コンテンツ
------------------------------*/
.con_wrap{
	width: 100%;
	height: 100%;
	position: relative;
}
.con_wrap::after{
	content: "";
	display: block;
	width: 300px;
	height: 100%;
	background-color: rgba(238,237,236,0.8);
	position: absolute;
	top: 0;
	right: 0;
}

#contents {
	width: calc(100% - 300px);
	max-width: 980px;
	height: 100%;
}

.sec_con{
	margin-bottom: 100px;
}

.sec_con.last{
	margin-bottom: 40px;
}

.sec_wrap{
	padding: 0;
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.sec_inner{
	width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.sec_inner.s_g{
	margin-bottom: 100px;
}

/*----------------------------
		見出し要素
------------------------------*/

/*----- h2:.sec_title -----*/
.sec_title{
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-bottom: 70px;
}

.sec_title span{
	margin-left: auto;
	margin-right: auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 2.25rem;
	letter-spacing: 0.2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

.sec_title::before{
	content: "";
	width: 50%;
	height: 1px;
	background-color: #68C215;
	margin-left: 0;
	margin-right: auto;
}

.sec_title::after{
	content: "";
	width: 45%;
	height: 1px;
	background-color: #FF9966;
	margin-left: auto;
	margin-right: 0;
}

/*----------------------------
		ボタン要素
------------------------------*/

/*--- 電話番号 ---*/
.call{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

/*--- 電話のsvg ---*/
.svg_call{
	width: 45px;
	height: 45px;
	fill: #42493A;
	stroke-width: 0;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: rotate(15deg);
}

/*--- ヘッダーの電話svg ---*/

.svg_call.hdr{
	width: 28px;
	height: 28px;
	fill:#FFF;
	margin-right: 8px;
}
/*----------------------------
		ページトップへ
------------------------------*/

.go_top{
	text-align: right;
	margin-right: 30px;
	margin-top: 30px;
}

/*--- 矢印のsvg ---*/

.svg_go{
	width: 75px;
	height: 75px;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: rotate(90deg);
}

.svg_go .a{
	fill: #68C215;
	stroke: #68C215;
	stroke-width: 0;
	transition-duration: 300ms;
}

.svg_go .b{
	fill: none;
	stroke:#fff;
	stroke-width: 2px;
	transition-duration: 300ms;
}

/*--- 矢印のsvg ホバー ---*/

a:hover .svg_go .a{
	fill:#FFF;
	stroke-width: 1px;
	transform: translateX(-5px);
	box-shadow: 3px 3px 3px rgba(72,89,70,0.5);
}

a:hover .svg_go .b{
	stroke: #68C215;
	transform: translateX(-5px);
}

/*-------------タッチデバイス-------------*/

.touch-device a:hover .svg_go .a{
	fill: #68C215;
	stroke: #68C215;
	stroke-width: 0;
}


.touch-device a:hover .svg_go .b{
	stroke:#fff;
	stroke-width: 2px;
}

/*----------------------------
		お問い合わせ
------------------------------*/
#contact{
	background-color: #F9F8F7;
	width: 100%;
	margin-top: 100px;
	padding-bottom: 120px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.ctc_img{
	margin-top: -70px;
}

.ctc_text{
	width: calc(100% - 400px);
	white-space: nowrap;
	margin-top: 50px;
}

.ctc_lead{
	display: block;
	text-align: right;
	font-size: 1.8rem;
	margin-top: 1rem;
	margin-right: 50px;
	font-family: 'Noto Serif JP', serif;

}

/*=================================
		フッター
===================================*/

#footer {
	background-color: #fff;
	height: 500px;
	width: 100%;
	margin-top: 60px;
	padding-left: 120px;
	padding-right: 120px;
	font-size: 0.875rem;

}

.ftr-wrap{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 100%;
}

.ftr_logo{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	white-space: nowrap;
}

.ftr_l_upper{
	margin-bottom: 2rem;
}

.ftr_l_center{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.ftr_logo span{
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	padding-right: 1rem;
}

.ftr_t_lead{
	font-size: 1.25rem;
}

.ftr_text{
	font-size: 2.5rem;
}

.ftr_call{
	font-size: 2.25rem;
	margin-top: 1rem;
}

.svg_call.ftr{
	width: 30px;
	height: 30px;
}

.ftr_nav{
	display: flex;
	align-items: flex-end;
	padding-top: 40px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ftr_menu{
	margin-right: 100px;
}

.ftr_list{
	margin-top: 1rem;
}

.ftr_sub{
	font-size: 0.75rem;
	margin-top: 0.75rem;
	padding-left: 1rem;
}

small{
	display: flex;
	width: 100%;
	justify-content: flex-end;
	margin-top: -1.5rem;
	padding-right: 1rem;

}

/*---------- ホバー ----------*/

.ftr_nav a:hover{
	color: #FF9966;
}

/*-------------タッチデバイス-------------*/

.touch-device .ftr_nav a:hover{
	color: #42493A
}

/*===================================================

		トップページ

====================================================*/

/*=================================
		アイテム
===================================*/

/*----------------------------
	矢印
------------------------------*/

.svg_r_ar{
	width: 50px;
	height: 50px;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: rotate(180deg);
	position: absolute;
	top: calc(50% - 25px);
	right: 1rem;
}

.svg_r_ar .a{
	fill: none;
	stroke: #42493A;
	stroke-width: 1px;
}

.svg_r_ar .b{
	fill: none;
	stroke: #42493A;
	stroke-width: 1px;
}

a:hover .svg_r_ar .a{
	stroke:#FFF;
}

a:hover .svg_r_ar .b{
	stroke: #FFF;
	stroke-width: 2px;
}

/*-------------タッチデバイス-------------*/

.touch-device a:hover .svg_r_ar .a{
	stroke: #42493A;
}

.touch-device a:hover .svg_r_ar .b{
	stroke: #42493A;
	stroke-width: 1px;
}


/*-------- 事例一覧用 --------*/
.svg_r_ar.repair .a{
	fill: none;
	stroke: #FFF;
	stroke-width: 1px;
}

.svg_r_ar.repair .b{
	fill: none;
	stroke:#fff;
	stroke-width: 2px;
}

a:hover .svg_r_ar.repair .a{
	stroke: #42493A;
}

a:hover .svg_r_ar.repair .b{
	stroke: #42493A;
	stroke-width: 1px;
}

/*-------------タッチデバイス-------------*/

.touch-device a:hover .svg_r_ar.repair .a{
	stroke: #FFF;
}

.touch-device a:hover .svg_r_ar.repair .b{
	stroke: #FFF;
	stroke-width: 2px;
}


/*----------------------------
	コンテンツ内ボタン
------------------------------*/

.con-btn{
	width: 400px;
	height: 60px;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	margin-left: auto;
	margin-right: 0;
	margin-top: 30px;
}

.con-btn a{
	width: 100%;
	height: 100%;
	border: 1px solid #42493A;
	color: #42493A;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition-duration: 300ms;
}

.con-btn a:hover{
	border: #FFF;
	color: #FFF;
	background-color: rgba(66,73,58,0.8);
	box-shadow: 3px 3px 3px rgba(72,89,70,0.5);
	transform: translateY(-5px);
}

.con-btn.top_r_btn{
	margin-top: -70px;
}

/*--- 会社概要のみ ---*/

.con-btn.company{
	margin-top: 40px;
	margin-bottom: 60px;
}

/*-------------タッチデバイス-------------*/

.touch-device .con-btn a:hover{
	border: 1px solid #42493A;
	color: #42493A;
	background-color: #FFF;
	box-shadow: 0 0 0 0 #FFF;
	transform: none;
}

/*=================================
		ヘッダー
===================================*/
#header.index{
	height: 700px;
	background-position:center center;
	background-image: url("../images/01header_top_20230113.jpg");
}

#header.index::after{
	display: none;
}

/*----------------------------
		キャッチコピー
------------------------------*/
.catchcopy{
	max-width: 980px;
	width: 100%;
	height: 100%;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 700;
}

.catchcopy span{
	display: block;
	white-space: nowrap;
	margin-bottom: 3rem;
}

.h_cc_upper{
	position: absolute;
	left: calc(3rem*2);
	top: calc(50% - 4.5rem);
}

.h_cc_bottom{
	position: absolute;
	left: calc(3rem*4);
	top: calc(50% + 1.5rem);
}

/*=================================
		コンテンツ
===================================*/
/*----------------------------
		アイキャッチ
------------------------------*/
.eyecatch{
	padding: 25px 0;
	display: flex;
	justify-content: center;
}

/*----------------------------
		事例一覧
------------------------------*/


.top_repair{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.top_repair_case{
	display: flex;
	flex-direction:column;
}

.top_repair_case.left{
	margin-left: 20px;
}


.top_repair_case.right{
	margin-top: 100px;
}

.t_r_list{
	margin-bottom: 30px;
}

.t_r_list a{
	display: flex;
	flex-direction: column;
}

.t_r_title{
	width: 320px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	background-color: rgba(66,73,58,0.8);
	margin-left: -20px;
	margin-top: -60px;
	position: relative;
}

.t_r_list , .t_r_banner, .t_r_title{
	transition-duration: 300ms;
}

/*---------- ホバー ----------*/

.t_r_list a:hover{
	transform: translateY(-5px);
}

a:hover .t_r_banner{
	box-shadow: 3px 3px 3px rgba(72,89,70,0.5);
}

a:hover .t_r_title{
	color: #42493A;
	background: #FFF;
	border: solid 1px rgba(66,73,58,0.8);
	box-shadow: 3px 3px 3px rgba(72,89,70,0.5);
}

/*-------------タッチデバイス-------------*/

.touch-device .t_r_list a:hover{
	transform: none;
}

.touch-device a:hover .t_r_banner{
	box-shadow: 0 0 0 rgba(72,89,70,0.0);
}

.touch-device a:hover .t_r_title{
	color: #FFF;
	background-color: rgba(66,73,58,0.8);
	border: none;
	box-shadow: 3px 3px 3px rgba(72,89,70,0.5);
}


/*----------------------------
		会社概要
------------------------------*/

.com_text{
	display: flex;
	align-items:flex-end;
	justify-content: space-around;
	padding-left: 30px;
	padding-right: 30px;
}

.c_l_left{
	margin-right: 10px;
}

.map_text a{
	display: block;
	width: 100%;
	font-size: 0.75rem;
	text-align: right;
	color: #68C215;
}

.map_text a:hover{
	text-decoration: underline;
}

/*-------------タッチデバイス-------------*/

.touch-device .map_text a:hover{
	text-decoration: none;
}


/*========================================================

	サブページ-メイン　共通デザイン

==========================================================*/

/*----------------------------
		見出し要素
------------------------------*/

/*----- h3:.sec_title_second -----*/

.sec_title_second{
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	position: relative
}

.sec_title_second span{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	white-space: nowrap;
}

.sec_title_second::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -5px;
	background-image: linear-gradient(to right, #68c215, #84ce0e, #a0da06, #bce601, #d8f100, #e6ea00, #f3e300, #ffdc00, #ffc200, #ffa914, #ff9025, #ff7733);
}

/*----------------------------
		リスト要素
------------------------------*/

.s_l_item a:hover{
	color: #68C215;
	font-weight: bold;
}

.s_l_item{
	list-style-type: square;
	list-style-position: inside;
	margin-bottom: 10px;
}

.s_l_item::marker{
	color: #68C215;
	font-size: 1.25rem;
}

/*-------------タッチデバイス-------------*/

.touch-device .s_l_item a:hover{
	color: #42493A;
	font-weight: normal;
}


/*----------------------------
		パンくずリスト
------------------------------*/

.root{
	display: flex;
	justify-content: space-between;
	padding: 1rem 40px 2rem 40px;
	font-size: 0.75rem;
}

.root a{
	color: rgba(72,89,70,0.8);
	border-bottom: 1px dotted rgba(104,194,21);
}

.root a:hover{
	color: #68C215;
}

.s_n_ar{
	padding: 0 0.3rem;
}

.s_n_current{
	font-weight: bold;
}


.contents_nav a{
	margin-left: 1rem;
}

/*-------------タッチデバイス-------------*/

.touch-device .root a:hover{
	color: #42493A;
}

/*----------------------------
		p要素
------------------------------*/

.subpage_p{
	margin-bottom: 1rem;
}
.subpage_p.notice{
	display: flex;
}
.subpage_p.notice::before{
	content: "※";
	display: block;
	font-size: 1rem;
}

.s_c_text{
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05rem;
}

.s_c_lead{
	color: #68C215;
	font-size: 1.75rem;
	padding: 0 1rem;
	letter-spacing: 0.1rem;
}

/*----------------------------
		テーブル要素
------------------------------*/

.tbl_wrap{
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 10px 5px;
	text-align: left;
}

.tbl_th{
	width: 20%;
	vertical-align: middle;
	font-weight: normal;
	text-align: left;
}

.tbl_td{
	width: auto;
	vertical-align: middle;
	line-height: 1.25;
}


/*===================================================

		サービス案内

====================================================*/

/*=================================
		ヘッダー
===================================*/
#header.service{
	background-image: url("../1service/image/1header_top_2022-10.jpg");
}

/*=================================
		コンテンツ
===================================*/

/*----------------------------
		説明文
------------------------------*/

.service_top{
	width: 100%;
	display: flex;
	justify-content: center;
	white-space: nowrap;
}

/*----------------------------
		画像
------------------------------*/

.service_img{
	width: 100%;
	display: flex;
	justify-content: center;
}

/*===================================================

		修理・工事・施工事例

====================================================*/

/*=================================
		ヘッダー
===================================*/
#header.repair{
	background-image: url("../2repair/image/2header_top_2022-10.jpg");
}

/*=================================
		コンテンツ
===================================*/

.sec_wrap.repair{
	background-image: url("../2repair/image/3bg00.gif");
	background-repeat: no-repeat;
	background-position: 80% 60%;
}

.subpage_cc.repair{
	padding-bottom: 1rem;
	color: green;
}

.subpage_p.repair{
	padding-bottom: 2rem;
}

/*----------------------------
		事例一覧
------------------------------*/

.repair_wrap{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 200px;
}

.subpage_list.repair{
	width: 45%;
}

.s_l_item.repair{
	list-style-type: none;
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: 3rem;
	line-height: 1.4;
}

.repair_title{
	display: block;
	margin-bottom: 10px;
	padding-left: 1rem;
	border-bottom: 1px solid #68C215;
}

.repair_wrap .s_l_i_sub{
	margin-left: 40px;
	margin-bottom: 40px;
}

.repair_wrap .sl_i{
	margin-top: 6px;
}

/*===================================================

		修理・工事・施工事例　各ページ

====================================================*/

/*=================================
		コンテンツ
===================================*/
.repair_case{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 50px;
	counter-reset: number 0;
}
/*--- 最終列の調整用 ---*/
.repair_case::after{
	content: "";
	display: block;
	width: 280px;
}

/*---------- カードデザイン ----------*/

.r_c_item{
	display: block;
	width: 280px;
	height: auto;
	background-color: #EEEDEC;
	margin-bottom: 50px;
	padding: 10px;
	position: relative;
}

.r_c_wrap{
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
	position: relative;
}

.r_c_photo{
	width: 100%;
	height: auto;
	object-fit: contain;
	background-color: rgba(238,237,236,0.5);
}

.r_c_text{
	flex-grow: 1;
	width: 100%;
	height: 100%;
	min-height: 5.4rem;/*padding上1rem＋下1rem＋2行分3.4rem(line-height1.7)＝5.4rem*/
	margin: 0;
	padding: 1rem;
}

/*---------- 写真サイズが違うページ　custom ----------*/

.custom .r_c_photo{
	height: 195px;
}

.custom .r_c_text{
	height: auto;
}

/*---------- 縦長のみページ　portrait ----------*/

.portrait .r_c_photo{
}

.portrait .r_c_text{
	height: auto;
}

/*---------ナンバリング---------*/

.r_c_wrap::before{
	counter-increment: number 1;
	content: counter(number)" ";
	color:  #42493A;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	line-height: 2;
	background-color: #FFF;
	border-bottom: 1px solid #485946;
	border-right: 1px solid #485946;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -10px;
	left: -10px;
}

/*--------- 背景ライン ---------*/

.r_c_item::after{
	content: "";
	display: block;
	position: absolute;
}

.r_c_item.row::after{
	width: 30px;
	height: 2px;
	background-color: #68C215;
	top: calc(215px/2);
	left:280px;
}

/*-----portrait用------*/
.portrait .r_c_item.row::after{
		top: 40%;

}


.r_c_item.next::after{
	content: url("../2repair/image/r_c_next.svg");
	width: 620px;
	height: 50px;
	left: -490px;
	bottom: -50px;
}

/*---------下部ナビ---------*/

.repair_nav{
	font-size: 0.875rem;
	line-height: 2;
	text-align: center;
	padding-top: 50px;
	border-top: 1px dotted #FF9966;
	margin-bottom: 50px;
	white-space: nowrap;
}

.repair_nav a:hover{
	color: #68C215;
}

.r_n_current{
	background-color: rgba(104,194,21,0.5);
	padding: 0 0.5rem;
}

.r_n_s{
	margin-left: 0.75rem;
	margin-right: 0.5rem;
}

/*-------------タッチデバイス-------------*/

.touch-device .repair_nav a:hover{
	color: #42493A;
}

/*-----------------過去事例ページ--------------------*/
.sec_wrap.repair_l{
	background-image: url("../2repair/image/3bg01.gif");
	background-repeat: no-repeat;
	background-position: 80% 25%;
}


/*===================================================

		設備紹介

====================================================*/

/*=================================
		ヘッダー
===================================*/
#header.equipment{
	background-image: url("../3equipment/image/3header_top_2022-10.jpg");
}

/*=================================
		コンテンツ
===================================*/
.sec_wrap.equ{
	background-image: url("../3equipment/image/3bg00.gif");
	background-repeat: no-repeat;
	background-position: 85% 5%;
}

.tbl_th.crane_img{
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.tbl_th.crane{
	width: 50%;
}

.tbl_td.crane{
	width: 50%;
}

/*===================================================

		会社案内

====================================================*/

/*=================================
		ヘッダー
===================================*/
#header.company{
	background-image: url("../images/3.header_top_2022-10.jpg")
		;
}

/*=================================
		コンテンツ
===================================*/

.s_c_text.company{
	text-align: center;
}

.subpage_p.company{
	margin-top: 50px;
	margin-bottom: 100px;
}

.subpage_p.fifty{
	margin-top: 50px;
}
.tbl_th.com{
	background-color: rgba(104,194,21,0.2);
	letter-spacing: 0.1rem;
	padding-top: 8px;
	padding-bottom: 6px;
	padding-left: 1rem;
}

.tbl_td.com{
	line-height: 1.75;
}

.tbl_td .pc_no{
	margin-right: 2rem;
}

.linkstrong{
	border-bottom: dotted 1px #68C215;
}

.enkaku{
	margin-bottom: 20px;
}

.recruit{
	margin-top: 50px;
	margin-bottom: 50px;
}

.linkstrong:hover{
	color: #68C215;
}

/*----- タッチデバイス -----*/

.touch-device .tbl_td .pc_no{
	border-bottom: dotted 1px #68C215;
}


/*===================================================

		お問い合わせ

====================================================*/

/*=================================
		ヘッダー
===================================*/
#header.contact{
	background-image: url("../images/05header_top_2023-04.jpg");
}
/*=================================
		コンテンツ
===================================*/
.tbl_wrap.contact{
	margin-left: -10px;
	margin-bottom: 100px;
}
.tbl_wrap.contact .tbl_th{
	background-color: rgba(104,194,21,0.2);
	letter-spacing: 0.1rem;
	padding-top: 8px;
	padding-bottom: 6px;
	padding-left: 1rem;
}
.tbl_wrap.contact .tbl_td{
	padding-left: 1rem;
}
.tbl_wrap.contact .tbl_td._email{
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
	line-height: 1.5;
}

.s_l_i_email{
	display: table;
	width: auto;
	list-style-type: none;
	margin-top: 1.5rem;
	margin-bottom: 2rem;
	padding: 1rem 1.5rem;
	border: 1px solid #FF9966;
}
.s_l_i_email>li + li{
	margin-top: 1rem;
}
.s_l_i_email span{
	display: block;
	margin-left: 3rem;
}

/*===================================================

		サイトマップ

====================================================*/

.sec_inner.sitemap{
	display: flex;
	justify-content: space-around;
}

.s_l_item.site_map{
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.s_l_i_sub{
	list-style-type: disc;
	margin-left: 24px;
	font-weight: normal;
	font-size: 1rem;
}

.sl_i{
	margin-top: 12px;
}

.sl_i::marker{
	color: #FF9966;
}

.sl_i a:hover{
	color: #FF9966;
	font-weight: normal;
}

.sl_i.legacy{
	margin-top: 2rem;
}

/*-------------タッチデバイス-------------*/

.touch-device .sl_i a:hover{
	color: #42493A;
	font-weight: normal;
}


/*===================================================

		個人情報

====================================================*/


.pr_title{
	font-weight: bold;
	margin-top: 2rem;
	margin-bottom: 5px
}

.pr_sub_title{
	font-weight: normal;
}

.privacy_list{
	list-style-type: disc;
	margin-left: 1.5rem;
	margin-top: 5px;
	font-size: 0.9125rem;
}
