@charset "UTF-8";
/*====================================================
 共通
 ====================================================*/
.container {
  padding: 0 2%;
  display: block;
}

/*====================================================
 header
 ====================================================*/
header {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -moz-column-gap: 0;
       column-gap: 0;
  background-color: #fff;
  height: auto;
  padding: 1em 2%;
  max-width: 1920px;
  margin: auto;
}
header .title_logo,
header .tel_box {
  width: auto;
}
header .title_logo .tel_box {
  margin-top: 0;
}

/*====================================================
  パンくずリスト
 ====================================================*/
.breadcrumb {
  padding: 1em 0;
  color: #6699cc;
  font-weight: bold;
  justify-self: flex-start;
  max-width: 1200px;
  width: 100%;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-top: 1em;
}
.breadcrumb ul li a {
  color: #6699cc;
  transition: all 0.5s;
}
.breadcrumb ul li a:hover {
  color: #1f5489;
  transition: all 0.5s;
}
.breadcrumb ul i {
  padding-right: 0.5em;
}

/*====================================================
  #main-wrapper
 ====================================================*/
main {
  padding-bottom: 0;
}

#main-wrapper {
  background-color: #ffffcc;
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
}

/*====================================================
 footer
 ====================================================*/
footer {
  background-image: none;
  background-color: #fff;
  border-top: 20px solid #6699cc;
  position: static;
  height: auto;
  padding-top: 20px;
}
footer .footer_inner {
  position: static;
  justify-content: space-between;
  padding: 0 2%;
}
footer .footer_inner .f_title_logo,
footer .footer_inner .f_nav {
  width: auto;
}
footer .footer_inner .f_info {
  padding: 0;
}
footer .copyright {
  position: relative;
}
footer .copyright:before {
  background-image: url("../../img/bottom_line.png");
}/*# sourceMappingURL=common.css.map */