/*------------------------------------------------------
Business TOP
------------------------------------------------------*/
.business_cont{
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.b_index_ttl{
  margin-bottom: 96px;
}

.b_index_ttl h2{
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 40px;
}

/*---------- sp ----------*/

@media (max-width: 899px){
  .business_cont{
    display: block;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
  }

  .b_index_ttl{
    margin-bottom: 56px;
  }
  
  .b_index_ttl h2{
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 40px;
  }
}




/*------------------------------------------------------
Digital Solution
------------------------------------------------------*/
.ds_wrap{
  width: 100%;
}

.ds_cont{
  margin-bottom: 96px;
}

.ds_cont h2{
  font-size: 32px;
  line-height: 50px;
  margin-bottom: 24px;
}

.ds_cont p{
  margin-bottom: 24px;
}

.ds_item{
  display: flex;
  gap: 4%;
  margin-bottom: 64px;
}

.ds_item .ds_left{
  width: 56%;
}

.ds_cont h3{
  font-size: 24px;
  margin-bottom: 24px;
}

.ds_item .ds_left p{
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 40px;
}

.ds_item .ds_left .ds_index_btn{
  text-align: left;
}

.ds_item .ds_right{
  width: 40%;
}

.ds_item .ds_right img{
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #999;
}

.ds_inner{
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
}

.ds_inner img{
  background-color: #999;
  width: 22%;
  aspect-ratio: 4/1;
  margin-bottom: 16px;
}

.ds_cont table{
  width: 90%;
  margin: 0 auto;
}

.ds_cont table tr{
  border-bottom: solid 1px #999;
  vertical-align: top;
  text-align: left;
}

.ds_cont table tr th{
  width: 25%;
  padding: 16px 0 16px 64px;
}

.ds_cont table tr td.ds_award{
  width: 75%;
  padding: 16px 0 16px 32px;
}

/* btn */
.ds_index_btn_a, 
a.ds_index_btn_a,
button.ds_index_btn_a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a.ds_index_btn_svg {
  font-weight: 400;
  line-height: 54px;
  width: 400px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}

a.ds_index_btn_svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.ds_index_btn_svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #333;
  stroke-width: 1px;
  stroke-dasharray: 430px, 16px;
  stroke-dashoffset: 160px;
}

a.ds_index_btn_svg:hover svg rect {
  stroke-dashoffset: 600px;
}

a.ds_index_btn_svg span {
  color: #333;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  .ds_wrap{
    width: 100%;
  }
  
  .ds_cont{
    margin-bottom: 72px;
  }
  
  .ds_cont h2{
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 24px;
  }
  
  .ds_cont p{
    margin-bottom: 24px;
  }
  
  .ds_item{
    display: block;
    margin-bottom: 40px;
  }
  
  .ds_item .ds_left{
    width: 100%;
  }
  
  .ds_cont h3{
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .ds_item .ds_left p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  
  .ds_item .ds_left .ds_index_btn.sp{
    text-align: center;
    margin-bottom: 24px;
  }
  
  .ds_item .ds_right{
    width: 100%;
  }
  
  .ds_item .ds_right img{
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/2;
    background-color: #999;
    margin: 0 auto;
  }
  
  .ds_inner{
    display: flex;
    gap: 4%;
    flex-wrap: wrap;
  }
  
  .ds_inner img{
    background-color: #999;
    width: 48%;
    aspect-ratio: 4/1;
    margin-bottom: 16px;
  }
  
  .ds_cont table{
    width: 100%;
  }
  
  .ds_cont table tr{
    border-bottom: solid 1px #999;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
  }
  
  .ds_cont table tr th{
    display: block;
    width: 100%;
    padding: 16px 0 8px 8px;
  }
  
  .ds_cont table tr td.ds_award{
    display: block;
    width: 100%;
    padding: 8px 0 16px 8px;
    font-weight: 400;
  }
  
  .ds_cont table tr td.ds_result{
    display: block;
    width: 100%;
    padding: 0 0 16px 8px;
  }

  /* btn */
  .ds_index_btn_a,
  a.ds_index_btn_a,
  button.ds_index_btn_a {
    letter-spacing: -0.4px;
  }

  a.ds_index_btn_svg {
    font-weight: 400;
    line-height: 54px;
    width: 354px;
    height: 54px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
  }

  a.ds_index_btn_svg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  a.ds_index_btn_svg svg rect {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    stroke: #333;
    stroke-width: 1px;
    stroke-dasharray: 388px, 16px;
    stroke-dashoffset: 130px;
  }

  a.ds_index_btn_svg:hover svg rect {
    stroke-dashoffset: 464px;
  }

  a.ds_index_btn_svg span {
    color: #333;
  }
}




