@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background-color: #f1f5fd;
}
a {
  color: #333;
  text-decoration: none;
}

/* ここからVOICE */
.section-about-company {
  padding-top: 60px;
  text-align: center;
}
.section-about-company h1 {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 55px;
  position: relative;
  padding: 0 20px 5px;
}
.section-about-company h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(
    -45deg,
    #1f9323,
    #1f9323 2px,
    #f1f5fd 2px,
    #f1f5fd 4px
  );
}
.section-about-company-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.section-about-company_photo {
  width: 45%;
}
.section-about-company_photo img {
  width: 100%;
  vertical-align: middle;
}
.section-about-company_text {
  text-align: left;
  width: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.section-about-company_text-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 30px;
}
.section-about-company_text h3 {
  font-size: 2rem;
  font-weight: 600;
}
.section-about-company_text p {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
@media (max-width: 960px) {
  .section-about-company {
    padding: 60px 24px;
  }
  .section-about-company h1 {
    text-align: left;
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .section-about-company-container {
    display: block;
  }
  .section-about-company_photo {
    width: 100%;
  }
  .section-about-company_text {
    width: 100%;
  }
}
/* Q and A */
.section-voice-qanda {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 80px;
}
.section-voice-qanda li {
  list-style: none;
  font-size: 1.8rem;
  line-height: 3.6rem;
}
.voice-q {
  font-weight: 600;
}
.voice-q::before {
  content: "\02014";
  font-weight: 600;
}
.voice-a {
  padding-bottom: 40px;
  padding-left: 1em;
  text-indent: -1em;
}
.voice-a::before {
  content: "\02003";
}
.section-voice-photo {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 60px;
}
.section-voice-photo-area {
  width: 47%;
}
.section-voice-photo-area img {
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .section-voice-qanda {
    padding: 0 24px;
  }
  .voice-q {
    text-indent: -1em;
  }
  .section-voice-photo {
    display: block;
    padding-top: 0;
  }
  .section-voice-photo-area {
    width: 80%;
    margin: 0 auto;
  }
}
/* 戻るボタン */
.button-back {
  text-align: center;
  padding-bottom: 60px;
}
.btn-back {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #1f4f93;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #0e346e;
}
a.btn--radius {
  border-radius: 100vh;
}
