@charset "UTF-8";
@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.rtxt p {
  margin: 0 0 1em 0;
}

.rtxt_detail {
  font-size: 0.8em;
  color: #707070;
}
.rtxt_detail p {
  margin: 0 0 0.1em 0;
}

.rec_table {
  padding: 2rem;
}
.rec_table a.txtlink {
  position: relative;
  display: inline-block;
  color: #E60000;
  font-feature-settings: "palt";
}
.rec_table a.txtlink::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #E60000;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
.rec_table a.txtlink:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}
.rec_table dl {
  display: flex;
  justify-content: space-between;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .rec_table dl {
    display: block;
  }
}
.rec_table dl dt {
  width: 7em;
  padding: 1rem 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rec_table dl dt {
    width: 100%;
  }
}
.rec_table dl dd {
  border-left: 1px solid #ccc;
  padding: 1rem 0 1rem 3rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .rec_table dl dd {
    padding: 0 0 0 2rem;
  }
}
.rec_table dl dd ul li {
  list-style-type: disc;
  margin: 0 0 0 1em;
  padding: 0 0 0 0.2em;
}

#voice03 {
  margin-bottom: 8rem;
}

#voice04 {
  margin-bottom: 8rem;
}
#voice04 .agent_btn {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0 0;
  gap: 2rem;
  /*
  a {
    display: block;
    width: 48%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .3s ease;

    &:hover {
      box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
  }
  */
}
@media screen and (max-width: 767px) {
  #voice04 .agent_btn {
    flex-direction: column;
    gap: 0;
  }
}
#voice04 .agent_btn a {
  display: block;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #voice04 .agent_btn a {
    width: 100%;
  }
}

#flows .icon {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #E60000;
  color: #ffffff;
  text-align: center;
  line-height: 4.4rem;
}
#flows .icon svg {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
#flows p.text-center {
  line-height: 1.5;
}

a.form_btn {
  display: inline-block;
  padding: 2rem 4rem 2rem 4rem;
  border-radius: 5px;
  background: #E60000;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
a.form_btn.mt0 {
  margin-top: 0;
}
a.form_btn p {
  margin: 0;
}
a.form_btn .icon {
  width: 1.2em;
  vertical-align: top;
  margin: 0 0 0 1rem;
  line-height: 1.2;
}
a.form_btn:hover {
  background: #c30000;
}