@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
header {
  padding: 20px 40px;
  box-sizing: border-box;
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 9999;
}
@media screen and (max-width: 860px) {
  header {
    padding: 10px;
  }
}
header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  header .flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 860px) {
  header .flex h1 {
    width: 45%;
  }
}
header .flex .tel {
  max-width: 220px;
}
@media screen and (max-width: 860px) {
  header .flex .tel {
    width: 50%;
  }
}
header .flex .contactArea {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  header .flex .contactArea {
    justify-content: space-between;
    width: 100%;
    margin-top: 14px;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 5px 10px;
    box-sizing: border-box;
  }
}
header .flex .contactArea .tel {
  display: block;
}
header .flex .contactArea .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  background: #FE603B;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 4px;
  box-sizing: border-box;
  transition: 0.3s;
}
header .flex .contactArea .btn:hover {
  filter: invert(1);
}
@media screen and (max-width: 860px) {
  header .flex .contactArea .btn {
    margin-left: 0;
    width: 49%;
    font-size: 1.2rem;
    padding: 10px;
  }
}
header .flex .contactArea .btn + .btn {
  background: #0059B2;
}
header .flex .contactArea .btn span {
  display: flex;
  align-items: center;
  height: 25px;
}
header .flex .contactArea .btn img {
  margin-right: 10px;
}

footer {
  background: #10375E;
  color: #fff;
  padding-top: 160px;
  padding-bottom: 24px;
}
@media screen and (max-width: 860px) {
  footer {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}
footer .inner .flex {
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  footer .inner .flex {
    display: block;
    margin-top: 30px;
  }
}
footer .inner .flex p {
  width: 48%;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 860px) {
  footer .inner .flex p {
    width: 100%;
  }
  footer .inner .flex p + p {
    margin-top: 30px;
  }
}
footer .inner .flex p strong {
  display: block;
  margin: 24px 0;
  line-height: 1.2;
}
@media screen and (max-width: 860px) {
  footer .inner .flex p strong {
    margin: 10px 0;
  }
}
footer .inner small {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  font-size: 1.3rem;
}

.orange {
  color: #FE603B;
}

#mv {
  background: url(../image/mv_bg.jpg) no-repeat center bottom/cover;
  padding: 140px 0 70px;
}
@media screen and (max-width: 860px) {
  #mv {
    padding: 40px 0;
  }
}
#mv .mv_btnBox {
  max-width: 382px;
  width: 38.2%;
  padding: 5%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media screen and (max-width: 860px) {
  #mv .mv_btnBox {
    width: 90%;
    margin: 0 auto;
  }
}
#mv .mv_btnBox h2 {
  margin-bottom: 14.5%;
}
#mv .mv_btnBox a {
  display: block;
  max-width: 272px;
  margin: 0 auto;
  margin-top: 10px;
  transition: 0.3s;
}
#mv .mv_btnBox a:hover {
  filter: invert(1);
}
#mv .graph {
  position: absolute;
  left: 37%;
  max-width: 229px;
  width: 22.9%;
  top: 33%;
}
@media screen and (max-width: 860px) {
  #mv .graph {
    position: static;
    width: 70%;
    margin: 20px auto 0;
  }
}

#intro {
  background: url(../image/intro_bg.jpg) no-repeat center bottom/cover;
  padding: 100px 0;
}
@media screen and (max-width: 860px) {
  #intro {
    padding: 60px 0;
  }
}
#intro h2 span {
  color: #42A1FF;
  border-bottom: 4px dotted #42A1FF;
  display: inline-block;
}
#intro ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 860px) {
  #intro ul {
    display: block;
  }
}
#intro ul li {
  width: 48%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 24px;
  padding-right: 48px;
  box-sizing: border-box;
}
#intro ul li:nth-child(n+3) {
  margin-top: 8px;
}
@media screen and (max-width: 860px) {
  #intro ul li {
    width: 100%;
  }
  #intro ul li + li {
    margin-top: 8px;
  }
}
#intro ul li::before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background: url(../image/intro_icn.svg) no-repeat center/contain;
  flex-shrink: 0;
}
#intro ul li span {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  display: block;
  width: 100%;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

