/*-共通-*/
*{
  box-sizing: border-box;
}
a{
  color: #000;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
a img:hover{
  opacity: 0.7;
}
.pc_hide{
  display: none;
}
.sp_hide{
  display: block;
}
/* @-moz-document url-prefix() {
  .service-item-link .sp_hide {
    display: inline-block;
  }
} */
br.sp_hide {
  display: inline-block;
}
.center{
  text-align:center;
}
.right{
  text-align: right;
}
/*-sp-*/
@media screen and (max-width: 768px) {
  .pc_hide{
    display: block;
  }
  .sp_hide{
    display: none;
  }
  .btn01, .btn02, .btn03, .btn04 {
    font-size: 14px;
  }
  .btn01, .btn02 {
    width: 240px;
    height: 40px;
  }
  .btn01::before, .btn02::before {
    right: 24.5px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .header_caution{
    width: 90% !important;
  }
}
/*新コンポーネント 重複ID分*/
#tab_label_02 {
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}
#tab_label_02 li {
  display: block;
  position: relative;
  flex: 1;
  margin-bottom: 0;
  padding: 30px 15px;
  float: none;
  border-right: 1px solid #fff;
  background-color: #b0b0b0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
#tab_label_02 li:last-of-type {
  border-right: none;
}
#tab_label_02 li:not(.select):hover {
  background-color: #a3acb4;
  color: #fff;
}
#tab_label_02 .select {
  background-color: var(--skyBlue);
  color: #fff;
}
#tab_label_02 .select::after {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 15px 25px 0 25px;
  border-style: solid;
  border-color: #00a0f0 transparent transparent transparent;
  content: "";
}
@media screen and (max-width: 768px) {
  #tab_label_02 li {
    padding: 20px 7px;
    font-size: 16px;
  }
}
/*新コンポーネント 差分*/
.contentWrap.smallCntBtm0 {
  padding-bottom: 0;
}
.btn03{
  font-size:18px;
}
/*202310 リニューアル*/
/*-メインビジュアル-*/
.main-visual{
  overflow: hidden;
}

/*シャドウ*/
.shadow{
  z-index:5;
  position: relative;
  display: inline-block;
  box-shadow: 6px 6px 0px #00289633;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}
.shadow:hover{
  z-index:5;
  box-shadow: none;
/*   transform: translate(6px,6px); */
  text-decoration: none;
}

/*グラデーション*/
.gradation::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment:fixed;
  background-blend-mode: normal, normal;
}
.gradation.active::after {
  background: linear-gradient(180deg, rgba(0, 40, 150, .2) 0%, rgba(72, 192, 255, .3) 100%),linear-gradient(180deg, rgba(0, 36, 139, 0)  70%, rgba(0, 36, 139, .9) 100%) ;
  background-blend-mode: normal, normal;
}
.large .gradation.active::after {
  background: linear-gradient(180deg, rgba(0, 40, 150, .2) 50%, rgba(0, 160, 240, .3) 75%, rgba(72, 192, 255, .3) 100%),linear-gradient(180deg, rgba(0, 36, 139, 0)  79%, rgba(0, 36, 139, .9) 100%) ;
  background-blend-mode: normal, normal;
  color: #fff;
}

