/*  GIG5 Scanner Top CSS  */
@charset "UTF-8";

/*----- アンカーアイコン ----- */
.arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.ankr::before {
    width: 12px;
    height: 2px;
    background: #a40e1c;
    margin-left: 6.2px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);

}

.ankr::after {
    left: 8px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #a40e1c;
    border-right: 2px solid #a40e1c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.d-arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.d-arrow::before{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #a40e1c;
  border-right: solid 2px #a40e1c;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -4px;
}

.d-arrow::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-bottom: solid 2px #a40e1c;
  border-left: solid 2px #a40e1c;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
} 




/*-----     -----*/

.link-style-clear {
               text-decoration: none;
}

.labelBox {
    margin: 1em auto;
    padding: 1em;
    width: 90%;
    border: 1px solid #ccc; /* 枠線 */
    text-align: center;
}



/*----- カラム3/4(PC)〜カラム2(SP) -----*/

.flex-col4s, .flex-col3s, .flex-col2s{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
}
.flex-col4s > li, .flex-col3s > li, .flex-col2s > li{
  margin: 0 1% 10px;
}


.col-font {
    width: 100%;
    max-width: 400px;
    font-size: 18px;
    line-height: 38px;
}

@media screen and (min-width: 768px){
  .flex-col3s > li{
    width: calc(32.33333333% - 1%);
  }
  
  .flex-col4s > li{
    width: calc(24% - 1%);
  }
  
  .flex-col2s > li{
    width: calc(49% - 1%);
  }
}
@media screen and (max-width:767px) {
  .flex-col4s > li, .flex-col3s > li, .flex-col2s > li{
    width: calc(49% - 1%);
  }
}



/*----- フローティングクラウドアイコン -----*/

  .cloud-mount {position: relative; }

  .cloud-mount .icon-cloud {
                    position: absolute;
                    bottom: 0;
                    right: 0; 
                    width: 40%;
                    max-width: 130px;

   }

  .cloud-mount img {
                   width: 100%;
   }