#kaizen {
  background: url(../image/kazen_bg.jpg) no-repeat center/cover;
  padding-bottom: 205px;
  margin-bottom: -130px;
}
#kaizen h2 {
  color: #fff;
}
#kaizen .kaizen_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 95px;
}
@media screen and (max-width: 860px) {
  #kaizen .kaizen_list {
    display: block;
    margin-top: 60px;
  }
}
#kaizen .kaizen_list li {
  width: 31%;
  max-width: 310px;
  background: #EEEEEE;
  border-radius: 8px;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  #kaizen .kaizen_list li {
    width: 100%;
    max-width: none;
    font-size: 1.6rem;
  }
  #kaizen .kaizen_list li + li {
    margin-top: 60px;
  }
}
#kaizen .kaizen_list li .num {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #0059B2;
  text-align: center;
  line-height: 1;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  background: #EEEEEE;
  padding: 25px;
  box-sizing: border-box;
  max-width: 160px;
  width: 90%;
  aspect-ratio: 1/1;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
#kaizen .kaizen_list li h3 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.04em;
  padding-top: 20px;
}
#kaizen .kaizen_list li h3 span {
  display: block;
  color: #0059B2;
}
#kaizen .kaizen_list li ul {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 860px) {
  #kaizen .kaizen_list li ul {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
#kaizen .kaizen_list li ul li {
  width: 100%;
  padding: 0;
  line-height: 2;
  letter-spacing: 0.1em;
}
#kaizen .kaizen_list li ul li::before {
  content: "";
  background: #42A1FF;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  margin-right: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 860px) {
  #kaizen .kaizen_list li ul li + li {
    margin-top: 0;
  }
}

.ctaBox {
  position: relative;
  padding: 0;
}
.ctaBox .cta {
  background: url(../image/cta_bg.png) no-repeat center/cover;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  padding: 27px 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 860px) {
  .ctaBox .cta {
    display: block;
    padding: 20px;
  }
}
.ctaBox .cta .txt {
  width: 53%;
  margin-right: 2.5%;
  margin-left: 6%;
  flex-shrink: 0;
}
@media screen and (max-width: 860px) {
  .ctaBox .cta .txt {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.ctaBox .cta .txt p {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .ctaBox .cta .txt p {
    font-size: 2.3rem;
  }
}
.ctaBox .cta .txt p small {
  font-size: 0.57em;
  display: block;
}
.ctaBox .cta .txt a {
  background: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 355px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 14px 24px;
  box-sizing: border-box;
  margin-top: 20px;
  transition: 0.3s;
}
.ctaBox .cta .txt a::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  display: block;
  background: url(../image/clipboard.svg) no-repeat center/contain;
  margin-right: 10px;
}
.ctaBox .cta .txt a:hover {
  filter: invert(1);
}
@media screen and (max-width: 860px) {
  .ctaBox .cta .txt a {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
.ctaBox .cta .img {
  width: 100%;
  max-width: 240px;
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.25);
  margin-right: 6%;
}
@media screen and (max-width: 860px) {
  .ctaBox .cta .img {
    margin: 0 auto;
  }
}

#reason {
  padding-bottom: 120px;
}
#reason h2 small {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
#reason h2 small::before {
  content: "";
  width: 16px;
  height: 44.6px;
  background: url(../image/ttl_icn.svg) no-repeat center/contain;
  display: block;
  margin-right: 0.5em;
}
#reason h2 small::after {
  content: "";
  width: 16px;
  height: 44.6px;
  background: url(../image/ttl_icn.svg) no-repeat center/contain;
  display: block;
  transform: scaleX(-1);
  margin-left: 0.5em;
}
#reason h2 strong {
  display: block;
}
#reason .reasonList {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 860px) {
  #reason .reasonList {
    display: block;
  }
}
#reason .reasonList .cont {
  width: 48%;
  border: 1px solid #10375E;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16px;
}
#reason .reasonList .cont:nth-child(n+3) {
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #reason .reasonList .cont {
    width: 100%;
    margin-top: 15px !important;
  }
}
#reason .reasonList .cont h3 {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 2.4rem;
}
#reason .reasonList .cont h3 .icn {
  width: 30%;
  display: block;
  margin-right: 30px;
  flex-shrink: 0;
}
#reason .reasonList .cont h3 .ttl {
  text-align: left;
  width: 100%;
}
#reason .reasonList .cont h3 .ttl .blue {
  color: #42A1FF;
}

