/* CSS Document @h.takahashi */

/*--------------------------------------------------
  汎用
---------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
.pc {
  display: initial !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width:768px){
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
/* スマホのみでのTELリンク */
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*--------------------------------------------------
  デフォルトリンクカラー[default_link_color]
---------------------------------------------------*/
.default_link_color a:link {text-decoration:underline; color: #0066cb;}
.default_link_color a:visited {text-decoration:underline; color: #0066cb;}
.default_link_color a:hover {text-decoration:underline; color: #0066cb;}
.default_link_color a:active {text-decoration:underline; color: #0066cb;}


/*--------------------------------------------------
  header
---------------------------------------------------*/
.header_bg {
  background-image:url(../image/main_title_pc_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
}
.header_bg_sp {
  background-image:url(../image/main_title_sp_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}


/*--------------------------------------------------
  footer
---------------------------------------------------*/
footer {
  background-color: #eceeef;
  padding-top: 0.5em;
}
footer .information_area{
  background-color: #ffffff;
  padding: 1.2em 1em 1em 1em;
  margin-top: 2em;
  border-radius: 10px;
}
footer .information_area .info_title {
  background-color: #306bb5;
  color: #ffffff;
  text-align: center;
  padding: 8px 5px 4px 5px;
  margin-bottom: 1em;
  border-radius: 5px;
}
footer .information_area .qrimage{
  background-color: #306bb5;
  display: inline-block;
  padding: 5px 10px 10px 10px;
  color: #ffffff;
  border-radius: 5px;
  margin: 10px 10px 0px 10px;
}
.copyright_area{
  background-color: #306bb5;
  color: #ffffff;
  margin-top: 2em;
}


/*--------------------------------------------------
  gmenu
---------------------------------------------------*/
.gmenu_cell {
  position: relative;
  padding: 0em 5px 0em 50px;
  border-radius: 5px;
  background-color: #e9f7f3;
  text-align: left;
  border: 1px solid #599ba8;
  transition: 0.3s;
  margin-top: 0.5em;
  font-size: 95%;
}
.gmenu_cell_01:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 10px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon01.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}
.gmenu_cell_02:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 10px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon02.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}
.gmenu_cell_03:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 15px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon03.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}
.gmenu_cell_04:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 15px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon04.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}
.gmenu_cell_05:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 15px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon05.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}
.gmenu_cell_06:after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: 50%;
  left: 15px;
  margin: -12px 0 0 0;
  background-image:url(../image/menu_icon06.png);
  background-repeat: no-repeat;
  background-size: 27px 27px;
}

