@charset "utf-8";

/*==================================================
共通　横並びのための設定
===================================*/

.check_btn {
    font-size: 2rem;
      text-align: center;
}

.gnavi li{
    margin-bottom:20px;
}

@media screen and ( max-width:560px ) {   
    .check_btn {
      font-size: calc(30*(100vw/750));
  }
  .gnavi li {
      margin-bottom: calc(170*(100vw/750))!important;
  }
  .gnavi li a {
      padding: 0 0 calc(30*(100vw/750)) 0!important;
  }
}

/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
    position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
    color:#0481A2;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#0481A2;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
    transition-delay: 0.5s;
}


/*========= レイアウトのためのCSS ===============*/

.lead{
  padding: 50px 20px;
}


