/*===============
 Top
===============*/
section {
  padding: 100px 1rem;
}
@media all and (max-width: 992px) {
  section {
    padding: 50px 1.5rem;
  }
}
@media all and (max-width: 520px) {
  section {
    padding: 50px 1rem;
  }
}

.top_main {
  width: 100%;
  background: #43caf6;
  background-image: url(../img/bg_top_main.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  padding: 0 1rem;
}
.top_main .top_main_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1080px;
  height: 400px;
  margin: 0 auto;
}
.top_main h2 {
  width: 100%;
}
@media all and (max-width: 992px) {
  .top_main h2 {
    width: 90%;
    margin: 0 auto;
  }
}
@media all and (max-width: 520px) {
  .top_main h2 {
    width: 100%;
  }
}
.top_main h2 img {
  width: 100%;
  max-width: 800px;
  display: none;
}
.top_main h2 span {
  font-size: 36px;
  font-weight: 700;
}
@media all and (max-width: 992px) {
  .top_main h2 span {
    font-size: 1.5rem;
  }
}
.top_main h2 strong {
  font-weight: 900;
  font-size: 60px;
  letter-spacing: .05em;
}
@media all and (max-width: 992px) {
  .top_main h2 strong {
    font-size: 2.5rem;
  }
}

.top_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.top_ttl strong {
  font-size: 40px;
  font-weight: 900;
  display: block;
  letter-spacing: .05em;
}
@media all and (max-width: 992px) {
  .top_ttl strong {
    font-size: 1.8rem;
  }
}
.top_ttl span {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding: 0 15px;
  letter-spacing: .1em;
}
@media all and (max-width: 992px) {
  .top_ttl span {
    font-size: 1rem;
    padding: 0 1.3rem;
  }
}
.top_ttl span::before, .top_ttl span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #333b3a;
}
.top_ttl span::before {
  left: 0;
}
.top_ttl span::after {
  right: 0;
}

.ttl_lead {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.section_wrap {
  position: relative;
}
.section_wrap::before {
  content: '';
  max-width: 1440px;
  width: 80%;
  height: 100%;
  background: url(../img/bg_dashed.svg) no-repeat top center;
  background-size: cover;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

#policy {
  position: relative;
}
#policy::before, #policy::after {
  content: '';
  position: absolute;
}
@media all and (max-width: 992px) {
  #policy::before, #policy::after {
    content: none;
  }
}
#policy::before {
  background: url(../img/img_illust01.svg) no-repeat top center;
  width: 46px;
  height: 150px;
  top: 3%;
  right: 20%;
}
#policy::after {
  background: url(../img/img_illust02.svg) no-repeat top center;
  width: 155px;
  height: 150px;
  bottom: 1%;
  left: 15%;
  z-index: 3;
}

.policy_list {
  margin: 0 auto;
  width: 65%;
  max-width: 1180px;
  position: relative;
  z-index: 3;
  counter-reset: num01 0;
}
@media all and (max-width: 992px) {
  .policy_list {
    width: 100%;
  }
}
.policy_list div {
  width: 90%;
  margin-bottom: 40px;
}
@media all and (max-width: 992px) {
  .policy_list div {
    width: 100%;
  }
}
.policy_list div:nth-of-type(2) {
  margin-left: 50px;
}
@media all and (max-width: 992px) {
  .policy_list div:nth-of-type(2) {
    margin-left: 0;
  }
}
.policy_list div:nth-of-type(3) {
  margin-left: 100px;
}
@media all and (max-width: 992px) {
  .policy_list div:nth-of-type(3) {
    margin: 0;
  }
}
.policy_list dt {
  color: #000073;
  font-size: 32px;
  font-weight: 700;
  border-bottom: 2px #333b3a solid;
  padding: 0 50px 10px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
@media all and (max-width: 992px) {
  .policy_list dt {
    font-size: 1.2rem;
    padding: 0 0rem 6px 2.5rem;
    display: block;
    margin-bottom: 10px;
  }
}
.policy_list dt::before {
  content: counter(num01);
  counter-increment: num01 1;
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  padding: 0px 18px 15px;
  background: url(../img/bg_policy_bubble.svg) no-repeat top center;
  background-size: cover;
  color: #1fa7a2;
}
@media all and (max-width: 992px) {
  .policy_list dt::before {
    padding: 0px 1rem 0.9rem;
  }
}
.policy_list dd {
  margin-left: 50px;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media all and (max-width: 992px) {
  .policy_list dd {
    margin-left: 0;
    font-size: .8rem;
  }
}

.about_wrap {
  background: #4cd2e5;
  position: relative;
}
.about_wrap::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 100px 0 100px;
  border-color: #4cd2e5 transparent transparent transparent;
}
@media all and (max-width: 992px) {
  .about_wrap::before {
    bottom: -30px;
    border-width: 40px 50px 0 40px;
  }
}

#about {
  position: relative;
  z-index: 3;
}
#about::before, #about::after {
  content: '';
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 992px) {
  #about::before, #about::after {
    content: none;
  }
}
#about::before {
  background: url(../img/img_illust03.svg) no-repeat top center;
  width: 170px;
  height: 180px;
  top: 4%;
  right: 15%;
}
#about::after {
  background: url(../img/img_illust04.svg) no-repeat top center;
  width: 152px;
  height: 150px;
  bottom: 1%;
  right: 15%;
}
#about figure {
  text-align: center;
}

