/* タイトル */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/事業案内.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .55);
    pointer-events: none;
    z-index: 2;
}

.wrap {
    width: 100%;
    padding: 24px;
    text-align: center;
    z-index: 3;
}

.hero-title {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-size: 48px;
    margin: 0 auto;
    color: #fff;
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-size: 32px;
    margin: 0 auto;
    color: #fff;
    letter-spacing: 0.2em;
}

/* 背面の矢印 */
.arrow-section {
    position: relative;
    /* height: 2000px; */
    background:
        url("../img/file.svg") no-repeat center top -48px;
    background-size: cover;
    /* overflow: hidden;  */
    z-index: 2;
    margin: 8px 0 0;
}

h2 {
    position: relative;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-size: 42px;
}

/* カード群 */
.service-cards {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(14px, 2vw, 18px);
    top: -120px;
}

/* 単カード */
.service-cards {
    width: 1040px;
    margin: 0 auto;
    position: relative;
    /* top: 160px; */
    padding: 160px 0 0;
}

.card {
    background: #fff;
    padding: 24px;
    border: 1px solid #e9e9e9;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card h3 {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-size: 32px;
}

h3 {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-size: 32px;
    color: #39975c;
}

.card-text {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-size: 18px;
    width: 70%;
    margin-top: 0;
}

.card-body {
    display: inline;
    grid-template-columns: 1fr minmax(180px, 260px);
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    display: flex;
    align-items: flex-start;
}

.card-body img {
    width: 100%;
    height: auto;
    display: block;
    width: 30%;
    margin: 8px 0 0;
}

.bullets {
    margin: 0;
    padding-left: 1.2em;
}

.bullets li {
    margin: .2em o;
}

/* --- モバイルで縦積み --- */
@media (max-width: 720px){
  .card-body{
    grid-template-columns: 1fr;
  }
}

/* 追記 */
.color-bg{
    background: linear-gradient(90deg,white 0%,white 10%,#F5F5F5 10%,#F5F5F5 40%,white 40%,white 100%);
}