/* small screens */

/* 20230208レスポンシブLP */

/* CSS実装（PC編） */
.qa {
  margin: 0 auto;
  padding-top: 78px;
  max-width: 1280px;


}

.qa__body-item {
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  margin-bottom: 50px;

}
.qa__body-item-img {
  width: 15%;

}

.qa__body-item-img-p{
  font-size: 8x;

}
.qa__body-item-img img {
  width: 100%;
}
.qa__body-item-texts {

  /* 文書の設定 */
  box-sizing: border-box;
  /* padding-right: 7.8%;
  padding-left: 7.8%; */
  /* padding-right: 3%; */
  padding-left: 3%;
  width: 85%;


}

/* タイトル */
.qa__body-item-texts-copy {
  font-size: 10x;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: bold;
  color: #006a80;
  border-left: solid 7px #5b8eebd9;

}
.qa__body-item-texts-p {
  /* padding-top: 10px; */
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.says_blue {
  /* 枠線 */
  border: 1px solid #00000058;

  display: inline-block;
  position: relative; 
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 48px;
  padding-left: 10px;
  background: #c9daf8;
}

.says_yellow {
  /* 枠線 */
  border: 1px solid #00000058;

  display: inline-block;
  position: relative; 
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 48px;
  padding-left: 10px;
  background: #ffffb7;
}

/* CSS実装（スマホ編） */

@media all and (max-width: 767px) {
  .qa {
    padding-top: 58px;
  }
  .qa__title {
    padding-left: 0;
    padding-bottom: 24px;
    text-align: center;
  }
  .qa__body-item {
    flex-direction: column;
  }
  .qa__body-item--reverse {
    flex-direction: column-reverse;
  }
  .qa__body-item-img {
    width: 100%;
  }
  .qa__body-item-texts {
    padding-top: 25px;
    padding-right: 10px;
    padding-bottom: 48px;
    padding-left: 10px;
    width: 100%;
  }
  .qa__body-item-texts-copy {
    font-size: 16px;
  }
  picture{
    float: left;
    width: 30%;

  }
  .qa__body-item-img-p{
    font-size: 8x;
    float: left;
    margin-left: 20px;
    margin-top: 30px;

  }
  
  .qa__body-item-texts-p {
    padding-top: 10px;
      /* font-size: 10px; */
  }

  .qa__body-more {
    padding-top: 0;
  }

  .says {
    display: inline-block;
    position: relative; 
    margin: 0 0 0 50px;
    padding: 10px;
    max-width: 250px;
    border-radius: 12px;
    background: #edf1ee;
  }
  
  .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px; 
    left: -19px;
    border: 8px solid transparent;
    border-right: 18px solid #edf1ee;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }





}
/* 終わり　CSS実装（スマホ編） */