/*グラデーション（白）*/
.large .gradation_white::after{
  background: linear-gradient(to bottom, rgba(255,255,255,0) 80%,  rgba(255,255,255,.6) 85%, #fff 100%);
}
.gradation_white::after{
  background: linear-gradient(to bottom, rgba(255,255,255,0) 70%,  rgba(255,255,255,.6) 80%, #fff 100%);
}

/*矢印部分*/
.arrow_b{
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: #002896;
}
.arrow_b::before {
  position: absolute;
  left: 0;
  border-radius: 50%;
  background: #002896;
  content: "";
}
.arrow_b::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.gradation.active .arrow_b::before{
  background: #fff;
}
.gradation.active .arrow_b::after{
  border-top: 2px solid #002896;
  border-right: 2px solid #002896;
}
/*フロートメニュー矢印部分*/
.arrow_b2 {
  position: relative;
  display: inline-block;
  padding: 2px 0;
}
.arrow_b2::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translateX(-50%) rotate(135deg);
  left: 50%;
  top: 5px;
}

/* ボタン位置 */
.btn02.comBlue {
  margin:48px auto 0;
}

/*メインビジュアル*/
.sp-panel-area{display:none;}
.panel-area {
  display: grid;
  grid-template-columns: repeat(auto-fit,5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap:20px;
  max-width:1366px;
  margin:20px auto 12px;
}
.panel-area .box1 { grid-area: 1 / 1 / 3 / 3; }
.panel-area .box2 { grid-area: 1 / 3 / 2 / 5; }
.panel-area .box3 { grid-area: 1 / 5 / 2 / 6; }
.panel-area .box4 { grid-area: 2 / 3 / 2 / 5; }
.panel-area .box5 { grid-area: 2 / 4 / 3 / 5; }
.panel-area .box6 { grid-area: 2 / 5 / 3 / 6; }
.panel-area img{
  width:100%;
}
.panel-area .large img{
  max-width:514px;
}
.panel-area .rectangle img{
  max-width:514px;
}
.panel-area .square img{
  max-width:246px;
}

/*大きいパネル ボタンエリア*/
/* 1 */
.panel-box .btn_right01,
.sp-panel-box .btn_right01{
  position: absolute;
  right:30px;
  bottom:5%;
  pointer-events: none;
  z-index:5;
}
.panel-box.large .detail_01,
.sp-panel-box .detail_01{
  padding-left: 33px;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 1.8px;
}
.panel-box.large .arrow_b::before ,
.sp-panel-box .arrow_b::before {
  width: clamp(18px, 1.87vw,24px);
  height: clamp(18px, 1.87vw, 24px);
}
.panel-box.large .arrow_b::after ,
.sp-panel-box .arrow_b::after {
  left: clamp(4px, 0.546vw, 7px);
  width: 5.5px;
  height: 5.5px;
}
.gradation.active .btn_right01 .detail_01{
  color: #fff;
}

/*小さいパネル ボタンエリア*/
/* 2 */
.panel-box .btn_right02,
.sp-panel-box .btn_right02{
  position: absolute;
  left:0px;
  bottom:12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
  min-height:32px;
  padding-right:30px;
  padding-left: 10px;
  pointer-events: none;
  z-index:5;
}
.panel-box .btn_right02 .txt,
.sp-panel-box .btn_right02 .txt{
  font-size:clamp(10px, 1.12vw, 14px);
  font-weight: bold;
  padding-right:5px;
  color:#002896;
}
.panel-box .btn_right02 .txt.large,
.sp-panel-box .btn_right02 .txt.large {
  font-size: clamp(11px, 1.2vw, 16px);
}
@media screen and (max-width:768px) {
  .panel-box .btn_right02 .txt,
    .sp-panel-box .btn_right02 .txt {
      font-size: 14px;
    }
}
.panel-box .active .btn_right02 .txt,
.sp-panel-box .active .btn_right02 .txt{
  color: #fff;
}
.panel-box .arrow_b::before,
.sp-panel-box .arrow_b::before {
  width: 20px;
  height: 20px;
}
.panel-box .arrow_b::after,
.sp-panel-box .arrow_b::after {
  left: 5px;
  width: 5px;
  height: 5px;
}

/*わたしたちについて #about*/
#about {
  padding-top: 16px;
}
#about .about-area{
  display:  inline-block;
  padding:37px 58px;
  background-image: url(../img/top/webp/top-about.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width:100%;
  box-shadow: 6px 6px 0px #00289633;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}
#about .about-area:hover{
  box-shadow: none;
  text-decoration: none;
  opacity: 0.7;
}
#about h2{
  display: inline;
  font-size:30px;
  text-align:left;
}
#about h2.top_title + p{
  display: inline;
  padding-left: 15px;
  font-size:20px;
  line-height:30px;
}
#about p{
  max-width:624px;
  font-size:20px;
  margin-bottom:31px;
}
#about .btn02.comBlue {
  margin:0;
  pointer-events: none;
}
#about .active .btn02.comBlue {
  border: 2px solid #42a0ea;
  background-color: #ceedfd;
}

/*#search*/
#search p.center{
  margin-bottom:60px;
}
#search .box{
  margin-bottom: 0;
}

/*カテゴリーから探す*/
#search .categories .column-box03b{
  gap: 32px;
}
#search .categories .column-box03b .thumb{
  display: flex;
  justify-content: center;
  width:fit-content;
  margin:0 auto 32px;
}
#search .categories .column-box03b .box {
  box-shadow: 6px 6px 0px #00289633;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}
#search .categories .column-box03b .box:hover {
  box-shadow: none;
}

/*目的から探す*/
#search .purpose .column-box03b{
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  justify-content: start;
  flex-direction: row;
  gap:16px;
}
#search .purpose .column-box03b .box {
  width:auto;
  max-width:100%;
  display: flex;
  align-items:center;
  position: relative;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 11px 20px 11px 27px;
  letter-spacing: 1.4px;
  transition: all 0.3s;
  border-bottom: 2px solid #E5E5E5;
}
#search .purpose .column-box03b .box::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  content: '';
  background-image: url(../img/servicenavi/ico_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#search .purpose .column-box03b .box a {
  display: flex;
  align-items: center;
  position: relative;
  color: #002896;
  font-size: inherit;
  line-height: inherit;
  width: 100%;
  text-decoration: none;
}
#search .purpose img {
  margin-right:2px;
}
#search .purpose .column-box03b .box:hover {
  background-color: #CEEDFDB7;
}
/*サービス名から探す*/
.service.tabbox {
  padding: 20px 40px 60px;
}