/*------------------------------------------------------
Mono
------------------------------------------------------*/
.mono_item{
  width: 100%;
  margin-bottom: 64px;
  gap: 4%;
}

.mono_item h2{
  font-size: 32px;
  margin-bottom: 24px;
}

.mono_item h3{
  font-size: 24px;
}

.mono_item img{
  width: 50%;
  max-width: 500px;
  margin: 40px auto 0;
}

.mono_inner{
  margin: 96px 0;
}

.mono_item .mono_left{
  width: 56%;
}

.mono_item .mono_left h3{
  font-size: 28px;
  margin-bottom: 16px;
}

.mono_item .mono_left p{
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 40px;
}

.mono_item .mono_left .b_index_btn{
  text-align: left;
}

.mono_item .mono_right{
  width: 40%;
}

.mono_item .mono_right img{
  width: 100%;
  vertical-align: top;
  margin-top: 0;
}

.mono_item table{
  margin-top: 24px;
  width: 100%;
}

.mono_item table tr{
  border-bottom: solid 1px #999;
  vertical-align: top;
  text-align: left;
}

.mono_item table tr th{
  width: 20%;
  padding: 16px 0 16px 64px;
}

.mono_item table tr td.mono_award{
  width: 28%;
  padding: 16px 0 16px 32px;
}

.mono_item table tr td.mono_product{
  width: 52%;
  padding: 16px 64px 16px 16px;
}

/*---------- sp ----------*/