.gmenu_cell:hover {
  border: 1px solid #7bc39f;
  color: #00369b;
  background-color: #f0fffb;
  transform: translate(0, -2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}

.gmenu_cell .oneline {
  padding: 25px 0px 22px 0px;
}
.gmenu_cell .twoline {
  padding: 14px 0px 10px 0px;
}
@media only screen and (max-width:768px){
  .gmenu_cell .oneline {
    padding: 14px 0px 10px 0px;
  }
  .gmenu_cell .twoline {
    padding: 14px 0px 10px 0px;
  }
}


/*--------------------------------------------------
  sub_title
---------------------------------------------------*/
.sub_title {
  position: relative;
  background: linear-gradient(90deg, #306bb5 0%, #417fb0 48%, #417fb0 52%, #73baa0 100%);
  padding: 15px 35px 10px 0px;
  margin-top: 1.5em;
  border-radius: 10px;
  text-align: center;
  font-size: 110%;
  font-weight: bold;
  color: #ffffff;
}
.sub_title:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #417fb0 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.sub_title_icon_01 {
  display: inline-block;
  background-image:url(../image/menu_icon01_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}
.sub_title_icon_02 {
  display: inline-block;
  background-image:url(../image/menu_icon02_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}
.sub_title_icon_03 {
  display: inline-block;
  background-image:url(../image/menu_icon03_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}
.sub_title_icon_04 {
  display: inline-block;
  background-image:url(../image/menu_icon04_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}
.sub_title_icon_05 {
  display: inline-block;
  background-image:url(../image/menu_icon05_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}
.sub_title_icon_06 {
  display: inline-block;
  background-image:url(../image/menu_icon06_w.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 4px 0px 5px 40px;
}


/*--------------------------------------
  お知らせ
--------------------------------------*/
.infolist_shintyaku {
  width: 100%;
  margin-top: 2em;
}
.infolist_shintyaku td {
  border-top: 1px solid #777777;
  padding: 14px 15px 14px 2px;
  line-height: 170%;
}
.infolist_shintyaku .date_col {
  text-align: center;
  white-space: nowrap;
  width: 1%;
}
.infolist_shintyaku .date_col span {
  background-color: #f3f5e1;
  padding: 13px 10px 13px 10px;
}
.infolist_shintyaku tr:last-child td {
  border-bottom: 1px solid #777777;
}


/*--------------------------------------
  規制スケジュール
--------------------------------------*/
.ukairo_hanrei {
  margin-top: 5px;
  font-size: 90%;
  line-height: 170%;
}
.ukairo_hanrei .redtext_01{
  width: 0em;
  height: 0em;
  padding: 0px 0.5px;
  background-color: #e60012;
  border-radius: 50%;
  border: 1px solid #e60012;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 110%;
  vertical-align: middle;
}
.ukairo_hanrei .redtext_02{
  width: 0em;
  height: 0em;
  padding: 0px 0.5px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #e60012;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 110%;
  vertical-align: middle;
}

.hanrei_table {
  width: 100%;
}
.hanrei_table td {
  font-size: 95%;
  padding: 3px 5px 3px 5px;
}
@media screen and (max-width:768px){
  .hanrei_table td {
    width: 100%;
    display: block;
  }
}


/*--------------------------------------
  規制内容
--------------------------------------*/
.kisei_naiyo_area {
  background-color: #ecf6fc;
  margin-top: 2em;
  padding-bottom: 2em;
}
.kisei_naiyo_white_area{
  background-color: #ffffff;
  border-radius: 10px 10px 0px 0px;
  padding-bottom: 2em;
}
.kisei_naiyo_detail_area {
  margin: 2em auto 0px auto;
  width: 95%;
  max-width: 1000px;
}
.kisei_naiyo_detail_area .kisei_info {
  border-top: 2px solid #306bb5;
  padding-top: 5px;
  padding-bottom: 2em;
}
.kisei_naiyo_detail_area .kisei_info:last-child {
  border-bottom: 2px solid #306bb5;
}
.kisei_info_table {
  margin: 0px;
  width: 100%;
}
.kisei_info_table td{
  padding: 11px 10px 10px 10px;
  vertical-align: middle;
}
.kisei_info_table .left{
  color: #306bb5;
  font-size: 220%;
  font-weight: bold;
  text-align: right;
  width: 49%;
}
.kisei_info_table .center{
  color: #e61673;
  font-size: 100%;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  width: 2%;
}
.kisei_info_table .right{
  color: #306bb5;
  font-size: 220%;
  font-weight: bold;
  text-align: left;
  width: 49%;
}
@media only screen and (max-width:768px){
  .kisei_info_table .left{
    font-size: 100%;
    text-align: center;
  }
  .kisei_info_table .center{
    font-size: 90%;
  }
  .kisei_info_table .right{
    font-size: 100%;
    text-align: center;
  }
}

.kisei_datetext_area{
  color: #306bb5;
  vertical-align: middle;
  padding: 10px;
}
.kisei_year_text {
  font-size: 130%;
  font-weight: bold;
  vertical-align: middle;
}
.kisei_date_text {
  font-size: 230%;
  font-weight: bold;
  vertical-align: middle;
}
.kisei_time_text {
  font-size: 180%;
  font-weight: bold;
  vertical-align: middle;
}
.kisei_circle_text {
  width: 1em;
  height: 1em;
  padding: 5px 6px;
  background-color: #306bb5;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 110%;
  vertical-align: middle;
}
@media only screen and (max-width:768px){
  .kisei_year_text {
    font-size: 100%;
    font-weight: bold;
    vertical-align: middle;
  }
  .kisei_date_text {
    font-size: 120%;
    font-weight: bold;
    vertical-align: middle;
  }
  .kisei_time_text {
    font-size: 110%;
    font-weight: bold;
    vertical-align: middle;
  }
  .kisei_circle_text {
    width: 1em;
    height: 1em;
    padding: 5px 6px;
    background-color: #306bb5;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 110%;
    vertical-align: middle;
  }
}

.tukodome_btn {
  position: relative;
  padding: 0.5em 5px 0.5em 75px;
  border-radius: 5px;
  background-color: #ff3900;
  text-align: left;
  border: 1px solid #ff3900;
  transition: 0.3s;
  margin-top: 1em;
  font-size: 200%;
}
.tukodome_btn:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  left: 10px;
  margin: -25px 0 0 0;
  background-image:url(../image/icon_tukodome.png);
  background-repeat: no-repeat;
  background-size: 50px 50px;
}







/*--------------------------------------------------
  工事内容
---------------------------------------------------*/
.route247_table td,th{
  border: none;
  vertical-align: top;
  line-height: 170%;
}
.route247_table th {
  padding: 7px;
  background-color: transparent;
  text-align: center;
}
.route247_table td {
  padding: 11px 7px 7px 7px;
}
.col_route247 {
  background-color: #555555;
  border-radius: 10px;
  padding: 4px 10px 2px 10px;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
}
@media only screen and (max-width:768px){
  .route247_table th, .route247_table td {
    width: 100%;
    display: block;
  }
}






/*--------------------------------------
bootstrap オリジナル CSS
--------------------------------------*/
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
  position: relative;
  min-height: 1px;
}
.col-xs-1-5 {
  width: 20%;
  float: left;
}
.col-xs-2-5 {
  width: 40%;
  float: left;
}

.col-xs-3-5 {
  width: 60%;
  float: left;
}

.col-xs-4-5 {
  width: 80%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
  .col-sm-2-5 {
    width: 40%;
    float: left;
  }
  .col-sm-3-5 {
    width: 60%;
    float: left;
  }
  .col-sm-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
  .col-md-2-5 {
    width: 40%;
    float: left;
  }
  .col-md-3-5 {
    width: 60%;
    float: left;
  }
  .col-md-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
  .col-lg-2-5 {
    width: 40%;
    float: left;
  }
  .col-lg-3-5 {
    width: 60%;
    float: left;
  }
  .col-lg-4-5 {
    width: 80%;
    float: left;
  }
}


/*--------------------------------------
  トップリンク H.takahashi
---------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 10px 5px 0px 5px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  background-color: #306bb5;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
 
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media print{
  #pageTop {
    position: fixed;
    bottom: 0px;
    right: 0px;
  }
  #pageTop a {
    padding: 0px 0px 0px 0px;
  }
}