#shindan {
  background: url(../image/shindan_bg.jpg);
  padding: 0;
}
#shindan article {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  #shindan article {
    display: block;
    padding: 20px 20px 0;
    box-sizing: border-box;
  }
}
#shindan article .txt {
  width: 50%;
}
@media screen and (max-width: 860px) {
  #shindan article .txt {
    width: 100%;
  }
}
#shindan article .txt p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
#shindan article .txt p::before {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(-30deg);
  margin-right: 20px;
}
#shindan article .txt p::after {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(30deg);
  margin-left: 20px;
}
#shindan article .txt a {
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 14px 24px;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  transition: 0.3s;
}
#shindan article .txt a:hover {
  filter: invert(1);
  background: #000;
}
#shindan article .txt a::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  display: block;
  background: url(../image/clipboard_w.svg) no-repeat center/contain;
}
#shindan article .img {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 860px) {
  #shindan article .img {
    width: 70%;
    margin: 0 auto;
  }
}
#shindan article .img img {
  max-width: 345px;
  margin: 0 auto;
  width: 100%;
}

#service {
  background: url(../image/service_bg.jpg) no-repeat center/cover;
}

#plan .tabarea {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #plan .tabarea {
    display: block;
  }
}
#plan .tabarea .tab_list {
  width: 250px;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_list {
    width: 100%;
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
  }
}
#plan .tabarea .tab_list li {
  border-top: 1px solid #ddd;
}
#plan .tabarea .tab_list li:last-child {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_list li {
    border-top: none;
    border-left: 1px solid #ddd;
    width: 25%;
    display: flex;
    flex-direction: column;
  }
  #plan .tabarea .tab_list li:last-child {
    border-bottom: none;
    border-right: 1px solid #ddd;
  }
}
#plan .tabarea .tab_list li a {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 30px 0;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_list li a {
    flex-direction: column;
    padding: 0;
    flex-grow: 1;
    padding-top: 10px;
    font-size: 1.8rem;
  }
}
#plan .tabarea .tab_list li a::after {
  content: "";
  width: 22px;
  height: 25px;
  display: block;
  background: url(../image/arrow_b.svg) no-repeat center/contain;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_list li a::after {
    transform: rotate(90deg);
  }
}
#plan .tabarea .tab_list li a.active {
  color: #42A1FF;
}
#plan .tabarea .tab_list li a.active::after {
  background: url(../image/arrow_active.svg) no-repeat center/contain;
}
#plan .tabarea .tab_content {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #10375E;
  color: #fff;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_content {
    padding: 20px;
  }
}
#plan .tabarea .tab_content .tab_inner {
  display: none;
}
#plan .tabarea .tab_content .tab_inner.active {
  display: block;
}
#plan .tabarea .tab_content .tab_inner .flex {
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_content .tab_inner .flex {
    display: block;
  }
}
#plan .tabarea .tab_content .tab_inner .txtBox {
  width: 60%;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_content .tab_inner .txtBox {
    width: 100%;
  }
}
#plan .tabarea .tab_content .tab_inner .txtBox p {
  font-size: 2.4rem;
  font-weight: bold;
}
#plan .tabarea .tab_content .tab_inner .txtBox .bar_list {
  margin-top: 15px;
}
#plan .tabarea .tab_content .tab_inner .txtBox .bar_list li {
  list-style: disc;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.7;
  margin-left: 1em;
}
#plan .tabarea .tab_content .tab_inner .txtBox .square_list {
  margin-top: 20px;
}
#plan .tabarea .tab_content .tab_inner .txtBox .square_list li {
  list-style: disc;
  font-size: 1.6rem;
  margin-left: 1em;
  line-height: 1.7;
}
#plan .tabarea .tab_content .tab_inner .img {
  width: 34.25%;
}
@media screen and (max-width: 860px) {
  #plan .tabarea .tab_content .tab_inner .img {
    width: 100%;
    margin-top: 20px;
  }
}
#plan .tabarea .tab_content .tab_inner .img img {
  border-radius: 8px;
}
#plan .linkBox {
  background: #0059B2;
  padding: 30px;
  box-sizing: border-box;
  color: #fff;
  margin-top: 120px;
}
@media screen and (max-width: 860px) {
  #plan .linkBox {
    margin-top: 60px;
  }
}
#plan .linkBox .cont_size_box {
  display: flex;
  justify-content: space-between;
  max-width: 720px;
}
@media screen and (max-width: 860px) {
  #plan .linkBox .cont_size_box {
    display: block;
  }
}
#plan .linkBox .cont_size_box .btn {
  width: 44.444%;
}
@media screen and (max-width: 860px) {
  #plan .linkBox .cont_size_box .btn {
    width: 100%;
  }
  #plan .linkBox .cont_size_box .btn + .btn {
    margin-top: 30px;
  }
}
#plan .linkBox .cont_size_box .btn p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
#plan .linkBox .cont_size_box .btn p::before {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(-30deg);
  margin-right: 20px;
}
#plan .linkBox .cont_size_box .btn p::after {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(30deg);
  margin-left: 20px;
}
#plan .linkBox .cont_size_box .btn a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-weight: bold;
  padding: 14px 0;
  transition: 0.3s;
}
#plan .linkBox .cont_size_box .btn a:hover {
  filter: invert(1);
  background: #000;
}
#plan .linkBox .cont_size_box .btn a img {
  width: 24px;
  margin-right: 10px;
}