.service .service-cont {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0px;
  padding-top: 28px;
  justify-content: space-between;
}
.service .service-item {
  min-width: 350px;
}
.service .service-item-hd {
  background-color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  letter-spacing: 1.4px;
  padding: 11px 20px 11px 27px;
  transition: all 0.3s ease 0s;
  border-bottom: 2px solid rgb(229, 229, 229);
}
.service .service-item-hd::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  content: '';
  background-image: url(/common/img/servicenavi/ico_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.service .service-item-hd.no-link::after {
  background: none;
}
.service .service-item-hd a {
  display: flex;
  align-items: center;
  position: relative;
  color: #002896;
  font-size: 18px;
  line-height: inherit;
  width: 100%;
  text-decoration: none;
}
.service .service-item-hd img {
  display: block;
  margin-right: 5px;
}
.service-item-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 140px;
    row-gap: 12px;
    column-gap: 10px;
    padding-bottom: 8px;
}
.service-item.narrow .service-item-wrap {
  padding-bottom: 10px;
  height: 140px;
}
.service .service-item-wrap.mobile {
  row-gap:7px;
}
.service .service-item-wrap.iot {
  flex-direction: row;
  height: auto;
}
.service .service-item-wrap.contact {
  height:120px;
  row-gap:16px;
}
.service .service-item-wrap.network {
  height:120px;
  row-gap:16px;
}
.service .service-item-link {
  position: relative;
  width: calc(50% - 6px);
}
.service .service-item-link.single-column {
	width: 100%;
}
.service .service-item-link a {
  color: #002896;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
}
.service .cloud .service-item-link:nth-of-type(2n) {
  width:60%;
}
.service .cloud .service-item-link:nth-of-type(2n+1) {
  width:calc(50% - 12px);
}
.service .btn02.comBlue {
  margin-top: 8px;
}

/*バナー #bunner*/
#bunner .bunner-area{
  width:100%;
  display:flex;
  justify-content: center;
  gap:20px;
}
#bunner .bunner-area .box{
  flex: 1;
  width: calc(100% / 2 - 20px);
}
#bunner .bunner-area img{
  width:100%;
  height:auto;
}
#bunner .bunner.shadow:hover{
  transform: none;
}

/*バナー内 ボタンエリア*/
#bunner a.bunner .btn_right01{
  position: absolute;
  right:30px;
  bottom:10px;
  pointer-events: none;
  z-index:5;
}
#bunner a.bunner .detail_01{
  padding-left: 33px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
}
#bunner a.bunner .arrow_b::before  {
  width: 24px;
  height: 24px;
}
#bunner a.bunner .arrow_b::after{
  left: 7px;
  width: 5.5px;
  height: 5.5px;
}


/*お知らせ #oshirase*/
#oshirase .oshirase-area{
  /* display:flex;
  justify-content: center; */
  column-gap:40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#oshirase .oshirase-area div {
  flex: 1;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  max-width: 583px;
}
#oshirase dt {
  font-size:16px;
  font-weight: bold;
    padding: 16px 0 10px;
}
#oshirase dd {
  font-size:16px;
  border-bottom: 1px solid #00178e;
  padding-bottom: 16px;
  line-height: 1.5em;
  min-height: 88px;
}
#oshirase .btn02 {
  margin:48px auto;
  max-width:295px;
  width:100%;
}

/*障害・工事情報*/
#oshirase .shougai-link {
  margin:0 auto;
  font-size:16px;
}
#oshirase .shougai-link span {
  margin-right:16px;
  padding:3px 16px;
  background-color: #002896;
  border-radius: 15px;
  color: #fff;
  font-size:14px;
}

/*インフォメーション共通*/
#info-seminar .seminar-item{
  display:flex;
  gap:24px;
  justify-content: left;
}
#info-seminar .service-tag a{
  font-size: 16px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: solid 1px #00248b;
  border-radius: 15px;
  background-color: #fff;
  color: #002896;
  letter-spacing: 0.8px;
  text-decoration: none;
}
#info-seminar .service-tag a:hover {
  border: 1px solid #42a0ea;
  background-color: #ceedfd;
}
#info-seminar .item-link a:hover{
  color:#00A0F0;
}
#info-seminar .btn02.comBlue {
  margin: 20px auto 0;
}
#info-seminar .seminar-notice{
  margin-bottom:72px;
  font-size:20px;
  color:#A3ACB4;
  text-align:center;
}
#info-seminar .seminar-list-txt {
  margin: 40px auto 0;
  text-align:center;
}


