@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
html{
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  letter-spacing: 0;
}
body{ 
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: normal;
  min-width: 320px;
}
/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */
.sp{ display: none !important;}
.tb-sp{ display: none !important;}
.pc{ display: block !important;}
.pc-tb{ display: block !important;}
.tb{ display: none !important;}

@media only screen and (max-width: 1100px){
  .pc{ display: none !important;}
  .pc-tb{ display: block !important;}
  .tb{ display: block !important;}
  .tb-sp{ display: block !important;}
  .tb-none{ display: none !important;}
  .sp{ display: none !important;}
}
@media only screen and (max-width: 768px){
  .pc-tb{ display: none !important;}
  .tb{ display: none !important;}
  .tb-sp{ display: block !important;}
  .tb-none{ display: none !important;}
  .pc{ display: none !important;}
  .sp{ display: block !important;}
}
/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */
:root { 
  --section-inner: 80px;
  --section-inner-top: 60px;
  --section-inner2: 160px;
  --section-inner-offset: -80px;
}
.block{ overflow: hidden;}
.section-inner{ padding:var(--section-inner-top) 0 var(--section-inner) 0;}
.wrap{ max-width: 1000px; width: 90%; margin:0 auto;}
.max-wrap{ max-width: 1100px; width: 100%; margin: 0 auto;}
.min-wrap{ max-width: 900px; width: 100%; margin: 0 auto;}
img{ width: 100%;}
a{ transition: all 0.5s 0s ease; color: #18168D;}
.link-txt{ text-decoration: underline !important; color: #236ED5;}
.en{ font-family: "Barlow Condensed", sans-serif; letter-spacing: .05em;}
.bg-white{ background-color: #fff;}
.c-wht{ color: #fff;}
.c-blue{ color: #18168D;}
.v-t{ vertical-align: top;}
.v-m{ vertical-align: middle;}
.v-b{ vertical-align: bottom;}
.t-l{ text-align: left;}
.t-c{ text-align: center;}
.t-r{ text-align: right;}
.f-mid{ font-weight: 500;}
.f-bold{ font-weight: bold;}
.txt{ line-height: 1.8em;}
.pd-top0{ padding-top: 0 !important;}
.pd-bottom0{ padding-bottom: 0 !important;}
.pd-bottom40{ padding-bottom: 40px !important;}

/*  ------------------------------------------------------- 
  wrapper
-------------------------------------------------------  */
.wrapper {
  /*　padding-top: var(--fixed-header-height);　*/
  padding-top: 0;
}
/*  ------------------------------------------------------- 
  header
-------------------------------------------------------  */
:root { 
  --fixed-header-height: 104px;
  --is-scroll: 104px;
}
@media screen and (max-width: 1000px) {
  :root { 
    --fixed-header-height: 76px;
    --is-scroll: 76px;
  }
}
@media screen and (max-width: 768px) {
  :root { 
    --fixed-header-height: 60px;
    --is-scroll: 60px;
  }
}
.header {
  width: 100%;
  top: 0;
  left: 0;
  height: var(--fixed-header-height);
  position: fixed;
  z-index: 3;
  transition: all 0.5s 0s ease;
}
/*  header-container
-------------------------------------------------------  */
.header-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 2%;
}
/*  header-logo
-------------------------------------------------------  */
.header-logo {
  width: 230px;
  margin-right: auto;
}
.header-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}
/*  header-menu
-------------------------------------------------------  */
@media screen and (min-width: 1001px) {
  .header-menu { display: block !important;}
}
/*  header-nav
-------------------------------------------------------  */
.header-menu-container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.header-sub{
  margin-bottom: 12px;
}
.header-sub .header-sub-list{
  display: flex;
  justify-content: end;
  gap: 10px;
}
.header-sub-item.tel{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff; 
}
.header-sub-item.tel a{
  display: flex;
  align-items: end;
  gap: 2px;
  color: #fff; 
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .1em;
}
.header-sub-item.tel a img{
  width: 25px;
}
.header-sub-item.tel p{
  display: block;
  text-align: center;
  font-size: 1.1rem;
  transition: all 0.5s 0s ease;
}
.header-sub-item.tel p span{
  display: block;
}
.header-sub-item.button a{
  padding: 5px 20px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1001px) {
  .header-sub-item.button a{
    height: 36px;
  }  
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav-item{
  font-weight: bold;
  font-size: 1.4rem;
}
.header-nav-item.external a{
  position: relative;
  padding-right: 20px;
}
.header-nav-item.external a::after{
  position: absolute;
  content:'';
  background: url(../images/icon/btn_external.svg) no-repeat center;
  width: 12px;
  height: 10px;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.header-nav-link{
  color: #fff;
  display: block;
}
.header-nav-link:hover{
  opacity: .6;
}
.header-sub-link{
  display: none;
}

/*  header-hover style
-------------------------------------------------------  */
@media screen and (min-width: 1001px) {
  .header:hover{
    background: #fff;
  }
  .header:hover .header-nav-link,
  .header:hover .header-sub-item.tel p{
    color: #333;
  }
  .header:hover .header-sub-item.tel a{
    color: #004FDE;
  }
  .header:hover .header-nav-item.external a::after{
    background: url(../images/icon/btn_external_gray.svg) no-repeat center;
  }
}
/*  header is-scroll
-------------------------------------------------------  */
.header.is-scroll{
  height: var(--is-scroll);
  background: #fff;
}
/*
.header.is-scroll .header-sub{
  margin-bottom: 7px;
}*/
.header.is-scroll .header-nav-link,
.header.is-scroll .header-sub-item.tel p,
.header.is-scroll .header-sub-item.tel a{
  color: #333 !important;
}
.header.is-scroll .header-nav-item.external a::after{
  background: url(../images/icon/btn_external_gray.svg) no-repeat center;
}

/*  header-menu-button
-------------------------------------------------------  */
.header-menu-button {
  display: none;
  position: relative;
  padding: 30px 23px;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 0;
  background: none;
  background: linear-gradient(45deg, #61C1FC 0%, #236ED5 100%);
  margin: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  touch-action: manipulation;
  cursor: pointer;
}
.header-menu-button__lines {
  position: relative;
  display: block;
  width: 30px;
  height: 14px;
}
.header-menu-button__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.header-menu-button__line--top {
  top: 0;
}
.is-menu-opened .header-menu-button__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header-menu-button__line--center {
  top: 50%;
  margin-top: -1px;
}
.is-menu-opened .header-menu-button__line--center {
  background-color: rgba(0, 0, 0, 0);
}
.header-menu-button__line--bottom {
  bottom: 0;
}
.is-menu-opened .header-menu-button__line--bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/*  ------------------------------------------------------- 
  kv-img
-------------------------------------------------------  */
.kv {
  position: relative;
  overflow: hidden;
}
.video-contents {
  width: 100%;
  height: auto;
}
.video {
  width: 100%;
  height: 100%;
  display: block;
}
.kv-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1600px;
  letter-spacing: 0.05em;
}
@media  only screen and (max-width: 1800px){  
  .kv-txt {
    width: calc(100% - 10vw);
  }
}
.kv-txt .h1-ttl{
  font-size: 5.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3em;
}
.kv-txt .h1-ttl span{
  display: block;
  font-size: 1.8rem;
  line-height: 3.0em;
}

/*  ------------------------------------------------------- 
-----------------------------------------------------------
共通
-----------------------------------------------------------
-------------------------------------------------------  */
/*  ttl
-------------------------------------------------------  */
.ttl-box{
  margin-bottom: 4.0rem;
}
.ttl-box-min{
  margin-bottom: 2.0rem;
}
.ttl-box,
.ttl-box-min{
  text-align: center;
  color: #18168D;
}
.main-ttl{
  font-weight: bold;
}
.sub-ttl .en{
  font-size: 8.8rem;
  font-weight: 500;
}
.h2-ttl{
  font-size: 2.0rem;
}
.h3-ttl{
  font-size: 2.8rem;
}
.h4-ttl{
  font-size: 2.0rem;
}
.c-txt-18{
  font-size: 1.7rem;
  line-height: 1.6em;
}
.c-txt-20{
  font-size: 2.0rem;
}
.c-txt-24{
  font-size: 2.4rem;
}
.line-ttl:after{
  border-bottom: 2px solid #18168D;
  content: "";
  display: block;
  padding-top: 20px;
  width: 80px; 
}

/*  button
-------------------------------------------------------  */
.button a {
  background: #fff;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 320px;
  padding: 20px 25px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-decoration: none;
}
.button a:hover {
  background: linear-gradient(270deg, #00b7e1 0%, #0075c3 100%);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 30%), 0 0 5px rgb(0 0 0 / 30%);
}
.button .arrow:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #0033a6;
  border-right: 2px solid #0033a6;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  border-radius: 1px;
}
.button .arrow:hover:after {
  border-color: #FFF;
}
.button .external:after {
  content: '';
  width: 13px;
  height: 9px;
  background-image: url(../images/icon/btn_external.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.button.grd-button a{
  background: linear-gradient(45deg, #004CDD 0%, #0D94FC 100%);
  color: #FFF;
  transition: all .5s ease 0s; 
}
.button.grd-button .arrow:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.button.grd-button a:hover {
  background: linear-gradient(270deg, #004CDD 0%, #0D94FC 100%);
}
.button.wht-button a:hover {
  background: #fff;
}
.button-box-min{
  margin-top: 15px;
}
.txt-button a {
  color: #236ED5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
}
.txt-button a:hover {
  transform: translateY(-2px);
}
.txt-button a img {
  width: 26px;
  height: 26px;
}
.txt-button a:hover img {
  border-radius: 15px;
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 30%), 0 0 5px rgb(0 0 0 / 30%);
}

/*  list
-------------------------------------------------------  */
.li2 ul , .li3 ul, .li4 ul, .li5 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.li2 ul{ gap: 4%;}
.li2 ul li{ width: 48%;}
.li3 ul{ gap: 3%;}
.li3 ul li{ width: 31.3333%;}
.li4 ul{ gap: 2.6%;}
.li4 ul li{ width: 23%;}
.li5 ul{ gap: 4%;}
.li5 ul li{ width: 16.8%;}

/* acc
-------------------------------------------------------  */
.acc-container {
  margin-top: 30px;
  width: 100%;
}
.acc-list:not(:first-child){
  margin-top: 8px;
}
.acc-ttl {
  background: #fff;
  border-radius: 0.5em;
  cursor: pointer;
  color: #18168D;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 24px 50px 24px 15px;
  position: relative;
}
.acc-ttl:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #18168D;
  transform: rotate(90deg);
  transition: all .5s ease 0s; 
}
.acc-ttl:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #18168D;
  transition: all .5s ease 0s; 
}
.acc-ttl.open:before {
  transform: rotate(180deg);
}
.acc-ttl.open:after {
  opacity: 0;
}
.acc-txt {
  display: none;
  padding: 24px 50px 24px 15px;
}

/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */
/*  ---------------------------------------------------  */

/* bg
-------------------------------------------------------  */
.bg-lightblue{
  background-color: #EAF3F8;
}
.bg-blue{
  background: linear-gradient(135deg, #0F5FCE, #61C1FC);
  color: #fff;
}
.bg-blue2{
  background: linear-gradient(135deg, #61C1FC, #0F5FCE);
  color: #fff;
}
.bg-blue .ttl-box,
.bg-blue .ttl-box-min,
.bg-blue2 .ttl-box,
.bg-blue2 .ttl-box-min{
  color: #fff !important;
}

/* reasons
-------------------------------------------------------  */
.flex-box-item{
  display: flex;
  align-items: center;
  gap: 8%;
}
.flex-box-item:not(:first-child){
  margin-top: 60px;
}
.flex-box-item:nth-child(odd){
  flex-direction: row-reverse;
}
.flex-box-item .flex-box-img{
  width: 46%;
}
.flex-box-item .flex-box-txt{
  width: 43%;
}
@media(max-width : 768px ){
  .flex-box-item{
    display: block;
  }
}
.flex-box-item .flex-box-img{
  position: relative;
  z-index: 1;
}
.flex-box-item .flex-box-img::after{
  content: "";
  display: block;
  position: absolute;
  background: url(../images/bg_reasons01.webp) no-repeat center;
  right: -200px;
  top: -40px;
  width: 500px; 
  height: 200px;
  z-index: -1;
}
.flex-box-item:nth-child(even) .flex-box-img::after{
  background: url(../images/bg_reasons02.webp) no-repeat center;
  right: auto;
  left: -200px;
  top: auto;
  bottom: -40px;
}
.flex-box-item{
  position: relative;
}
.flex-box-item .flex-box-txt{
  z-index: 1;
}
.flex-box-item .flex-box-txt .num{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  font-size: 10.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 8rem;
  z-index: -1;
}
.flex-box-item:nth-child(even) .flex-box-txt .num{
  left: auto;
  right: 0;
}

/* service
-------------------------------------------------------  */
#service .wrap{
  position: relative;
}
#service .bg-icon-service{
  position: absolute;
  top: 0;
  right: -120px;
  content: "";
  background: url(../images/bg_icon_service.svg) no-repeat left bottom;
  background-size: contain;
  width: 300px;
  height: 300px;
  overflow: hidden;
}
#service .section-inner{
  padding-top: var(--section-inner2);
  margin-top: -120px;
}
.bg-service{
  background: url(../images/bg_service.webp) no-repeat top center;
  overflow: hidden;
}
.service-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3%;
}
.service-item{
  width: 31.3333%;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 35px 20px 30px;
  margin-top: 30px;
  color: #333;
}
.service-item .service-ttl span{
  background: linear-gradient(90deg, #004CDD, #0D94FC);
  border-radius: 30px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 8px 20px;
}
.service-item .service-ttl{
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-item .service-img{
  width: auto;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.service-item .service-img img{
  height: 100%;
}
.service-item .issue-list{
  margin-top: 25px;
  min-height: 90px;
}
.service-item:nth-child(4) .issue-list,
.service-item:nth-child(5) .issue-list{
  min-height: 70px;
}
.service-item .service-txt{
  position: relative;
  padding-top: 20px;
}
.service-item .service-txt::before{
  position: absolute;
  content: "";
  background: url(../images/icon/icon_bottomarrow.svg) no-repeat center;
  width: 20px;
  height: 10px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.issue-list li{
  position: relative;
  padding-left: 25px;
  color: #18168D;
  font-size: 1.4rem;
  font-weight: bold;
}
.issue-list li:not(:first-child){
  margin-top: 5px;
}
.issue-list li::before{
  position: absolute;
  content: "";
  background: url(../images/icon/icon_check.svg) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 2px;
  left: 0;
}

/* solution
-------------------------------------------------------  */
.tab-nav {
  position: relative;
  width: 23%;
  background-color: #F0F4F5;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border: solid 2px #F0F4F5;
  border-bottom: solid 2px #0041AD;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
  cursor: pointer;
  color: #858C94;
  font-weight: bold;
  padding: 16px 5px;
}
.tab-nav{
  margin-left: 2.66666667%;
  display: grid;
}
.tab-nav img{
  height: 30px;
  margin-bottom: 5px;
}
.tab-nav span{
  line-height: 1.5em;
}
.first-tab-nav{
  margin-left: 0%;
}
input:checked + .tab-nav {
  z-index: 2;
  background-color: #fff;
  border: solid 2px #0041AD;
  border-bottom: solid 2px #fff;
  color: #0041AD;
}
input[name="tab-nav"] {
  display: none;
}
.tab-content {
  display: none;
  z-index: 1;
  clear: both;
  border-top: solid 2px #0041AD;
  padding-top: 50px;
  position: relative;
  top: -2px;
}
.tab-nav .tab-active{
  display: none;
}
input:checked + .tab-nav .tab-active{
  display: block;
}
input:checked + .tab-nav .tab-none{
  display: none;
}
#tab01:checked ~ #tab01-content,
#tab02:checked ~ #tab02-content,
#tab03:checked ~ #tab03-content,
#tab04:checked ~ #tab04-content{
  display: block;
}
.solution-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3%;
}
.solution-item{
  width: 31.3333%;
  background-color: #F2F8FD;
  border-radius: 0.8rem;
  padding: 20px;
  margin-top: 30px;
}
.solution-item ul li{
  position: relative;
  margin-top: 8px;
  padding-left: 15px;
  font-weight: 500;
}
.solution-item ul li:first-child{
  margin-top: 20px;
}
.solution-item ul li::before{
  position: absolute;
  content: "";
  background: url(../images/icon/icon_circle.svg) no-repeat center;
  background-size: contain;
  width: 8px;
  height: 8px;
  display: block;
  top: 7px;
  left: 0%;
}
.solution-item .solution-block{
  display: flex;
  align-items: center;
  gap: 15px;
}
.solution-item .solution-block .solution-block-img{
  width: 70px;
  height: 70px;
  background-color: #F2F8FD;
  border-radius: 0.8rem;
  mix-blend-mode: multiply;
}
.solution-item .solution-block .solution-block-ttl{
  font-size: 1.8rem;
  font-weight: bold;
  color: #2F81FF;
}
.staffing{
  margin-top: 60px;
}
.staffing img{
  width: 160px;
}
.staffing .staffing-ttl{
  color: #18168D;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.flex-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

/* case client
-------------------------------------------------------  */
.case-item{
  background: #fff;
  border-radius: 0.8rem;
  padding: 3rem 3rem 0 3rem;
}
.case-block{
  display: flex;
  align-items: flex-start;
  gap: 4%;
  position: relative;
}
.case-block-img{
  width: 55%;
}
.case-block-txt{
  width: calc(100% - 44%);
  /* margin-top: 20px; */
}
.case-block-txt .num{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10.4rem;
  font-weight: 500;
  color: #EAF3F8;
  line-height: 1.0em;
  z-index: 0;
}
.case-icon{
  display: flex;
  gap: 10px;
}
.case-icon span{
  background: linear-gradient(90deg, #004CDD, #0D94FC);
  border-radius: 30px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 6px 13px;
}
.case-ttl-1{
  font-size: 1.8rem;
  font-weight: bold;
  color: #18168D; 
  padding: 30px 0 10px;
  position: relative;
  z-index: 1;
}
/* s-edit */
.pc-tb-txt{
  font-size: 1.7rem;
  padding-left: 10px;
  font-weight: bold;
}
.pc-tb-2{
  padding-left: 10px;
}
.case-ttl-2{
  font-size: 1.8rem;
  font-weight: bold;
  color: #18168D; 
  padding: 40px 0 10px;
  position: relative;
  z-index: 1;
}
.iks{
  font-size: 1.8rem;
  padding-left: 5px;
}
.case-txt{
  font-weight: bold;
  padding-top: 20px;
}
/* s-edit */
.idate{
  font-size: 1.2rem;
  padding: 5px 0 0 10px;
}
.case-item:not(:first-child){
  margin-top: 40px;
}
.case-item .acc-container{
  margin-top: 0;
  padding-top: 30px;
}
.case-item .acc-list{
  position: relative;
}
.case-item .acc-ttl{
  position: absolute;
  top: -50px;
  right: 0;
  width: 110px;
  padding: 0;
}
.case-item .acc-ttl span::before{
  content: "詳しくみる";
}
.case-item .acc-ttl.open span::before{
  content: "閉じる";
}
.case-item .acc-ttl:before,
.case-item .acc-ttl:after{
  right: 0;
}
.case-item .acc-txt{
  padding: 0;
}
.case-item .acc-ttl-box{
  background: linear-gradient(90deg, #004CDD, #0D94FC);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 16px 20px;
}
.acc-contents{
  padding-bottom: 30px;
  margin-top: 20px;
  display: flex;
  gap: 4%;
}
.case-box{
  padding: 25px 20px;
  border-radius: 0.8rem;
  width: 48%;
}
.case-before{
  position: relative;
  background: #F5F5F5;
}
.case-before::after{
  position: absolute;
  content: "";
  background: url(../images/icon/icon_rightarrow2.svg) no-repeat center;
  width: 20px;
  height: 20px;
  right: -6.7%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.case-after{
  background: #EAF3F8;
}
/* s-edit */
.cb-ttl-1, .cb-ttl-2, .cb-ttl-3, .cb-ttl-4{
  font-size: 1.8rem;
  font-weight: bold;
  color: #18168D;
  text-align: center;
  padding: 10px 0 40px;
  white-space: nowrap;
  overflow: hidden;
}
.case-before li,
.case-after li{
  position: relative;
  padding-left: 25px;
}
.case-before .cb-cm-1 li:not(:first-child){
  margin-top: 20px;
}
.case-after  .cb-cm-2 li:not(:first-child){
  margin-top: 45px;
}
.case-before .cb-cm-3 li:not(:first-child){
  margin-top: 20px;
}
.case-after .cb-cm-4 li:not(:first-child){
  margin-top: 10px;
}
.case-before li::before,
.case-after li::before{
  position: absolute;
  content: "";
  background: url(../images/icon/icon_check_before.svg) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 0;
}
.case-after li::before{
  background: url(../images/icon/icon_check_after.svg) no-repeat center;
  background-size: contain;
}
.case-logo-ttl{
  text-align: center;
  color: #18168D;
}
.case-logo-ttl .main-ttl .jp{
  position: relative;
}
.case-logo-ttl .main-ttl .jp::before{
  position: absolute;
  content: '';
  background: url(../images/case_logo_ttl01.webp) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 50px;
  left: -35px;
  top: 0px;
}
.case-logo-ttl .main-ttl .jp::after{
  position: absolute;
  content: '';
  background: url(../images/case_logo_ttl02.webp) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 50px;
  right: -35px;
  top: 0px;
}

#client .section-inner{
  padding: 60px 0 40px;
}
_:-ms-lang(x)::-ms-backdrop,
.client{
  display: -ms-grid;
  overflow: hidden;
}
.client-wrap {
  display: flex;
  overflow: hidden;
}
.client-list {
  display: flex;
  list-style: none;
}
.client-list-left{
  animation :scroll-left 40s infinite linear 0s both;
}
.client-list-right{
  animation :scroll-right 40s infinite linear 0s both;
}
.client-item {
  width: 180px;
}
.client-item > img{
  width: 100%;
}
@keyframes scroll-left {
  from { transform: translateX(0);}
  to { transform: translateX(-100%);}
}
@keyframes scroll-right {
  from { transform: translateX(-100%);}
  to { transform: translateX(0%);}
}

/* flow
-------------------------------------------------------  */
.flow-inner{
  margin-top: 30px;
  margin-bottom: 40px;
}
.flow-inner li{
  position: relative;
}
.flow-inner li:not(:last-child)::after{
  position: absolute;
  right: -18%;
  top: 30%;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/flow_rightarrow.svg) no-repeat center;
  background-size: contain;
}
.step-ttl{
  text-align: center;
  margin-top: 10px;
}
.step-ttl span{
  background: linear-gradient(90deg, #00256C, #234FC4);
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6px 20px;
}
.flow-ttl{
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

/* faq
-------------------------------------------------------  */
#faq .wrap{
  position: relative;
}
#faq .bg-icon-faq{
  position: absolute;
  bottom: var(--section-inner-offset);
  left: -120px;
  content: "";
  background: url(../images/bg_icon_faq.svg) no-repeat left bottom;
  background-size: contain;
  width: 350px;
  height: 350px;
  overflow: hidden;
}
.faq-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.faq-inner .ttl-box{
  margin-top: -20px;
}
.faq-contents{
  max-width: 70%;
}
.acc-q-ttl{
  position: relative;
  padding-left: 45px;
}
.acc-q-ttl:before{
  position: absolute;
  top: -5px;
  left: 0%;
  content: "";
  background: url(../images/faq_q.webp) no-repeat center;
  background-size: contain;
  width: 33px;
  height: 33px;
}
.acc-a-txt{
  position: relative;
  padding-left: 45px;
}
.acc-a-txt:before{
  position: absolute;
  top: -5px;
  left: 0%;
  content: "";
  background: url(../images/faq_a.webp) no-repeat center;
  background-size: contain;
  width: 33px;
  height: 33px;
}

/* company
-------------------------------------------------------  */
.company-movie{
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 60px;
  position: relative;
}
.company-movie iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 800px;
}
.bg-company-movie{
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

/* radio cm
-------------------------------------------------------  */
.radio{
  display: flex;
  justify-content: center;
  gap: 5%;
}
.radio-item{
  text-align: center;
}
.radio-item p{
  margin-top: 1rem;
}

/* location
-------------------------------------------------------  */
.location-inner{
  width: 40%;
  background-color: #fff;
  border-radius: 0.7em;
  padding: 3rem;
}
.location-inner .bg-ttl{
  background-color: #EAF3F8;
  border-radius: 0.2em;
  color: #18168D;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.location-inner .bg-ttl:not(:first-child){
  margin-top: 3rem;
}
.location-inner ul{
  display: flex;
  flex-wrap: wrap;
}
.location-inner ul li{
  width: 50%;
  margin-bottom: 0.7rem;
}
.location-inner ul li:last-child{
  margin-bottom: 0;
}
.location-inner ul li::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.8rem;
  height: 0.8rem;
  background: linear-gradient(90deg, #004CDD, #0D94FC);
  border-radius: 50%;
  margin-right: 8px;
}
.location .wrap{
  position: relative;
}
.location .map{
  position: absolute;
  top: -3%;
  right: 50px;
  width: 45%;
}

/* contact
-------------------------------------------------------  */
.contact-inner{
  margin-top: 4rem;
}
.contact-inner ul li{
  background: #fff;
  border-radius: 0.7em;
  text-align: center;
  padding: 3.5rem 2rem;
}
.contact-inner ul li .h4-ttl{
  color: #18168D;
  margin-bottom: 2rem;
}
.contact-inner ul li .tel{
  color: #18168D;
}
.contact-inner ul li .tel a{
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0.1em;
}
.contact-inner ul li .tel a img{
  width: 4rem;
  padding-right: 0.5rem;
}
.contact-inner ul li .tel p{
  padding-top: 0.5rem;
}
@media screen and (min-width: 769px) {
  a[href^="tel:"] { pointer-events: none; cursor: default; text-decoration: none; }
}

/*  footer
-------------------------------------------------------  */
.footer-contents{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
.footer-logo{
  width: 240px;
}
.footer-logo img{
  display: block;
}
.footer-link{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-nav-list{
  display: flex;
}
.footer-nav-item{
  color: #666666;
  font-size: 1.4rem;
  padding: 0 1.5rem;
}
.footer-nav-item a{
  color: #666666;
}
.footer-nav-item a::after{
  content: "";
  display: inline-block;
  background-image: url(../images/icon/btn_external_gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  width: 15px;
  height: 10px;
}
.footer-nav-item a:hover{
  opacity: .6;
}
.footer-nav-item:not(:first-child){
  border-left: 1px solid #666666;
}
.footer-privacy{
  width: 50px;
}
.footer-copy{
  border-top: 1px solid #DDDDDD;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  text-align: center;
  color: #434343;
}

/*  pagetop
-------------------------------------------------------  */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #18168D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop-arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

/*  ------------------------------------------------------- 
-----------------------------------------------------------
effect
-----------------------------------------------------------
-------------------------------------------------------  */
/* scl ｜下から上、右から、左から出現 */
.scl {
  transition: 0.8s ease-in-out;
  transform: translateY(0);
  opacity: 0;
}
.scl.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scl-up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scl-up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scl-left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scl-left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
.scl-right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scl-right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
.scl-time02 {transition-delay: .2s;}
.scl-time03 {transition-delay: .4s;}
.scl-time04 {transition-delay: .6s;}
.scl-time05 {transition-delay: .8s;}
/*  ---------------------------------------------------  */
.fade{
  transition: 0.8s ease-in-out;
  transform: translateY(0px);
  opacity: 0;
}
.fade.on {
  transform: translateY(0);
  opacity: 1.0;
}
@keyframes fadeIn { 0% {opacity: 0} 100% {opacity: 1} }
@-webkit-keyframes fadeIn { 0% {opacity: 0} 100% {opacity: 1}}
/*  ---------------------------------------------------  */
.txt-anime{ opacity: 0;}
.txt-anime-slide{ animation: txt-anime 2s ease forwards;}
@keyframes txt-anime { from { opacity: 0;} to { opacity: 1;}}
@-webkit-keyframes txt-anime { from { opacity: 0;} to { opacity: 1;}}
.txttime01 {animation-delay: 0.2s;}
.txttime02 {animation-delay: 0.6s;}
.txttime03 {animation-delay: 1.0s;}