@media (max-width: 899px){
  .mono_item{
    width: 100%;
    margin-bottom: 40px;
  }
  
  .mono_item h2{
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .mono_item h3{
    font-size: 20px;
  }
  
  .mono_item img{
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
  }
  
  .mono_inner{
    margin: 72px 0;
  }
  
  .mono_item .mono_left{
    width: 100%;
    margin-bottom: 24px;
  }
  
  .mono_item .mono_left h3{
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .mono_item .mono_left p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  
  .mono_item .mono_left .b_index_btn{
    text-align: center;
  }
  
  .mono_item .mono_right{
    width: 100%;
  }
  
  .mono_item .mono_right img{
    width: 100%;
    margin-top: 0;
  }
  
  .mono_item table{
    margin-top: 8px;
    width: 100%;
  }
  
  .mono_item table tr{
    border-bottom: solid 1px #999;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
  }
  
  .mono_item table tr th{
    display: block;
    width: 100%;
    padding: 16px 0 8px 8px;
  }
  
  .mono_item table tr td.mono_award{
    display: block;
    width: 100%;
    padding: 8px 0 0 8px;
    font-weight: 600;
  }
  
  .mono_item table tr td.mono_product{
    display: block;
    width: 100%;
    padding: 0px 0 16px 8px;
  }
}




/*------------------------------------------------------
OSP
------------------------------------------------------*/
/*----- 共通 -----*/
.osp_wrap{
  /*margin-top: 144px;*/
}

/* ttl */
.osp_ttl_area{
  margin: 0 auto 80px;
  padding-top: 144px;
}

.osp_ttl_area img{
  margin: 0 auto 32px;
  width: 360px;
}

.osp_ttl_area h2{
  position: relative;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 56px;
}

.osp_ttl_area p{
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  .osp_wrap{
    /*margin-top: 144px;*/
  }
  
  /* ttl */
  .osp_ttl_area{
    margin: 0 auto 64px;
    padding-top: 80px;
  }
  
  .osp_ttl_area img{
    margin: 0 auto 24px;
    width: 240px;
  }
  
  .osp_ttl_area h2{
    position: relative;
    font-size: 24px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .osp_ttl_area p{
    font-size: 18px;
    line-height: 34px;
    text-align: left;
  }
}



/*----- mv -----*/
.osp_mv{
  position: relative;
  height: 100vh;
  margin-top: 120px;
}

.osp_mv::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../images/business/osp/osp_mv.jpg) center / cover no-repeat;
  z-index: -1;
}

.osp_mv_ttl{
  padding-top: 8%;
}

.osp_mv_ttl h1{
  font-size: 40px;
  line-height: 72px;
  font-weight: 600;
  margin-bottom: 72px;
  width: 65%;
}

.osp_mv_sub{
  font-size: 32px;
  margin-bottom: 8px;
  width: 65%;
}

.osp_mv_ttl p{
  font-size: 20px;
  line-height: 36px;
}

/* btn */
.osp_mv_btn{
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}

.osp_mv_btn a{
  display: inline-block;
  width: 240px;
  padding: 12px 20px;
  text-align: center;
  border: solid 1px #fff;
  margin-right: 16px;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.osp_mv_btn a:hover{
  opacity: 0.6;
}

.osp_mv_btn a.w::after{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 4px;
  margin-left: 16px;
}

.osp_mv_btn a.btn_w{
  background-color: #fff;
}

.osp_mv_btn a.btn_w::after{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg); 
  margin-bottom: 4px;
  margin-left: 16px;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  .osp_mv{
    position: relative;
    height: 100vh;
    margin-top: 64px;
  }
  
  .osp_mv::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../images/business/osp/osp_mv.jpg) 65% / cover no-repeat;
    z-index: -1;
  }
  
  .osp_mv_ttl{
    padding-top: 8%;
  }
  
  .osp_mv_ttl h1{
    font-size: 32px;
    line-height: 56px;
    font-weight: 600;
    margin-bottom: 56px;
    width: 100%;
  }
  
  .osp_mv_sub{
    font-size: 24px;
    margin-bottom: 16px;
    width: 100%;
  }
  
  .osp_mv_ttl p{
    font-size: 18px;
    line-height: 30px;
  }
  
  /* btn */
  .osp_mv_btn{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
  }
}


/*----- about -----*/
.osp_about_bg{
  background-color: #f5f8fa;
}

.osp_about_wrap{
  padding-bottom: 80px;
}

.osp_about_wrap.wrap{
  margin-bottom: 0;
}

.osp_about_cont{
  display: block;
  text-align: center;
}

.osp_about_cont h3{
  display: inline-block;
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  border-bottom: dashed 2px #66B8D4;
  margin-bottom: 120px;
  padding: 0 8px;
}

.osp_about_cont h3 span{
  font-size: 40px;
  color: #66B8D4;
}

.osp_about_inner{
  display: flex;
  gap: 2%;
}

.osp_about_item{
  position: relative;
  text-align: left;
  width: 49%;
  height: 100%;
  background-color: #fff;
  padding: 56px;
  border-radius: 8px;
}

.osp_about_item.right{
  margin: 80px 0;
}

.osp_about_item h4{
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  padding: 0 4px 2px;
  border-bottom: solid 2px #66B8D4;
  margin-bottom: 32px;
}

.osp_about_item img{
  content: "";
  display: block;
  width: 80px;
  aspect-ratio: 135 / 101; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -32px;
  left: 56px;
}

.osp_about_item p{
  margin-bottom: 24px;
}

.osp_about_item ul li::before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/business/osp/osp_icon_check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 6px;
  margin-bottom: 5px;
  vertical-align: middle;
}


/*---------- sp ----------*/