/*セミナー*/
#info-seminar .seminar .seminar-thumb img{
  width:auto;
  height:185px;
}
#info-seminar .seminar .seminar-detail{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  min-height:185px;
  margin-bottom:24px;
}
#info-seminar .seminar .date_time{
  font-size:22px;
  margin-bottom:10px;;
  line-height:1.5em;
}
#info-seminar .seminar .seminar-title{
  font-size:18px;
  margin-bottom:16px;
  padding:0;
  font-weight:normal;
  color:#000;
  text-align:left;
}
#info-seminar .seminar .seminar-format-wrap{
  font-size:14px;
  margin-bottom:21px;
  padding:0;
}
#info-seminar .seminar .seminar-format{
  margin-right: 24px;
}
#info-seminar .seminar .seminar-entry_fee{
  font-size:14px;
}
#info-seminar .seminar .service-link{
  display:flex;
  justify-content: start;
  gap:0;
}
#info-seminar .seminar .service-tag{
  margin:0;
}
#info-seminar .seminar .service-tag a{
  margin-right: 24px;
  padding: 0 12px;
}
#info-seminar .seminar .service-tag a:last-child{
  margin-bottom:0;
}

/*アーカイブ*/
#info-seminar .movie .seminar-thumb img{
  width:auto;
  height:185px;
}
#info-seminar .movie .seminar-detail{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}
#info-seminar .movie .date_time{
  font-size:14px;
  margin:0 0 12px;
  line-height:1.5em;
}
#info-seminar .movie .seminar-title{
  font-size:18px;
  font-weight:normal;
  color:#000;
  margin:0 0 21px;
  text-align:left;
  line-height: 1.3em;
}
#info-seminar .movie .service-link{
  display:flex;
  justify-content: start;
  gap:0;
  margin-bottom:9px;
}
#info-seminar .movie .service-tag{
  margin:0;
  margin: 0 24px 10px 0;
}

/*採用情報*/
#recruit .banner{
  display:inline-block;
}
#recruit .banner:hover {
  transform: translate(0);
}
#recruit img{
  max-width:543px;
  width:100%;
  height:auto;
}
#recruit a img:hover{
  /*opacity: 1.0;*/
}
#recruit .arrow_b{
  color: #fff;
}
#recruit .arrow_b::before {
  background: #fff;
}
#recruit .arrow_b::after {
  border-top: 2px solid #002896;
  border-right: 2px solid #002896;
  content: "";
}
#recruit .btn_right01{
  position: absolute;
  right:10px;
  bottom:10px;
  pointer-events: none;
  z-index:5;
}
#recruit .btn_right01 .detail_01{
  color: #fff;
  padding-left: 33px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
}
#recruit a .arrow_b::before  {
  width: 24px;
  height: 24px;
}
#recruit a .arrow_b::after{
  left: 7px;
  width: 5.5px;
  height: 5.5px;
}


/*solution*/
#solution{
  margin-bottom:20px;
}
#solution h2{
  font-size:18px;
  font-weight: normal;
  color:#000;
}
.solution-area{
  margin-top:48px;
  overflow: hidden;
}
.solution-area li{
  padding:0 20px;
  width:325px;
  height:150px;
  flex-shrink: 0;
}
.solution-area li img{
  width:100%;
}

/*フローティングボタン*/
#page-menu-area {
  z-index: 10;
  position: fixed;
  bottom: 50%;
  transform: translateY(50%);
  right: 20px;
  padding:0;
  display:flex;
  flex-direction:column;
}
/* #page-menu-area .page-menu-item{
  width:76px;
  height:auto;
  margin-bottom:1px;
} */
#page-menu-area .page-menu-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width:76px;
  height:76px;
  margin-bottom:2px;
  font-size:10px;
  color:#fff;
  text-align:center;
  line-height:1.2em;
  padding:8px;
}
#page-menu-area .page-menu-item.download .icon{
  margin-bottom:6px;
  width:27px;
  height:32px;
}
#page-menu-area .page-menu-item.partner .icon{
  margin-bottom:2px;
  width:34px;
  height:27px;
}
#page-menu-area .page-menu-item.download{
  background-color:#F59600;
}
#page-menu-area .page-menu-item.partner{
  background-color:#00A0F0;
}
#page-menu-area .page-menu-item.events{
  background-color:#00248B;
}
#page-menu-area .page-menu-item.events div{
  margin-bottom:5px;
}
#page-menu-area .page-menu-item.recruit{
  background-color:#1804EE;
}
#page-menu-area .page-menu-item.recruit div{
  margin:20px 0;
}
#page-menu-area .page-menu-item:hover{
  text-decoration: none;
  opacity: 0.7;
}

