@charset "UTF-8";


/*******************************
 ページセクション
 *******************************/
.content-section {
    width: 90%;
    max-width: 1000px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #b5b5b5;
}

.content-section__title {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.8rem;
}

.content-section__title::before {
    display: block;
    width: 18px;
    height: 30px;
    margin-right: 10px;
    background: #efefef;
    content: "";
}

.content-section__title::after {
    display: block;
    position: absolute;
    left: 7px;
    width: 4px;
    height: 30px;
    background: #fff;
    content: "";
}

.content-section.-green .content-section__title::before{
    
    background: #6d7c53;
}

.content-section__text {
    margin-bottom: 40px;
}

.content-section__paragraph {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.content-section__link {
    display: block;
    width: 200px;
    padding: 5px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.content-section__img {
  display: flex;
  flex-direction: column;
  gap: 10px; /* 10px間隔 */
}

.content-section__figure {
  margin: 0;
}

.content-section__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .content-section {
        margin-top: 70px;
        padding-bottom: 70px;
    }


    .content-section__title {
        display: flex;
        align-items: center;
        position: relative;
        margin-bottom: 40px;
        font-size: 2.1rem;
    }

    .content-section__title::before {
        height: 42px;
    }

    .content-section__title::after {
        height: 42px;
    }

    .content-section__paragraph {
        margin-bottom: 40px;
        font-size: 1.6rem;
    }

    .content-section__img {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .content-section__figure {
    flex: 0 1 calc((100% - 10px) / 2); /* 2カラム */
       max-width: 385px;
  }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .content-section {
        margin-top: 80px;
        padding-bottom: 80px;
    }

    .content-section__body {
        display: flex;
        justify-content: space-between;
    }
    .content-section__title {
        font-size: 2.3rem;
        letter-spacing: .1em;
    }
    .content-section__text {
        width: 56%;
        margin-bottom: 0;
    }
    .content-section__paragraph {
        font-size: 1.7rem;
    }

    .content-section__img {
        width: 40%;
        max-width: 385px;
    }

    .content-section__img {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .content-section__figure {
    flex: 0 0 auto; /* 幅の指定を解除 */
  }
}