.point_wrap {
  margin-top: 20px;
  background: #fff471;
  position: relative;
}
.point_wrap::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 100px 0 100px;
  border-color: #fff471 transparent transparent transparent;
}
@media all and (max-width: 992px) {
  .point_wrap::before {
    bottom: -30px;
    border-width: 40px 50px 0 40px;
  }
}

#point {
  position: relative;
}
#point::before, #point::after {
  content: '';
  position: absolute;
}
@media all and (max-width: 992px) {
  #point::before, #point::after {
    content: none;
  }
}
#point::before {
  background: url(../img/img_illust05.svg) no-repeat top center;
  width: 200px;
  height: 206px;
  top: -5%;
  left: 13%;
}
#point::after {
  background: url(../img/img_illust06.svg) no-repeat top center;
  width: 170px;
  height: 175px;
  bottom: -5%;
  right: 10%;
}
#point figure {
  text-align: center;
  position: relative;
  z-index: 3;
}

.point_list {
  width: 880px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 3;
  counter-reset: num02 0;
}
@media all and (max-width: 992px) {
  .point_list {
    width: 100%;
  }
}

.point_list_item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: orange 5px 5px;
          box-shadow: orange 5px 5px;
  width: calc(50% - 30px);
  margin: 0 15px 20px;
  padding: 20px 20px 30px;
}
@media all and (max-width: 992px) {
  .point_list_item {
    padding: 10px;
  }
}
@media all and (max-width: 520px) {
  .point_list_item {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
  }
}
.point_list_item dt {
  color: #1d2088;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px #333b3a solid;
  padding: 0 30px 10px;
  margin: 0 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media all and (max-width: 992px) {
  .point_list_item dt {
    font-size: 1.2rem;
    padding: 0 0 6px 2.5rem;
    margin: 0 0 10px;
  }
}
.point_list_item dt::before {
  content: counter(num02);
  counter-increment: num02 1;
  display: block;
  position: absolute;
  top: -10px;
  left: -20px;
  padding: 10px 18px 20px;
  background: url(../img/bg_point_icon.svg) no-repeat top center;
  background-size: cover;
  color: #ffff;
}
@media all and (max-width: 992px) {
  .point_list_item dd {
    font-size: .8rem;
  }
}
.point_list_item dd figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px;
}
@media all and (max-width: 992px) {
  .point_list_item dd figure {
    width: 40%;
    margin: 0 auto 10px;
  }
}
.point_list_item dd p {
  text-align: justify;
  text-justify: inter-ideograph;
}