@media screen and (max-width: 1366px) {

}
@media screen and (max-width: 768px) {

  .pc_hide{
    display: block;
  }
  .sp_hide{
    display: none;
  }

  /*新コンポーネント差分*/
  .contentWrap h2.top_title {
    font-size: 24px;
  }
  .contentWrap h2.top_title + p {
    font-size: 18px;
  }
  .btn03{
    font-size:14px;
    padding-left:24px;
    margin-bottom:10px;
  }
  .btn03::before {
    width:16px;
    height:16px;
  }
  .btn03::after {
    left: 4.5px;
    width: 4px;
    height: 4px;
  }

  /*白グラデーション*/
  .large .gradation_white::after{
    background: linear-gradient(to bottom, rgba(255,255,255,0) 80%,  rgba(255,255,255,.6) 90%, #fff 100%);
  }
  .gradation_white::after{
    background: linear-gradient(to bottom, rgba(255,255,255,0) 80%,  rgba(255,255,255,.6) 90%, #fff 100%);
  }
  .panel-area{
    display:none;
  }
  .sp-panel-area{
    display:block;
  }
  /*スライド*/
  .sp-panel-area .sp-panel-box{
    width:100vw;
    height:auto;
    flex-shrink:0;
    margin: 0 8px;
  }
  .sp-panel-area .sp-panel-box img{
    width:100vw;
    height:auto;
  }
  .sp-panel-box .btn_right01{
    padding:0 20px;
    bottom:20px;
  }
  .sp-panel-box .detail_01{
    font-size: 14px;
    padding-left:30px;
    font-weight: bold;
  }
  .sp-panel-box .btn_right02{
    padding-left:30px;
    padding-right:60px;
    bottom:20px;
  }
  .sp-panel-box .arrow_b::before {
    width: 18px;
    height: 18px;
  }
  .sp-panel-box .arrow_b::after {
    left: 5px;
    width: 3px;
    height: 3px;
  }
  .slick-dots{
    bottom: -45px!important;
  }
  .slick-dots li{
    width:2px!important;
  }
  .slick-dots li button:before{
    font-size:32px!important;
    transform:translateX(-16px);
  }

  /*わたしたちについて*/
  #about .contentInner{
    text-align: center;
    width: 372px;
    height: 523px;
  }
  #about .about-area{
    width: auto;
    height: 100%;
    padding: 268px 18px 29px;
    background-image: url(../img/top/webp/top-about_sp.webp);
    background-size: cover;
  }
  #about h2{
    display: block;
    font-size: 24px;
    text-align: center;
  }
  #about h2.top_title + p{
    padding-left: 0;
  }
  #about p{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  #about .btn02.comBlue{
    margin: 0 auto;
  }
  #about .about-area img {
    width:327px;
  }


  /*サービスを探す*/
  #search .tab_area li  {
    font-size:16px;
    line-height:1.5em;
  }
  /*カテゴリー*/
  #search .categories .column-box03b {
    flex-direction: row;
    width:100%;
    flex-wrap: wrap;
    gap:17px
  }
  #search .categories .column-box03b .thumb {
    margin: 0 auto 13px;
  }
  #search .categories .column-box03b .box{
    width:calc(50% - 8.5px);
    min-width:auto;
    min-height:135px;
    padding:20px 0;
  }
  #search .categories img {
    height:40px;
    width:auto;
  }

  /*目的から探す*/
  #search .purpose .column-box03b{
    width:100%;
    grid-template-columns: 1fr;
  }
  #search .purpose img {
    margin-right:10px;
  }
  #search .purpose .column-box03b .box{
    padding-left:15px;
  }
  #search .purpose .column-box03b .box a{
    font-size:16px;
  }

  /*サービスから探す*/
  #search .service .service-cont{
    gap: 8px;
    width:100%;
  }
  #search .service .service-cont .service-item{
    width:100%;
    max-width:100%;
    min-width:auto;
  }
  #search .service .service-item-wrap {
    display:none;
    flex-wrap:nowrap;
    height:auto;
  }
  #search .service .h2-icon{
    height: auto;
    width: auto;
    max-height: 15px;
    max-width: 15px;
  }
  .service .service-item-hd {
    padding: 16px 17px;
  }
  #search .service .service-item-hd,
  #search .service .service-item-hd a{
    margin-bottom:0;
    background-color: #fff;
    font-size:14px;
  }
  .service .service-item-hd::after {
    transform: translateY(-75%);
  }
  #search .service .service-item-hd a{
    pointer-events: none;
  }
  #search .service .service-item-link {
    position: relative;
    width: 100%;
    height:54px;
    background-color: #F4F7F8;
    border-bottom: 2px solid #E8E8E8;
    margin-bottom:2px;
    font-size:14px;
  }
  #search .service .service-item-link.top {
    padding-left:0;
  }
  #search .service .service-item-link a {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    padding:16px 16px 16px 16px;
    width: 100%;
  }
  #search .service .service-item-link a:hover {
    text-decoration: none;
  }
  #search .service .service-item-link a:first-of-type {
    padding:16px 16px 16px calc(20px + 16px);
  }
  #search .service .service-item-wrap:not(.phone):not(.mobile):not(.iot):not(.cloud):not(.security) .service-item-link:first-of-type a {
    padding-left: 16px;
  }
  #search .service .service-item-link::after {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    height: 16px;
    width: 11px;
    content: '';
    background-image: url(../img/servicenavi/ico_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  #search .service .service-item-link a::before,
  #search .service .service-item-link a::after {
    display: none;
  }
  .service .btn02.comBlue {
    margin-top: 48px;
  }

  /*リリース*/
  #oshirase .oshirase-area {
    /* flex-direction: column; */
    grid-template-columns: 1fr;
  }
  #oshirase h2.top_title + p {
    margin-bottom:32px;
  }
  #oshirase dt {
    padding: 25px 0 10px;
  }
  #oshirase dt:first-of-type {
    padding: 0 0 10px;
  }
  #oshirase dd {
    padding-bottom: 25px;
    height: auto;
  }
  /*インフォメーション 共通*/
  #info-seminar.contentWrap h2{
    margin:0;
  }
  #info-seminar .tab_area li{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #info-seminar .tabbox .box {
    width:100%;
    max-width:100%;
  }
  #info-seminar .tabbox .box:not(:last-of-type) {
    margin-bottom: 45px;
  }
  #info-seminar .seminar-item{
    flex-direction:column;
    gap:20px;
  }
  #info-seminar .seminar-item .seminar-thumb{
    text-align:center;
  }
  #info-seminar .service-link{
    flex-wrap: wrap;
    gap:14px;
  }
  #info-seminar .seminar-list-txt {
    font-size:18px;
    text-align:left;
  }

  /*セミナー*/
  #info-seminar .seminar .seminar-detail{
    min-height:auto;
    margin-bottom:19px;
  }
  #info-seminar .seminar .seminar-title{
    font-size:18px;
    margin-bottom:24px;
    padding:0;
  }
  #info-seminar .seminar .seminar-format-wrap{
    margin-bottom:14px;
  }
  #info-seminar .seminar .service-link .service-tag a{
    font-size:14px;
    white-space: nowrap;
    min-height:20px;
    margin:0;
  }
  /*アーカイブ*/
  #info-seminar .seminar .seminar-detail{
    min-height:auto;
    margin-bottom:19px;
  }
  #info-seminar .movie .date_time{
    font-size:14px;
    margin:0;
  }
  #info-seminar .movie .seminar-title{
    font-size:16px;
    margin: 16px 0 25px;
    padding:0;
  }
  #info-seminar .movie .service-link .service-tag{
    margin-bottom:10px;
  }
  #info-seminar .movie .service-link .service-tag a{
    font-size:14px;
    white-space: nowrap;
    min-height:20px;
    margin:0;
  }


  /*バナー*/
  #bunner .bunner-area {
    flex-direction: column;
    gap:32px;
  }
  #bunner .bunner-area .box {
    width:100%;
  }
  #bunner .bunner-area img{
    width:100%;
  }
  #bunner .bunner .btn_right01 .detail_01{
    font-size: 14px;
    font-weight:500;
    padding-left:30px;
  }

  /*採用情報*/
  #recruit .btn_right01 .detail_01{
    font-size: 14px;
    font-weight:500;
    padding-left:30px;
  }
  /*ソリューション*/
  #solution h2{
    font-size:14px;
  }
  .solution-area li {
    padding: 0 9px;
  }
  /*フローティングメニュー*/
  #page-menu-area {
    width:100%;
    flex-direction: row;
    gap:2px;
    justify-content: center;
    left:0;
    bottom: 0;
  }
  #page-menu-area .page-menu-item{
    flex: 1;
    height:160px;
    justify-content: start;
  }
  #page-menu-area .page-menu-item.partner .icon{
    height:32px;
    width:auto;
    margin-bottom: 6px;
  }
  #page-menu-area .page-menu-item.events div{
    margin-top:12px;
    margin-bottom:0;
  }
  /*アイコン*/
  .service-item-hd.open::after{
    position: absolute;
    right:17px;
    content: '＋';
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    background-image: none;
  }
  .service-item-hd.close::after {
    position: absolute;
    right:17px;
    content: '－';
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    background-image: none;
  }
  .sp_banner{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
  }
  #wrap #page-top-area{
    bottom:100px;
  }
}


