@media screen and (min-width:751px) {
    .inner.first_content {
        margin-top: 200px;
    }
}

.first_content h2 {
    margin: 2rem 0;
    text-align: center;
    letter-spacing: -1.2px;
}
@media screen and (max-width:370px) {
    .first_content h2{
        font-size: 1.75rem;
    }
}

/* あなたの悩みを聞かせてください */

.sec1 {
    margin: 3rem 0 7rem;
}

.sec1 h3 {
    font-family: Noto Serif JP;
    font-weight: normal;
    letter-spacing: .05em;
    text-align: center;
}

.line {
    background: linear-gradient(transparent 60%, #FDFDB9 60%);
    padding: 0 2px;
}

.nayami {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
    margin-top: 4rem;
}

.nayami ul {
    margin-bottom: 34px;
    padding: 50px 80px 25px;
    border-radius: 9999px;
    background: #E0F2FA;
    font-size: 1.375rem;
    font-weight: 500;
    position: relative;
}
.nayami ul::after {
    display: block;
    padding-right: .5em;
    text-align: right;
    content: "etc.";
}
.nayami ul::before {
    position: absolute;
    bottom: -34px;
    left: 30%;
    display: block;
    width: 44px;
    height: 34px;
    background: url("../images/ballon.png") no-repeat;
    background-size: 44px 34px;
    content: "";
}

.nayami ul li {
    margin-bottom: .6em;
    padding-left: 1em;
    text-indent: -1em;
}
.nayami ul li::before {
    content: "・"
}

@media screen and (max-width:750px) {
    .sec1 {
        margin-bottom: 4rem;
    }

    .sec1 h3{
        line-height: 2.25rem;
    }

    .nayami {
        flex-direction: column;
        align-items: stretch;
    }

    .nayami ul {
        margin-bottom: 0;
        padding: 90px 30px;
        font-size: 1.0625rem;
    }
    .nayami ul::before {
        content: none;
    }
    .nayami ul::after {
        padding-top: .5em;
    }

    .nayami ul li {
        margin-bottom: 1em;
    }

    .nayami .img {
        margin-top: -80px;
        text-align: center;
        z-index: 2;
    }
}


/* こんなことができます */

.sec2 h3 {
    margin-bottom: 3vw;
    color: #E67E7E;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
}
.sec2 h3::before ,
.sec2 h3::after {
    content: "～";
}

.sec2_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec2_list li {
    width: 33.3%;
    /*margin-bottom: 3rem;*/
    text-align: center;
}

.sec2_list li img {
    display: block;
    margin: 0 auto 1rem;
}

.sec2_list li h4 {
  margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
}

.sec2_list li p {
    margin: 0 22px;
    text-align: left;
}

.sec2_list li p img {
    margin-top: 10px;
  border-radius: 5px;
}

@media screen and (max-width:750px) {
    .sec2 h3 {
        font-size: 1.5rem;
    }
    .sec2_list {
      flex-direction: column;
    }
    .sec2_list li {
        min-width: 90%;
        margin: 0 auto 3rem;
    }
    .sec2_list li h4 {
        font-size: 1.25rem;
    }
    .sec2_list li img {
        width: 65%;
    }
    .sec2_list li p {
        margin: 0;
    }
}


/* イメージ */

.image {
  width: 90%;
  max-width: 500px;
  margin: 2rem auto 0;
  padding: 1rem 2rem 2rem;
  border: solid 2px #ccc;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.image h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

@media screen and (min-width:751px) {
  .image img {
    max-width: 400px;
  }
}