#voice {
  background-image: radial-gradient(#f1f1f1 10%, transparent 11%), radial-gradient(#f1f1f1 10%, transparent 11%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.voice_in_wrap {
  width: 880px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 2px #333b3a solid;
  border-radius: 5px;
  -webkit-box-shadow: #333b3a 5px 5px;
          box-shadow: #333b3a 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.voice_in_wrap:not(:first-of-type) {
  margin-top: 80px;
}
@media all and (max-width: 520px) {
  .voice_in_wrap:nth-of-type(2) .voice_in .name {
    margin: -60px 0 2rem;
  }
}
@media all and (max-width: 992px) {
  .voice_in_wrap {
    width: 100%;
    padding: 20px;
  }
}
@media all and (max-width: 520px) {
  .voice_in_wrap {
    padding: 10px;
  }
}
.voice_in_wrap::before {
  content: '';
  position: absolute;
  background: url(../img/img_illust07.svg) no-repeat top center;
  width: 200px;
  height: 173px;
  bottom: -10%;
  right: -10%;
}
@media all and (max-width: 1024px) {
  .voice_in_wrap::before {
    right: -5%;
  }
}
@media all and (max-width: 992px) {
  .voice_in_wrap::before {
    content: none;
  }
}
.voice_in_wrap figure {
  border: 1px #333b3a solid;
  padding: 20px;
  max-width: 320px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
@media all and (max-width: 992px) {
  .voice_in_wrap figure {
    width: 30%;
    padding: 10px;
  }
}
.voice_in_wrap figure img {
  width: 100%;
}
.voice_in_wrap .link_btn {
  width: 100%;
  background: url(../img/bg_voice_icon.svg) no-repeat bottom left;
  padding-top: 100px;
}
@media all and (max-width: 992px) {
  .voice_in_wrap .link_btn {
    background: url(../img/bg_voice_icon.svg) no-repeat top left;
    background-size: 15%;
    padding-top: 50px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.voice_in_wrap .link_btn a {
  background: #ee95a8;
  border: 1px #333b3a solid;
  border-radius: 5px;
  -webkit-box-shadow: #333b3a 5px 5px;
          box-shadow: #333b3a 5px 5px;
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
@media all and (max-width: 992px) {
  .voice_in_wrap .link_btn a {
    font-size: 1rem;
    width: 100%;
  }
}
.voice_in_wrap .link_btn a span {
  position: relative;
  padding-right: 30px;
}
.voice_in_wrap .link_btn a span::before {
  content: '';
  background: url(../img/icon_blank.svg) no-repeat top left;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.voice_in {
  margin-left: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
}
@media all and (max-width: 992px) {
  .voice_in {
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.voice_in .name {
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media all and (max-width: 992px) {
  .voice_in .name {
    font-size: 1.2rem;
    margin: -40px 0 2rem;
  }
}
.voice_in .name span {
  position: relative;
  padding: 0 10px;
  letter-spacing: .1em;
}
.voice_in .name span::before {
  content: '';
  width: 100%;
  height: 5px;
  background: #a40000;
  border-radius: 10px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.voice_in .summary {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
  border-bottom: 2px #333b3a solid;
}
@media all and (max-width: 992px) {
  .voice_in .summary {
    font-size: 1rem;
  }
}
@media all and (max-width: 992px) {
  .voice_in .message {
    font-size: .9rem;
  }
}
.voice_in .message p {
  margin-bottom: 20px;
}
.voice_in .message span {
  border-bottom: 1px #ccc solid;
  line-height: 1.8;
  padding-bottom: 3px;
}
.voice_in .message strong img {
  width: 20px;
  display: inline;
  vertical-align: middle;
}

.voice_introduction_wrap {
  width: 880px;
  margin: 80px auto 0;
}
@media all and (max-width: 992px) {
  .voice_introduction_wrap {
    width: 100%;
    margin: 40px auto 0;
  }
}
.voice_introduction_wrap p {
  text-align: center;
}

.voice_introduction_list {
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*space-between*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.voice_introduction_list li {
  width: calc((100% - 60px) / 4);
  text-align: center;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media all and (max-width: 992px) {
  .voice_introduction_list li {
    width: 48%;
  }
}
.voice_introduction_list li img {
  width: 50%;
  margin-bottom: 10px;
}

#contact {
  padding: 100px 1rem;
  background: #82caf6;
}
@media all and (max-width: 992px) {
  #contact {
    padding: 50px 1.5rem;
  }
}
@media all and (max-width: 520px) {
  #contact {
    padding: 50px 1rem;
  }
}
#contact a {
  background: radial-gradient(circle, #f8b62d 0%, #f39800 100%);
  border: 1px #333b3a solid;
  border-radius: 5px;
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
@media all and (max-width: 992px) {
  #contact a {
    font-size: 1rem;
    width: 90%;
  }
}
#contact a span {
  position: relative;
  padding-right: 30px;
}
#contact a span::before {
  content: '';
  background: url(../img/icon_blank.svg) no-repeat top left;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  #contact a span {
    display: inline-block;
  }
}