#voice {
  background: #F6F9FC;
}
#voice h2 small {
  display: block;
  font-size: 0.6em;
}
#voice .voiceList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 860px) {
  #voice .voiceList {
    display: block;
  }
}
#voice .voiceList .cont {
  width: 48%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 860px) {
  #voice .voiceList .cont {
    width: 100%;
  }
  #voice .voiceList .cont + .cont {
    margin-top: 40px;
  }
}
#voice .voiceList .cont:nth-child(n+3) {
  margin-top: 40px;
}
#voice .voiceList .cont .num {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  padding: 16px;
  box-sizing: border-box;
  background: #10375E;
  font-weight: bold;
}
#voice .voiceList .cont h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 40px;
  position: relative;
}
#voice .voiceList .cont h3 .ttl {
  font-size: 2.4rem;
  text-align: left;
}
#voice .voiceList .cont h3 .ttl .blue {
  color: #42A1FF;
}
#voice .voiceList .cont h3 .ttl::before {
  content: "“";
  position: absolute;
  top: -10px;
  display: block;
  left: -20px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
#voice .voiceList .cont h3 .ttl::after {
  content: "“";
  transform: rotate(180deg);
  display: block;
  position: absolute;
  bottom: 0px;
  right: 120px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 860px) {
  #voice .voiceList .cont h3 .ttl::after {
    right: 80px;
  }
}
#voice .voiceList .cont h3 .img {
  width: 80px;
}
#voice .voiceList .cont p {
  margin: 30px 40px 40px;
  font-size: 1.6rem;
  line-height: 1.7;
}

#case .cont + .cont {
  margin-top: 120px;
}
@media screen and (max-width: 860px) {
  #case .cont + .cont {
    margin-top: 60px;
  }
}
#case .cont h3 {
  border-bottom: 1px solid #ddd;
  font-size: 3.2rem;
  text-align: left;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  #case .cont h3 {
    font-size: 2.4rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
#case .cont .flex {
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #case .cont .flex {
    display: block;
  }
}
#case .cont .flex .img {
  width: 37.5%;
}
@media screen and (max-width: 860px) {
  #case .cont .flex .img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
#case .cont .flex .txt {
  width: 59.5%;
}
@media screen and (max-width: 860px) {
  #case .cont .flex .txt {
    width: 100%;
  }
}
#case .cont .flex .txt p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
#case .cont .flex .txt .spec {
  display: block;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #case .cont .flex .txt .spec {
    padding-top: 15px;
    margin-top: 15px;
  }
}
#case .cont .flex .txt .spec li {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 1.5em;
}
#case .cont .flex .txt .spec li:last-child {
  margin-right: 0;
}
#case .cont .flex .txt .awards {
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #case .cont .flex .txt .awards {
    margin-top: 15px;
  }
}
#case .cont .flex .txt .awards h4 {
  text-align: left;
  font-size: 1.6rem;
}
#case .cont .flex .txt .awards .award_list li {
  list-style: disc;
  margin-left: 1em;
  line-height: 2;
}
#case .cont .flex .txt .awards .award_list li::marker {
  color: #42A1FF;
}
#case .cont .imgBox {
  margin-top: 30px;
}

#flow ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #flow ul {
    display: block;
    margin-top: 60px;
  }
}
#flow ul .cont {
  position: relative;
  background: #F6F9FC;
  border-radius: 8px;
  padding: 56px clamp(0px, 2vw, 20px) 10px;
  box-sizing: border-box;
  width: 23%;
  letter-spacing: 0;
}
@media screen and (max-width: 860px) {
  #flow ul .cont {
    width: 100%;
    padding-top: 40px;
    margin-top: 20px;
  }
}
#flow ul .cont .num {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  background: #10375E;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 860px) {
  #flow ul .cont .num {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}
#flow ul .cont h3 {
  font-size: clamp(0px, 2.4vw, 24px);
  font-weight: bold;
  color: #10375E;
  letter-spacing: 0;
}
@media screen and (max-width: 860px) {
  #flow ul .cont h3 {
    font-size: 2.2rem;
  }
}
#flow ul .cont .img {
  margin: 24px auto;
}
@media screen and (max-width: 860px) {
  #flow ul .cont .img img {
    margin: 0 auto;
  }
}
#flow ul .cont p {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 860px) {
  #flow ul .cont p {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
