@charset "utf-8";

/* 
=================================================================================

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}
h1, h2, h3, h4, h5 {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* SP用 */
  html {
    font-size: calc(10vw / 768 * 100); /* 最大値768px、文字サイズ10pxの場合 */
  }
  .inner {
    width: 100%;
    padding: 0 5rem;
    max-width: 100%;
    margin: auto;
  }
}

.wrapper{
  position: relative;
  overflow: hidden;
}

/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go {
  font-family: "Noto Sans JP", sans-serif;
}
.pop {
  font-family: "Poppins", sans-serif;
}
.b {
  font-weight: bold;
}
.m {
  font-weight: 500;
}

/* 
=================================================================================

▼▼▼　ちらつき対策（CSS）　▼▼▼

=================================================================================
*/

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s all;
  opacity: 1;
  pointer-events: all;
}


.mv{
  position: relative;
}
.mv_bg{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#013893;
  clip-path: polygon(
        0 0,
        100% 0,
        100% 90%,
        0 100%
  );
  z-index:0;
}
.mv_inner{
  max-width: min(91.67vw , 110rem);
  padding-top: min(2.5vw, 3rem);
  margin: auto;
  position:relative;
  z-index:1;
}
.mv_logo{
  width: min(33.333vw, 40rem);
  margin: auto;
}
.mv_title{
  width: min(87.5vw, 105rem);
  margin: min(1.667vw, 2rem) auto;
  font-size: min(3.917vw, 4.7rem);
  color: #f7b400;
  text-align: end;
}
.mv_title span{
  font-size: min(8.333vw, 10rem);
  text-align: end;
}
.mv_icon1{
  width: min(35vw, 42rem);
  height: min(8.333vw, 10rem);
  font-size: min(4.167vw, 5rem);
  font-weight: bold;
  border-radius: min(1.25vw, 1.5rem);
  text-align: center;
  color: #003893;
  background-color: #ffffff;
  margin-left: auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mv_icon2{
  width: min(35vw, 42rem);
  height: min(8.333vw, 10rem);
  font-size: min(5vw, 6rem);
  font-weight: bold;
  border-radius: min(1.25vw, 1.5rem);
  margin-top: min(0.833vw, 1rem);
  text-align: center;
  color: #ffffff;
  background-color: #d00039;
  margin-left: auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mv_link{
  width: min(35vw, 42rem);
  font-size: min(3.333vw, 4rem);
  font-weight: bold;
  padding: min(0.833vw, 1rem) 0;
  border-radius: min(6vw, 7rem);
  margin-top: min(4.167vw, 5rem);
  gap: min(1.25vw, 1.5rem);
  text-align: center;
  background-color: #f7b400;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:none;
}
.mv_link:hover .arrow01 .material-symbols-outlined{
  animation: arrowAnime .180s;
}
@keyframes arrowAnime {
  0% { transform: translateX(0); }
  49% { transform: translateX(2rem); }
  50% { transform: translateX(-2rem); }
  51% { transform: translateX(-2rem); }
  100% { transform: translateX(0); }
}
.mv_link.is-fixed{
  position: fixed;
  width: 60%;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  margin: 0;
  z-index: 999;
  box-shadow: 10px 10px 10px -10px #bdbdbd;
  color: #f7b400;
  background-color: #413d3c;
}
.mv_link.is-fixed .arrow01 .material-symbols-outlined{
  color: #f7b400;
}
.arrow{
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow01{
  width: min(4.167vw, 5rem);
  height: min(4.167vw, 5rem);
  overflow: hidden;
}
.arrow01 .material-symbols-outlined{
  font-size: min(4.167vw, 5rem);
  font-weight: bold;
}
.img01{
  width: min(33.333vw, 40rem);
  position: absolute;
  bottom: 0;
  left: calc(50% - min(40vw, 48rem));
}


.section_inner{
  max-width: 90rem;
  margin: auto;
}
.sec01_title{
  font-size: 3rem;
  text-align: center;
  color: #ffffff;
  padding: 1rem 7rem;
  background-color: #413d3c;
  border-radius: 6rem;
  width: fit-content;
  margin: auto;
}
.problem_list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem 1rem;
  position: relative;
}
.problem_item1 { grid-area: 1 / 1 / 3 / 3; }
.problem_item2 { grid-area: 1 / 3 / 3 / 5; }
.problem_item3 { grid-area: 3 / 1 / 5 / 3; }
.problem_item4 { grid-area: 5 / 1 / 7 / 3; }
.problem_item5 { grid-area: 3 / 3 / 7 / 5; }

.problem_item{
  font-size: 2rem;
  padding: 2rem;
  color: #ffffff;
  background-color: #413d3c;
  border-radius: 2rem;
  position: relative;
}
.problem_item::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 90%;
  border-style: solid;
  border-width: 2rem 0 0 2rem;
  border-color: #413d3c transparent transparent;
  translate: -50% 100%;
  transform: skew(-1deg);
  transform-origin: top;
}
.problem_item:last-child:after{
  display: none;
}
.problem_item span{
  color: #f7b400;
}
.problem_item5{
  position: absolute;
  bottom: 0;
  right: 4rem;
  background-color: transparent;
}
.problem_item5 img{
  width: 35rem;
}
.bg_blue{
  background-color: #003893;
}
.f_blue{
  color: #003893;
}
.f_white{
  color: #fff;
}
.section_title{
  font-size: 5rem;
  text-align: center;
}
.sec01_logo{
  width: 63rem;
  margin: auto;
}
.sec01_note02{
  font-size: 2.7rem;
  text-align: center;
  padding: 4rem 3rem;
  margin-top: 3.5rem;
  background-color: #f7b400;
  border-radius: 1.5rem;
  position: relative;
}
.section_subtitle{
  font-size: 4rem;
  text-align: center;
}

.sec02_title01{
  background-color: #413d3c;
  color: #ffffff;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 5rem 0 0 5rem;
}
.sec02_title02{
  background-color: #f7b400;
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 0 5rem 5rem 0;
}
.bg_orange{
  background-color: #f7b400;
}
.bg_black{
  background-color: #413d3c;
}
.f_orange{
  color: #f7b400;
}
.f_black{
  color: #413d3c;
}
.before_after{
  font-size: 2rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.before_after_item{
  width: calc(50% - 2.5rem);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  position: relative;
}
.before{
  border: solid #413d3c 0.5rem;
}
.after{
  border: solid #f7b400 0.5rem;
}
.before::after{
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  font-weight: 900;
  font-style: normal;
  font-size: 5rem;
  color: #f7b400;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5.25rem;
}
.before_after_item h3{
  font-size: 3.5rem;
  position: absolute;
  top: -2.6rem;
  right: 50%;
  transform: translateX(50%);
  background-color: #ffffff;
  padding: 0 3rem;
}
.indent{
  text-indent: -2rem;
  padding-left: 2rem;
}
.before .before_after_contents span{
  background: linear-gradient(transparent 55%, #cfe5f6 55%);
}
.after .before_after_contents span{
  background: linear-gradient(transparent 55%, #f7b400 55%);
}

.sec03{
  position: relative;
  z-index: 0;
  margin-top: 11rem;
}
.work_contents{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.work_item{
  width: 100%;
  border: solid #003893 0.3rem;
  border-radius: 2rem;
  background-color: #ffffff;
}
.work_title{
  font-size: 3.6rem;
  height: 12rem;
  color: #f7b400;
  background-color: #003893;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work_list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 3rem;
  padding: 2.5rem 4rem;
  border-radius: 0 0 3rem 3rem;
}
.work_list li{
  width: calc(50% - 1.5rem);
  font-size: 2rem;
  border-bottom: dotted #003893 0.1rem;
  text-indent: -2rem;
  padding-left: 2rem;
}
.work_item2 .work_list li:last-child{
  width: 58%;
}
.work_item1 .work_title::after{
  content: "";
  display: block;
  width: 12rem;
  height: 13rem;
  background-image: url(../img/img06.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -3rem;
  left: calc(50% - 40rem);
}
.work_item2 .work_title::after{
  content: "";
  display: block;
  width: 12rem;
  height: 13rem;
  background-image: url(../img/img07.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -3rem;
  left: calc(50% + 25rem);
}
.work_item3 .work_title::after{
  content: "";
  display: block;
  width: 12rem;
  height: 13rem;
  background-image: url(../img/img08.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -3rem;
  left: calc(50% - 46rem);
}
.img05{
  position: absolute;
  width: 144rem;
  top: -9rem;
  right: calc(50% - 55rem);
  z-index: -1;
}
.arrow02{
  text-align: center;
  color: #f7b400;
}
.arrow02 .material-symbols-outlined{
  font-size: 12rem;
  font-weight: bold;
}
.contents_text01{
  width: 50rem;
  margin: auto;
}

.section_inner2{
  max-width: 100rem;
  margin: auto;
}
.solution_box{
  position: relative;
  margin-top: 3rem;
  padding-bottom: 5rem;
}
.solution_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #013893;
  clip-path: polygon(
      0 10%,
      100% 0,
      100% 100%,
      0 100%
  );
  z-index: -1;
}
.img09{
  width: 13rem;
  position: absolute;
  top: -12rem;
  right: calc(50% - 51rem);
}
.problem_list2{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex-wrap: wrap;
}
.problem_list2 li{
  width: calc(99.99% / 4 - 0.8rem);
  height: 21rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  text-align: center;
  background-color: #f7b400;
  border-radius: 50%;
}
.orange_ul{
  background: linear-gradient(transparent 70%, #f7b400 30%);
}
.solution_list{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.solution_list li{
  width: calc(99.99% / 3 - 1rem);
  min-height: 37rem;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 2rem;
}
.m_center{
  margin: auto;
}
.w210{
  width: 21rem;
}
.w140{
  width: 14rem;
}
.w245{
  width: 24.5rem;
}
.solution_list h4{
  font-size: 2.6rem;
  height: 10rem;
  color: #003893;
  text-align: center;
}
.solution_list p{
  line-height: 2;
}

.sec04_inner{
  padding: 6rem 0;
}
.logo04{
  width: 63rem;
  margin: auto;
}
.sec04_text01{
  font-size: 2.6rem;
  text-align: center;
  margin-top: 3rem;
}
.work_contents2{
  flex-direction: initial;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  z-index: 0;
}
.work_contents2 .work_item{
  width: calc(50% - 1.5rem);
}

.contents_text08{
  width: 32rem;
  margin: auto;
}
.contents_text09{
  width: 44rem;
  margin: auto;
}
.contents_text10{
  width: 36rem;
  margin: auto;
}
.contents_text11{
  width: 27rem;
  margin: auto;
}
.contents_text12{
  width: 39rem;
  margin: auto;
}
.work_contents2 .work_list li{
  width: 100%;
}
.img11{
  width: 83rem;
  position: absolute;
  bottom: -1rem;
  right: calc(50% - 50rem);
  z-index: -1;
}

.sec04_inner2{
  padding: 9rem 0;
}
.contents_text13{
  width: 16rem;
  margin: auto;
}
.case_list{
  font-size: 1.6rem;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
}
.case_item{
  width: calc(99.99% / 3 - 0.5rem);
} 
.case_item_inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
.case_item h3{
  font-size: 2.4rem;
  text-align: center;
}
.case_text{
  font-size: 1.8rem;
  color: #ffffff;
  background-color: #d00039;
  padding: 2rem;
  border-radius: 1.5rem;
}

.sec05_inner{
  padding: 9rem 0 6rem;
}
.contents_text14{
  width: 44rem;
  margin: auto;
  position: relative;
}
.contents_text14::after{
  content: "";
  display: block;
  width: 10rem;
  height: 15.5rem;
  background-image: url(../img/img15.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -6rem;
  right: calc(50% - 34rem);
}
.sec05_text{
  font-size: 2rem;
  line-height: 2;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
.sec05_text p{
  flex: 1;
}
.img22{
  width: 38rem;
}
.img23{
  margin-top: -5rem;
}
.contents_text15{
  width: 54rem;
  margin: 7rem auto 0;
  position: relative;
}
.contents_text15::after{
  content: "";
  display: block;
  width: 12rem;
  height: 19.5rem;
  background-image: url(../img/img17.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -6rem;
  right: calc(50% + 30rem);
}
.sec05_text2{
  max-width: 90rem;
  margin: 3rem auto 0;
  font-size: 2rem;
  line-height: 2;
}
.img24{
  margin-top: -2rem;
}

.sec06_inner{
  max-width: 71rem;
  margin: 8rem auto;
}
.img19{
  width: 53rem;
  margin: 0 auto 3rem;
}

.sec07_inner{
  padding: 8rem 0;
}
.logo05{
  width: 63rem;
  margin: auto;
}
.sec07_bg{
  margin-top: 3rem;
  padding: 8rem 0;
  background-color: #ffffff;
  border-radius: 3rem;
}
.flow_list{
  max-width: 60rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8rem;
  position: relative;
}
.flow_list::before{
  content: "";
  display: block;
  width: 21rem;
  height: 32.5rem;
  background-image: url(../img/img20.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -15rem;
  right: calc(50% - 48rem);
}
.flow_list::after{
  content: "";
  display: block;
  width: 18rem;
  height: 22.4rem;
  background-image: url(../img/img21.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -5rem;
  left: calc(50% - 53rem);
}
.flow_item{
  position: relative;
}
.flow_item::after{
  content: "arrow_downward";
  font-family: "Material Symbols Outlined";
  font-weight: 900;
  font-size: 6rem;
  color: #003893;
  display: inline-block;
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
}
.flow_item:last-child::after{
  display: none;
}
.flow_item_title{
  width: 42rem;
  margin: auto;
  font-size: 3rem;
  text-align: center;
  color: #ffffff;
  background-color: #003893;
  border-radius: 3rem;
  padding: 0.75rem 0;
}
.flow_item_text{
  font-size: 2rem;
  margin-top: 2rem;
}

.sec08_inner{
  padding: 10rem 0 5rem;
}
.contents_text17{
  width: 24rem;
  margin: auto;
}
.faq_list{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 6rem;
}
.faq{
  width: 100%;
}
.question{
  font-size: 3rem;
  letter-spacing: -0.1rem;
}
.answer{
  font-size: 2rem;
  padding: 2.5rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
}
.footer_inner{
  padding: 7rem 0 15rem;
}
.logo06{
  width: 32rem;
  margin: auto;
}
.disclaimer{
  max-width: 100rem;
  margin: auto;
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .mv_bg{
    clip-path: polygon(0 0,100% 0,100% 95%,0 100%);
  }
  .mv_inner{
    padding-top: 5rem;
    padding-bottom: 9rem;
  }
  .mv_logo{
    width: 46rem;
  }
  .section_inner2{
    max-width: 71rem;
  }
  .mv_title{
    width: 67rem;
    margin: 2.5rem 0;
  }
  .mv_icon1,.mv_icon2{
    width: 27rem;
    height: 18rem;
    line-height: 1.1;
    border-radius: 2rem;
  }
  .mv_icon1{
    margin-top: 8rem;
    font-size: 6rem;
  }
  .mv_icon2{
    margin-top: 2rem;
    font-size: 7rem;
  }
  .mv_link{
    width: 42rem;
    font-size: 4rem;
    margin: 5rem auto 0;
  }
  .img01{
    width: 39rem;
    bottom: 21rem;
    left: calc(50% - 33rem);
  }
  .section_inner{
    max-width: 69rem;
  }
  .problem_list{
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 3rem 1rem;
    font-size: 2.4rem;
  }
  .problem_item{
    font-size: 2.4rem;
  }
  .problem_item1 { grid-area: 1 / 1 / 3 / 4; }
  .problem_item2 { grid-area: 3 / 3 / 5 / 6; }
  .problem_item3 { grid-area: 5 / 1 / 7 / 4; }
  .problem_item4 { grid-area: 7 / 3 / 9 / 6; }
  .problem_item5 { grid-area: 9 / 2 / 13 / 5; }
  .sec01_note02::after{
    content: "";
    display: block;
    width: 11.3rem;
    height: 19.1rem;
    background-image: url(../img/img25.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -2rem;
    left: 1rem;
  }
  .section_inner_sp{
    max-width: 63rem;
  }
  .section_subtitle{
    font-size: 3.4rem;
  }
  .sec02_title01{
    padding: 1rem 1rem 1rem 5rem;
  }
  .sec02_title02{
    padding: 1rem 5rem 1rem 1rem;
  }
  .before_after{
    gap: 10rem;
  }
  .before_after_item{
    font-size: 2.2rem;
  }
  .before_after_item{
    width: 100%;
  }
  .before::after{
    content: "arrow_downward";
    font-size: 8rem;
    top: initial;
    bottom: -10.5rem;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
  .after::after{
    content: "";
    display: block;
    width: 5.5rem;
    height: 21.4rem;
    background-image: url(../img/img26.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 2.5rem;
    right: -4.5rem;
  }
  .sec01_logo{
    width: 60rem;
  }
  .img05{
    top: -3rem;
    right: calc(50% - 37rem);
  }
  .work_contents{
    gap: 6rem;
  }
  .work_list{
    padding: 3rem 1rem;
    gap: 3rem 1rem;
  }
  .work_list li{
    width: calc(50% - 0.5rem);
    font-size: 2.4rem;
    border-bottom: dotted #003893 0.1rem;
    text-indent: -1.8rem;
    padding-left: 1.8rem;
  }
  .work_title{
    height: 11rem;
  }
  .work_item1 .work_title::after{
    left: calc(50% - 33.5rem);
  }
  .work_item2 .work_title::after{
    left: calc(50% + 22rem);
  }
  .work_item3 .work_title::after{
    left: calc(50% - 33.5rem);
  }
  .arrow02{
    padding: 4rem 0 2rem;
  }
  .problem_list2{
    width: 46.3rem;
    margin: auto;
  }
  .problem_list2 li{
    width: calc(99.99% / 2 - 0.5rem);
    height: 22.3rem;
  }
  .contents_text01{
    width: 40rem;
  }
  .img09{
    top: -7rem;
    right: calc(50% - 35rem);
  }
  .solution_list li{
    width: calc(99.99% / 2 - 1rem);
  }
  .solution_list h4{
    font-size: 2.4rem;
  }
  .solution_list p{
    font-size: 2.4rem;
  }
  .solution_bg{
    clip-path: polygon( 0 6%,100% 0,100% 100%,0 100%);
  }
  .logo04{
    width: 60rem;
  }
  .sec04_inner{
    padding: 6rem 0 3rem;
  }
  .work_contents2{
    gap: 2rem;
  }
  .work_contents2 .work_list{
    padding: 2rem;
  }
  .work_contents2 .work_title{
    height: 9rem;
  }
  .contents_text08{
    width: 22.7rem;
  }
  .contents_text09{
    width: 31rem;
  }
  .contents_text10{
    width: 25.5rem;
  }
  .contents_text11{
    width: 19rem;
  }
  .contents_text12{
    width: 27.5rem;
  }
  .work_list li{
    font-size: 2.4rem;
  }
  .indent{
    text-indent: -2.4rem !important;
    padding-left: 2.4rem !important;
  }
  .flow_item_text{
    font-size: 2.4rem;
  }
  .answer{
    font-size: 2.4rem;
  }
  .sec05_text2{
    font-size: 2.8rem;
  }
  .sec05_text p{
    font-size: 2.8rem;
  }
  .case_item_inner{
    font-size: 2.4rem;
  }
  .img11{
    width: 61rem;
    bottom: -3rem;
    right: calc(50% - 35rem);
  }
  .sec04_inner2{
    max-width:100% !important;
  }
  .case_item{
    padding: 0 2.5rem;
  }
  .sec05_text{
    flex-direction: column;
  }
  .img22{
    width: 63rem;
    margin: auto;
  }
  .img23{
    margin-top: 2.5rem;
  }
  .contents_text15::after{
    right: calc(50% + 27rem);
  }
  .sec05_text2{
    max-width: 67rem;
  }
  .img24{
    margin-top: 2.5rem;
  }
  .flow_list::before,
  .flow_list::after{
    display: none;
  }
  .disclaimer{
    max-width: 71rem;
  }
  .logo06{
    width: 46rem;
  }
  .sec04_text01{
    font-size: 2.8rem;
  }
  .disclaimer{
    font-size: 2rem;
  }
}