@charset "UTF-8";

/*--------遺品整理の流れ-----------*/
.flow_contents{
   display:flex;
   justify-content:space-between;
   align-items:center;
}
.flow_content{
   width:18%;
   color:#3e3e3e;
   position:relative;
   text-align: center;
    margin: 0 auto;
}
.flow_content img{
   max-width:100px;
   width: 90%;
}
.step{
   font-size:28px;
}
.title{
   font-size: 20px;
   margin-bottom: 20px;
}
.flow_content:before{
   content:"";
   position:absolute;
   border-style: solid;
   border-width: 15px 0 15px 20px;
   border-color: transparent transparent transparent #007bff;
   top: 20%;
   right: -8%;
}
.flow_content:last-child:before{
   display:none;
}
@media screen and (max-width:1100px){
.flow_content:before{
   right: -12%;
}
}
@media screen and (max-width:900px){
.flow_content:before {
    border-width: 10px 0 10px 15px;
    top: 17%;
}
}
@media screen and (max-width:768px){
.flow_content {
    width: 31%;
    margin: 0;
}
.flow_contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.title {
    font-size: max(3vw,14px);
    margin-bottom: 20px;
}
.step {
    font-size: max(3.5vw,18px);
}
.flow_content:before {
    top: 20%;
    left: -3%;
}
.flow_content:first-child:before{
   display:none;
}
.flow_content:last-child:before{
   display:block;
}
.flow_content img{
   max-width:80px;
}
.flow_content:nth-child(n + 4) img{
   max-width:100px;
    width: 100%;
}
}
@media screen and (max-width:600px){
.flow_content:before {
    top:10%;
}
}
@media screen and (max-width:400px){
.flow_content:before {
    border-width: 5px 0 5px 10px;
    left: -6%;
}
}

/*-------------------料金表---------------------*/
#price_table + .block_table_5 td:nth-child(2n){
    letter-spacing: 0.15rem;
    font-weight: 600;
    color: var(--i_sub_color);
}
#price_table + .block_table_5 tbody{
    text-align: center;
}
#price_table + .block_table_5 tr:nth-child(2n + 1) td{
    background-color: var(--i_sub2_color) !important;
}
#price_table + .block_table_5 table thead th{
    background: var(--i_main_color);
    color:#fff;
}
#price_table + .block_table_5 table thead th:nth-child(2){
    background: var(--i_sub_color);
}