#flow ul .arrow {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  #flow ul .arrow {
    display: block;
  }
  #flow ul .arrow img {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

#faq dl + dl {
  margin-top: 50px;
}
#faq dl dt {
  display: flex;
  align-items: center;
  background: #F6F9FC;
  padding: 16px 20px;
  box-sizing: border-box;
}
#faq dl dt span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-left: 16px;
}
#faq dl dt::before {
  content: "Q";
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  color: #42A1FF;
  font-weight: 700;
}
#faq dl dd {
  display: flex;
  align-items: flex-start;
  padding: 0 30px;
  margin-top: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #faq dl dd {
    padding: 0 15px;
  }
}
#faq dl dd::before {
  content: "A";
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-top: 0.2em;
  font-weight: 700;
}
#faq dl dd p {
  margin-left: 16px;
  font-size: 1.6rem;
}

.footer_linkBox {
  background: #0059B2;
  padding: 60px 30px;
  box-sizing: border-box;
  color: #fff;
  margin-top: 120px;
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 20px;
  margin-bottom: -112px;
}
@media screen and (max-width: 860px) {
  .footer_linkBox {
    padding: 20px;
  }
}
.footer_linkBox .cont_size_box {
  display: flex;
  justify-content: space-between;
  max-width: 720px;
}
@media screen and (max-width: 860px) {
  .footer_linkBox .cont_size_box {
    display: block;
  }
}
.footer_linkBox .cont_size_box .btn {
  width: 44.444%;
}
@media screen and (max-width: 860px) {
  .footer_linkBox .cont_size_box .btn {
    width: 100%;
  }
  .footer_linkBox .cont_size_box .btn + .btn {
    margin-top: 30px;
  }
}
.footer_linkBox .cont_size_box .btn p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.footer_linkBox .cont_size_box .btn p::before {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(-30deg);
  margin-right: 20px;
}
.footer_linkBox .cont_size_box .btn p::after {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  display: block;
  transform: rotate(30deg);
  margin-left: 20px;
}
.footer_linkBox .cont_size_box .btn a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-weight: bold;
  padding: 14px 0;
  transition: 0.3s;
}
.footer_linkBox .cont_size_box .btn a:hover {
  filter: invert(1);
  background: #000;
}
.footer_linkBox .cont_size_box .btn a img {
  width: 24px;
  margin-right: 10px;
}

#formPage .flex {
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #formPage .flex {
    display: block;
  }
}
#formPage .flex .leftBox {
  width: 50%;
}
@media screen and (max-width: 860px) {
  #formPage .flex .leftBox {
    width: 100%;
  }
}
#formPage .flex .leftBox h2 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: left;
}
@media screen and (max-width: 860px) {
  #formPage .flex .leftBox h2 {
    font-size: 2.8rem;
  }
}
#formPage .flex .leftBox h2 small {
  display: block;
  color: #222C69;
  font-size: 0.75em;
}
#formPage .flex .leftBox .img {
  margin-bottom: 32px;
}
#formPage .flex .leftBox h3 {
  text-align: left;
  font-size: 2.4rem;
  margin-top: 32px;
  margin-bottom: 15.5px;
}
#formPage .flex .leftBox p {
  font-size: 1.6rem;
  line-height: 1.7;
}
#formPage .flex .leftBox ul {
  background: #F6F9FC;
  border-radius: 8px;
  padding: 30px;
}
#formPage .flex .leftBox ul li {
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  color: #222C69;
  line-height: 1.7;
}
#formPage .flex .rightBox {
  width: 47.6%;
}
@media screen and (max-width: 860px) {
  #formPage .flex .rightBox {
    width: 100%;
    margin-top: 40px;
  }
}
#formPage .flex .rightBox #crmWebToEntityForm {
  padding-top: 0;
}
#formPage .flex .rightBox #crmWebToEntityForm a {
  color: #42A1FF;
  text-decoration: underline;
}
#formPage .flex .rightBox .zcwf_col_fld, #formPage .flex .rightBox .zcwf_col_lab {
  width: 100%;
}
#formPage .flex .rightBox input {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}
#formPage .flex .rightBox textarea {
  width: 100%;
  height: 6em;
  box-sizing: border-box;
  padding: 5px;
}/*# sourceMappingURL=style.css.map */