@charset "utf-8";
.textArea .items + .items{
  border-top: var(--borderGray) dotted 1px;
}
.textArea .lineTitle {
    margin-top: 0;
  }
.textArea .btnArea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.textArea .btnArea a{
  text-decoration: none;
}
.textArea .btnArea .backBtn{
  color: var(--fontColor);
}
.textArea .btnArea .moreBtn{
  color: var(--ColorWhite);
}
.textArea .mailIcon {
  position: relative;
}
.textArea .mailIcon::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (min-width: 600px) {
  .textArea .items + .items{
    margin-top: 40px;
    padding-top: 40px;
  }
  .textArea .btnArea {
    margin-top: 50px;
    gap: 20px;
  }
  .textArea .btnArea a{
    font-size: 1rem;
  }
  .textArea .btnArea .moreBtn{
    padding: 20px 40px 20px 30px;
    min-width: 280px;
  }
  .textArea .btnArea .backBtn{
    padding: 20px 30px 20px 40px;
    min-width: 220px;
  }
  .textArea .mailIcon {
    padding-left: 22px;
  }
  .textArea .mailIcon::before {
    width: 15px;
    height: 15px;
    background-size: 15px auto;
    top: 0.38em;
  }
}
@media only screen and (max-width:599px) { /*for SP*/
  .textArea .items + .items{
    margin-top: 5vw;
    padding-top: 5vw;
  }
  .textArea .btnArea {
    margin-top: 8vw;
    gap: 4vw;
  }
  .textArea .btnArea li {
    width: 100%;
    text-align: center;
  }
  .textArea .btnArea li:first-of-type{
    order: 2;
  }
  .textArea .btnArea li:last-of-type{
    order: 1;
  }
  .textArea .btnArea .moreBtn {
    font-size: 4vw;
    min-width: 80%;
    padding: 5vw 6vw 5vw 6vw;
    order: 1;
  }
  .textArea .btnArea .backBtn{
    padding: 3vw 6vw 3vw 6vw;
    order: 2;
    min-width: 80%;
  }
  .textArea .mailIcon {
    padding-left: 5vw;
  }
  .textArea .mailIcon::before {
    width: 3.5vw;
    height: 3.5vw;
    background-size: 3.5vw auto;
    top: 0.45em;
  }
}