@charset "UTF-8";
/* CSS Document */

/* ==================================
MV　　TOP
==================================== */
.mv_area.links {
  width: 100%;
  background: url('../images/links/mv.jpg') center / cover no-repeat;
  padding-bottom: 16.33%;
}

@media only screen and (max-width: 768px){
.mv_area.links {
  width: 100%;
  background: url('../images/links/mv_sp.jpg') center / cover no-repeat;
  padding-bottom: 33.11%;
}
}


/* ==================================
リンク　テーブル
==================================== */

.sec_link .group_title{
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 30px;
}

.sec_link .box{
  margin-bottom: 60px;
}

.sec_link .box tr{

}

.sec_link .box th{
  box-sizing: border-box;
  padding: 25px;
  width: calc(100% * (375 / 1000));
  font-size: 14px;
  vertical-align: middle;
  border: 1px solid #000;
  font-weight: 500;
}

.sec_link .box td{
  box-sizing: border-box;
  padding: 25px;
  width: calc(100% * (635 / 1000));
  font-size: 13px;
  line-height: 1.8;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #000;
}


.sec_link .box tr:nth-of-type(2n) th{
  background-color: #f7f7f7;
}

.sec_link .box tr:nth-of-type(2n-1) th{
  background-color: #daf2ff;
}

.sec_link .box th a {
  display: inline-block;
  transition: 0.3s;
}

.sec_link .box th a::after {
  margin: -2px 0 0 15px;
  display: inline-block;
  vertical-align: middle;
  content: '\e3e0';
  font-family: 'Material Icons';
  font-size: 18px;
  line-height: 1;
}

.sec_link .box th a:hover {
  text-decoration: none;
  opacity: 0.7;
}


.sec_link .box tr th.gray{
  background-color: #f7f7f7;
}

.sec_link .box tr th.blue{
  background-color: #daf2ff;
}


/*col2*/
.link_area_box.flex_col{
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: space-between;
  justify-content: -webkit-space-between;
  justify-content: -ms-space-between;
  align-items: flex-start;
  align-items: -webkit-flex-start;
  align-items: -ms-flex-start;
}

.col2_item{
  max-width: 460px;
  width: calc(100% * (460 / 1000));
}


@media only screen and (max-width: 768px){
  .sec_link .group_title{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .sec_link .box{
    width: 100%;
  }
  
  .sec_link .box th,
  .sec_link .box td{
    display: block;
    width: 100%;
    border: none;
  }
  
  .sec_link .box tr{
    border: 1px solid #000;
  }
  
  .sec_link .box th{
    border-bottom: 1px solid #000;
  }
  
  /*col2*/
  .link_area_box.flex_col{
    display: block;
    display: -webkit-block;
    display: -ms-block;
  }

  .col2_item{
    max-width: none;
    width: 100%;
  }
  
  .sec_link .box.col2 th{
    border-bottom: none;
  }
  
}

/* ==================================
ホットライン
==================================== */
.hotline {
  margin-bottom: 80px;
}
.hotline .hotline_detail{
  font-size: 20px;
  font-weight: 400;
  margin: 0px 0 20px;
}


.hotline .hotline_detail li{
  list-style-type: none; /*点を非表示*/
  position: relative; /*基準位置*/
  padding-left: 0.8em;
  margin-bottom: 10px;
}

.hotline .hotline_detail li:before {
  border-radius: 50%; /*丸くする*/
  width: 10px; /*点の幅*/
  height: 10px; /*点の高さ*/
  display: block;
  position: absolute; /*絶対配置*/
  left: 0; /*点の位置*/
  top: 0.6em; /*点の位置*/
  content: "";
  background: #000; /*点の色*/
}

.hotline .caption{
  font-size: 16px;
}

@media only screen and (max-width: 768px){
  .hotline {
    margin-bottom: 60px;
  }
  .hotline .hotline_detail{
    font-size: 18px;
    font-weight: 400;
    margin: 0px 0 20px;
  }

  .hotline .hotline_detail li{
    list-style-type: none; /*点を非表示*/
    position: relative; /*基準位置*/
    padding-left: 0.6em;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .hotline .hotline_detail li:before {
    border-radius: 50%; /*丸くする*/
    width: 7px; /*点の幅*/
    height: 7px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    top: 0.7em; /*点の位置*/
    content: "";
    background: #000; /*点の色*/
  }

  .hotline .caption{
    font-size: 12px;
  }

}