@charset "utf-8";

/* ==============================
   業務案内
============================== */

.catch_box {
    align-items: center;
}

.catch_box .catch_img {
	width: 50%;
}

.catch_box .catch_txt {
    width: 42%;
    margin-top: 0;
}

.service_section {
    margin: 0 0 120px;
}

.service_section:last-child {
    margin-bottom: 0;
}

.service_section_head {
    margin: 0 0 35px;
    text-align: center;
}

/* 白ボックス */
.service_box {
    margin: 50px auto;
    padding: 45px 50px;
    background: #fff;
    box-sizing: border-box;
    max-width: 1000px;
}

.service_box h3, .service_flow > h3 {
    margin: 0 0 25px;
    padding-bottom: 10px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    border-bottom: solid 1px #CAA846;
}

.service_box p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.9;
}

/* リスト */
.service_list_check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service_list_check li {
    position: relative;
    margin-bottom: 0;
    padding-left: 1.6em;
    font-size: 1.6rem;
    line-height: 1.8;
    list-style: none;
}

.service_list_check li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

/* フロー */
.service_flow {
    margin: 70px 0 0;
}

.service_flow > h3 {
    text-align: center;
    margin: 0 0 35px;
}

.flow_wrap {
    max-width: 1000px;
    padding: 47px 0 33px;
    margin: auto;
    position: relative;
}

.flow_wrap::before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #222;
    top: 0;
    left: 7px;
}

.flow_item {
    position: relative;
    margin: 0 0 41px;
    padding-left: 38px;
}

.flow_item:last-child {
    margin-bottom: 0;
}

.flow_item::before {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #222;
    top: 8px;
    left: 0;
}

.flow_item > *:first-child {
    margin-top: 0;
}

.flow_item > *:last-child {
    margin-bottom: 0;
}

.flow_item h3 {
    margin: 0 0 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.flow_item p {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.866;
}

/* ==============================
   SP
============================== */

@media screen and (max-width: 767px) {
	
	.catch_box .catch_img {
		width: 100%;
	}
	
	.catch_box .catch_txt {
		width: 100%;
	}
	
    .service_section {
        margin: 0 0 70px;
    }

    .service_section_head {
        margin: 0 0 25px;
    }

    .service_box {
        margin: 35px 0 0;
        padding: 25px 20px;
    }

    .service_box h3,
    .service_flow > h3 {
        margin: 0 0 18px;
        font-size: 1.8rem;
    }

    .service_box p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .service_list_check {
        display: block;
    }

    .service_list_check li {
        margin: 0 0 10px;
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .service_list_check li:last-child {
        margin-bottom: 0;
    }

    .service_flow {
        margin: 45px 0 0;
    }

    .service_flow > h3 {
        margin: 0 0 20px;
    }

    .flow_wrap {
        padding: 28px 0 20px;
    }

    .flow_item {
        margin: 0 0 25px;
        padding-left: 35px;
    }

    .flow_item::before {
        top: 7px;
    }

    .flow_item h3 {
        margin: 0 0 6px;
    }

    .flow_item p {
        font-size: 1.3rem;
    }
}