@media (max-width: 899px){

  .osp_about_wrap.wrap{
    margin: 0 auto;
  }
  
  .osp_about_cont h3{
    display: inline-block;
    font-size: 20px;
    line-height: 40px;
    font-weight: 600;
    border-bottom: dashed 2px #66B8D4;
    margin-bottom: 0;
    padding: 0 8px;
  }
  
  .osp_about_cont h3 span{
    font-size: 32px;
    color: #66B8D4;
  }
  
  .osp_about_inner{
    display: block;
  }
  
  .osp_about_item{
    position: relative;
    text-align: left;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-top: 80px;
  }
  
  .osp_about_item.right{
    margin: 80px 0 0;
  }
  
  .osp_about_item h4{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 0 4px 2px;
    border-bottom: solid 2px #66B8D4;
    margin-bottom: 24px;
  }
  
  .osp_about_item img{
    content: "";
    display: block;
    width: 56px;
    aspect-ratio: 135 / 101; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -24px;
    left: 32px;
  }
  
  .osp_about_item p{
    margin-bottom: 16px;
  }
}


/*----- feature -----*/
.osp_feature_bg{
  background-color: #1F96BF;
}

.osp_feature_wrap{
  padding-bottom: 144px;
}

.osp_feature_wrap.wrap{
  margin-bottom: 0;
}

.osp_feature_cont{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  justify-content: center;
  margin: 0 auto;
}

.osp_feature_item{
  width: 280px;
  height: 280px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}

.osp_feature_item h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.osp_feature_item img{
  width: 20%;
  margin: 12px auto 16px;
}

.osp_feature_item p{
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  
  .osp_feature_wrap{
    padding-bottom: 72px;
  }

  .osp_feature_wrap.wrap{
    margin: 0 auto;
  }
  
  .osp_feature_cont{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
  
  .osp_feature_item{
    width: 280px;
    height: 280px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 16px;
  }
  
  .osp_feature_item h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .osp_feature_item img{
    width: 20%;
    margin: 12px auto 16px;
  }
  
  .osp_feature_item p{
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
}


/*----- choose -----*/
.osp_choose_wrap img.osp_table{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  .osp_choose_wrap.wrap{
    margin: 0 auto 72px;
  }

  .osp_choose_wrap img.osp_table{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
}


/*----- OSP CTA -----*/
.osp_cta{
  position: relative;
  width: 100%;
  height: 712px;
}

.osp_cta_wrap::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/business/osp/osp_cta.jpeg) center / cover no-repeat;
  z-index: -1;
}

.osp_cta_cont{
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 100;
  justify-content: center;
  height: 400px;
  text-align: center;
}

.osp_cta_cont a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 440px;
  height: 120px;
  border: solid 2px #999;
  transition: opacity 0.3s ease;
}

.osp_cta_cont a:hover{
  opacity: 0.6;
}

.osp_cta_cont a.mail{
  font-size: 20px;
  font-weight: 600;
}

