@charset "utf-8";


/* ======================================
2021/08/19 added by toh
======================================== */

.table-bordered th {
	background-color: #C7DEB2;
	text-align:left;
}
.table-bordered th, .table-bordered td {
	border: 1px solid #bababa;
	vertical-align:middle;
}


/* ======================================
2021/08/23 added by nakazato
======================================== */

/* 画像枠線 */
.img-frame {
	padding:2px;
	background-color:#fff;
	border:#D9D8D8 solid 1px;
}


/*ご依頼から工事完成まで*/
:root {
    --template-flow-01-color:#137533;  /*メインカラー*/
    --template-flow-01-subcolor:#137533;  /*サブカラー*/
}
/*css*/
.template-flow-01 {
    padding-left: 120px;
    position: relative;
    margin-bottom:60px !important;
}
.template-flow-01::before {
    content: "";
    width: 15px;
    height: 100%;
    background: #eee;
    margin-left: -8px;
    display: block;
    position: absolute;
    top: 0;
    left: 120px;
}
.template-flow-01 > li {
    position: relative;
    margin-left:0 !important;
    list-style:none !important;
}
.template-flow-01 > li:not(:last-child) {
    margin-bottom: 8vh;
}
.template-flow-01 > li .icon {
    font-size: 14px;
    color: #fff;
    background: var(--template-flow-01-color);
    background: -moz-linear-gradient(left, var(--template-flow-01-color) 0%, var(--template-flow-01-subcolor) 100%);
    background: -webkit-linear-gradient(left, var(--template-flow-01-color) 0%,var(--template-flow-01-subcolor) 100%);
    background: linear-gradient(to right, var(--template-flow-01-color) 0%,var(--template-flow-01-subcolor) 100%);
    padding: 8px 20px;
    display: block;
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 100;
}
.template-flow-01 > li .icon::after {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent var(--template-flow-01-subcolor);
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.template-flow-01 > li dl {
    padding-left: 70px;
    position: relative;
}
.template-flow-01 > li dl::before,
.template-flow-01 > li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
}
.template-flow-01 > li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background:var(--template-flow-01-color);
    border-radius: 50%;
    left: -4px;
}
.template-flow-01 > li dl::after {
    width: 50px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px;
}
.template-flow-01 > li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: var(--template-flow-01-color);
    margin-bottom: 1vh;
}



/* 失敗しない業者選びのポイント */
/*config*/
:root {
    --timeline-color:#137533;  /*タイムラインの色*/
    --timeline-circle-size:70px; /*サークルのサイズ*/
    --timeline-circle-font:40px; /*サークルの文字サイズ*/
}
/*css*/
.template-timeline{
    counter-reset: number;
    margin-bottom: 30px;
}
.template-timeline-once{
    position: relative;
    min-height: 100px;
}
.template-timeline-once::before{
    counter-increment: number;
    content:counter(number);
    position: absolute;
    top:0;
    left:0;
    width:var(--timeline-circle-size);
    line-height:var(--timeline-circle-size);
    height:var(--timeline-circle-size);
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: var(--timeline-color);
    color: #fff;
    font-size: var(--timeline-circle-font);
    z-index:2;
}
.template-timeline-once::after{
    position: absolute;
    content:"";
    top:calc(var(--timeline-circle-size)/2);
    left:calc(var(--timeline-circle-size)/2);
    width:2px;
    height:100%;
    display: inline-block;
    background: var(--timeline-color);
    z-index:1;
}
.template-timeline-once:last-of-type::after{
    display: none;
}
.template-timeline-text{
    margin-left:calc(var(--timeline-circle-size) + 20px);
    flex-wrap: wrap;
}
.template-timeline-title{
    margin:1em 0;
    font-size: 22px;
	font-weight: bold;
    color:var(--timeline-color);
}


/* チェックマーク */
.entry-content ul.list_check{
	margin:0;
	padding:0;
	font-size: 0;
	position: relative;
	margin:0 0 12px 0;
}
.entry-content ul.list_check li{
	list-style-type: none;
	text-align: left;
	font-size: 15px;
	margin: 0 10px 0px 22px;
	padding: 3px;
	display: block;
}
.entry-content ul.list_check li:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00c";
	position: absolute;
	left : 5px; /*左端からのアイコンまでの距離*/
	color: #ff6600; /*アイコン色*/
}


/* 背景模様付き枠テンプレート */
.template-backpattern{
	padding: 24px;
	background: #EDF7E4;
	border: solid 2px #CAE0B6;
	margin:20px 0 26px 0;
}