/*フッター*/
#footer-notes{
  width: 78vw;
  max-width: 1500px;
  margin: 0 auto;
}
#sp_footerWrap{
width: 100%;
max-width: 2000px;
margin: 10px auto 0;
}
#sp_footerWrap ul{
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
margin-bottom: 10px;
}
#sp_footerWrap ul li a::after{
content: '|';
padding-right: 5px;
padding-left: 5px;
}
footer{
  padding: 10px 0;
  background: #00178e;
  color: #fff;
  font-size: 14px;
}
footer a:hover{
color: #fff;
  text-decoration: underline !important;
}
footer a{
color: #fff;
text-decoration: none !important;
}
footer a:visited{
color: #fff;
}
footer a:active{
color: #fff;
}
footer a:link{
color: #fff;
}
footer .footerWrap{
  margin: 45px auto 40px;
  display: flex;
  justify-content: center;
}
footer .addWrap{
  margin-left: 24px;
}
footer .addWrap a:nth-of-type(n+1) img{
  width: 20px;
  height: auto;
  margin-left: 8px;
  vertical-align: bottom;
}
footer .addWrap a:last-of-type img{
  width: 22px;
  height: auto;
}
footer .addWrap ul{
  margin-top: 20px;
}
footer .addWrap ul li{
  margin-bottom: 6px;
  font-size: 12px;
}
footer .serviceWrap{
  margin: 0 10px;
  width: auto;
  border-right: 1px solid #fff;
}
footer .serviceWrap02{
  display: flex;
}
footer .serviceWrap02 dl{
  margin-right: 35px;
}
footer .serviceWrap02 dl dt{
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
  padding-bottom: 13px;
}
footer .serviceWrap02 dl dd{
  padding-left: 15px;
}
footer .serviceWrap02 dl dd a{
}
footer .serviceWrap02 dl dd a:not(.nobefore)::before{
  display: block;
  content: '';
  position: relative;
  width: 6px;
  height: 6px;
  top: 12px;
  left: -15px;
  margin-right: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  transform: rotate(-45deg);
}
footer .footerBottom{
  border-top: 1px solid #fff;
  padding: 22px 0 16px;
  font-size: 12px;
}
footer .serviceWrap02 dl dd a.nobefore{
  display: inline-block;
  padding-left: 1em;
}
/*--*/
@media screen and (max-width: 2000px) {
  footer{
    padding: 10px 2.5vw;
    font-size: 0.7vw;
  }
  footer .footerWrap{
    margin: 2.5vw auto 2vw;
  }
  footer .addWrap{
    margin-left: 1.2vw;
  }
  footer .addWrap a:nth-of-type(n+1) img{
    width: 1vw;
    height: 1vw;
    margin-left: 0.4vw;
  }
  footer .addWrap a:last-of-type img{
    width: 1.1vw;
    height: 0.75vw;
  }
  footer .addWrap ul{
    margin-top: 1vw;
  }
  footer .addWrap ul li{
    margin-bottom: 0.3vw;
  }
    footer .serviceWrap02 dl dt{
    margin-bottom: 0.75vw;
    padding-bottom: 0.65vw;
  }
  footer .footerBottom{
    padding: 0.8vw 0 0.6vw;
  }
}
  @media screen and (max-width: 1200px) {
    /*注釈*/
    #footer-notes{
      width: 100%;
    }
    footer .footerWrap{
      flex-direction: column;
      align-items: center;
      font-size: 13px;
    }
    footer .addWrap {
      width: auto;
      margin-top: 20px;
      margin-left: 0;
    }
    footer .serviceWrap {
      width: auto;
      margin-top: 20px;
      border-right: none;
    }
    footer .serviceWrap02 dl:last-of-type {
      margin-right: 0;
    }
    footer .addWrap a:nth-of-type(n+1) img{
      width: 20px;
      height: 20px;
    }
    footer .addWrap a:last-of-type img{
      width: 22px;
      height: 15px;
    }
    footer .infoWrap{
      width: auto;
    }
    footer .infoWrap ul li{
      width: 180px;
      height: 70px;
      font-size: 14px;
      background-position: right 9px top 24px;
    }
    footer .infoWrap ul li a{
      padding-top: 25px;
    }
  }
  /*-sp-*/
  @media screen and (max-width: 768px) {
    #banner-partner{
      margin-top: 50px;
      padding:0;
    }
    #banner-partner{
      max-width: 750px;
    }
    #banner-jqa{
      margin-top: 50px;
      padding:0;
    }
    #banner-jqa{
      max-width: 750px;
    }
    #footer-notes{
      margin-bottom: 10px;
    }
    footer{
      text-align: center;
      padding-top: 30px;
    }
    footer .footerBottom{
      border: none;
      font-size: 12px;
    }
    .service.tabbox {
      padding: 12px 24px 56px;
    }
    .service .service-cont {
      padding-top: 0;
    }
}
/* 20220831追記 */
footer {
  margin-top: 10px !important;
  padding: 0 0 92px !important;
  background-color: #002896;
  min-height: 310px;
}
.b-footer-txt {
  text-align: right;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 11px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.b-footer-txt p {
  font-size: 11px;
  margin: 15px 0;
}
footer .footerWrap {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
  justify-content: space-between;
}
footer .f-logo-wrap {
  margin: 0 auto 0 0;
}
footer .f-logo {
  margin-top: 67px;
  margin-bottom: 32px;
}
footer .f-logo img {
  max-width: 382px;
  width: 100%;
  transition: all 0.3s;
}
footer .f-logo a img:hover {
  opacity: 0.6;
}
footer .f-sns-wrap {
  display: flex;
  align-items: center;
}
footer .f-sns-wrap a {
  margin-right: 13px;
}
footer .addWrap {
  margin: 20px 0 0 auto;
}
footer .addWrap .f-right-top {
  text-align: right;
  margin-top: 82px;
}
footer .f-right-top a {
  font-size: 15px;
  line-height: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .f-right-top a::before {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  content: '';
  background-image: url(/common/img/servicenavi/ico_arrow_on.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  margin-right: 5px;
}
footer .addWrap ul {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .f-25bnr {
  margin-top: 60px!important;
}
footer .footerBottom {
  border: none;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: right;
}
footer .f-copy {
  /* padding-bottom: 50px!important; */
}

@media screen and (max-width:768px) {
  .b-footer-txt {
    text-align: left;
  }

  footer .footerWrap {
    align-items: flex-start;
  }

  footer .addWrap .f-right-top {
    margin-top: 12px;
    text-align: left;
  }
  footer .f-right-top a {
    justify-content: flex-start;
  }

  footer .addWrap {
    margin: 20px auto 0 0;
    justify-content: flex-start;
  }
  footer .addWrap ul {
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer .addWrap ul li {
    width: calc(50% - 10px);
    text-align: left;
  }

  footer .footerBottom {
    text-align: left;
    padding: 0 24px;
  }
  footer .f-logo {
    margin-top: 48px;
    margin-bottom: 16px;
  }
  footer .f-25bnr {
    margin-top: 32px!important;
    margin-bottom: 8px!important;
  }
  footer .f-copy {
    padding-bottom: 0px!important;
  }
}
@media screen and (max-width:427px) {
  footer .addWrap ul li {
    width: auto;
    white-space: nowrap;
  }
}

/* 20220831追記ここまで */
/* 20250219 4/1プロジェクト追記 */
/* モバ */

/* コム */
.topMainvisual {
  max-height: 380px;
  padding-top: 0;
  & h1 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--comBlue);
  }
}
.topMainvisual-txt-wrap {
  top: 50%;
  & .topMainvisual-txt {
    padding: 40px;
    &::after {
      display: none;
    }
  }
  & .topMainvisual-txt-item02 {
    & p {
      margin-bottom: 0;
      line-height: 1.72;
      font-weight: 500;
      color: var(--comBlue);
    }
  }
  & .topMainvisual-txt-btn {
    position: relative;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    & a {
      width: fit-content;
      padding: 13px 70px 13px 24px;
      height: auto;
      box-shadow: none;
    }
  }
  /* & .topMainvisual-txt-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    display: flex;
    justify-content: flex-end;
    & a {
      width: fit-content;
      padding: 13px 70px 13px 24px;
      height: auto;
      box-shadow: none;
    }
  } */
}

.recommend {
  & h2 {
    margin-bottom: 32px;
  }
  & a {
    img {
      max-width: 100%;
    }
  }
}
.topMainvisual-txt {
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width:768px) {
  /* モバ */

  /* コム */
  .topMainvisual_sp {
    max-height: none;
    height: auto;
    position: relative;
    & img {
      width: 100%;
      height: auto;
    }
    &::after {
      display: none;
    }
    & .topManinvisual-txt-btn {
      position: absolute;
      right: auto;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
    }
  }

  .topMainvisual-txt-wrap {
    & .topMainvisual-txt-btn {
     right: 50%;
     transform: translate(50%, calc(100% + 16px));
    }
  }
}