.osp_cta_cont a.mail::before{
  content: "";
  display: inline-block;
  width: 36px;
  aspect-ratio: 215 / 163; 
  background-image: url(../images/business/osp/osp_icon_mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 16px;
}

.osp_cta_cont a.tel{
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 8%;
}

.osp_cta_cont a.tel::before{
  content: "";
  display: inline-block;
  width: 24px;
  aspect-ratio: 107 / 163; 
  background-image: url(../images/business/osp/osp_icon_tel.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 16px;
}

.osp_cta_cont a.tel span{
  display: block;
  font-size: 14px;
  font-weight: 400;
}


/*---------- sp ----------*/

@media (max-width: 899px){
  .osp_cta{
    position: relative;
    width: 100%;
    height: 712px;
  }
  
  .osp_cta_wrap::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/business/osp/osp_cta.jpeg) 76% / cover no-repeat;
    z-index: -1;
  }
  
  .osp_cta_cont{
    display: block;
    position: relative;
    z-index: 100;
    justify-content: center;
    height: 400px;
    text-align: center;
  }
  
  .osp_cta_cont a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 100px;
    border: solid 2px #999;
    transition: opacity 0.3s ease;
    margin-bottom: 24px;
  }
  
  .osp_cta_cont a:hover{
    opacity: 0.6;
  }
  
  .osp_cta_cont a.mail{
    font-size: 18px;
    font-weight: 600;
  }
  
  .osp_cta_cont a.mail::before{
    content: "";
    display: inline-block;
    width: 28px;
    aspect-ratio: 215 / 163; 
    background-image: url(../images/business/osp/osp_icon_mail.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 12px;
  }
  
  .osp_cta_cont a.tel{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8%;
  }
  
  .osp_cta_cont a.tel::before{
    content: "";
    display: inline-block;
    width: 20px;
    aspect-ratio: 107 / 163; 
    background-image: url(../images/business/osp/osp_icon_tel.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 12px;
  }
  
  .osp_cta_cont a.tel span{
    display: block;
    font-size: 14px;
    font-weight: 400;
  }

  .osp_cta_text{
    width: 90%;
    margin: 0 auto;
  }
}






/*------------------------------------------------------
CTA
------------------------------------------------------*/
.b_cta{
  position: relative;
  width: 100%;
  height: 400px;
}

.b_cta_wrap::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/business/business_cta.jpg) bottom / cover no-repeat;
  z-index: -1;
}

.b_cta_cont{
  display: flex;
  position: relative;
  z-index: 100;
  justify-content: center;
  height: 400px;
}

.b_cta_cont::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 160px;
  background: #999;
}

.b_cta_item{
  margin: auto 0;
  padding: 5% 14%;
}

.b_cta_text{
  margin-bottom: 48px;
}

.b_cta_text .jost{
  font-size: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: 400;
}

.b_cta_text .jost span{
  font-size: 16px;
  font-weight: 300;
}

/* btn */
.b_index_btn{
  text-align: right;
}

.b_index_btn_a, 
a.b_index_btn_a,
button.b_index_btn_a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a.b_index_btn_svg {
  font-weight: 400;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}

a.b_index_btn_svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.b_index_btn_svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #333;
  stroke-width: 1px;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}

a.b_index_btn_svg:hover svg rect {
  stroke-dashoffset: 284px;
}

a.b_index_btn_svg span {
  color: #333;
}



/*------------ sp ------------*/

@media (max-width: 899px){
  .b_cta{
    width: 100%;
    height: 552px;
    position: relative;
  }

  .b_cta_wrap::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 552px;
    background: url(../images/business/business_cta.jpg) 46% bottom / cover no-repeat;
    z-index: -1;
  }

  .b_cta_cont{
    display: block;
    z-index: 100;
    height: 100%;
    padding-bottom: 80px;
  }

  .b_cta_cont::before{
    content: none;
  }

  .b_cta_item{
    margin: auto 0;
    padding: 80px 0 0;
  }

  .b_cta_text{
    margin-bottom: 36px;
  }

  .b_cta_text .jost{
    font-size: 32px;
    text-align: center;
    line-height: 32px;
    font-weight: 400;
  }

  .b_cta_text .jost span{
    font-size: 14px;
    font-weight: 300;
  }

  /* btn */
  .b_index_btn{
    text-align: center;
  }

  .b_index_btn_a, 
  a.b_index_btn_a,
  button.b_index_btn_a {
    font-size: 1.4rem !important;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #333;
    border-radius: 0.5rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  }

  a.b_index_btn_svg {
    font-weight: 400;
    line-height: 54px;
    width: 204px;
    height: 54px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
  }

  a.b_index_btn_svg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  a.b_index_btn_svg svg rect {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    stroke: #333;
    stroke-width: 1px;
    stroke-dasharray: 200px, 16px;
    stroke-dashoffset: 70px;
  }

  a.b_index_btn_svg:hover svg rect {
    stroke-dashoffset: 284px;
  }

  a.b_index_btn_svg span {
    color: #333;
  }
}