@charset "UTF-8";
em {
  font-size: 65%;
}

a {
  transition: all 0.3s linear;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}

h3 {
  font-size: 1.4em;
  font-weight: bold;
  color: #00b0cc;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 1em;
  line-height: 1.5em;
}
h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: #00b0cc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  h3::before {
    height: 100%;
  }
}

.btn_wrap {
  margin-bottom: 3rem;
}
.btn_wrap.btns {
  margin: 0 auto;
}

.btns {
  max-width: 500px;
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  display: block;
  padding: 0.6em 1em;
  border-radius: 5px;
  width: 100%;
  margin: 0 auto;
}

.btn_blue {
  background-color: #0058a4;
}

.btn_blue_d {
  background-color: #0058a4;
  cursor: pointer;
}
.btn_blue_d:hover {
  opacity: 0.8;
}

.btn_yellow {
  background-color: #ffa500;
}

.btn_gray {
  background-color: #EEEEEE;
  cursor: default;
  color: #B7B7B7;
}
.btn_gray:hover {
  opacity: 1;
}

.caution {
  color: red;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 1rem;
}

.icon_ttl {
  display: flex;
  justify-content: flex-start;
}
.icon_ttl .icon {
  width: 25px;
  margin-right: 10px;
}
.icon_ttl .icon img {
  display: block;
  max-width: 100%;
  margin: 6px auto 0;
}
.icon_ttl p {
  font-weight: bold;
  font-size: 1.2rem;
}

.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.page_top {
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9000;
  display: inline;
  transition: 0.3s ease-out;
  opacity: 0;
}
.page_top img {
  max-width: 100%;
}

.page_top_active {
  opacity: 1;
}

.h2_btninner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .h2_btninner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.h2_btninner h2 {
  margin: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .h2_btninner h2 {
    margin-bottom: 1em !important;
  }
}
.h2_btninner a {
  width: 36% !important;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .h2_btninner a {
    width: 100% !important;
  }
}

.text_btninner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .text_btninner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header_kv {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0.6em;
}
@media screen and (max-width: 767px) {
  .header_kv {
    padding: 0 5.3%;
  }
}

.imgbox h1 img {
  width: 100%;
}

#gnav {
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  #gnav {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #f7f7f7;
    border-bottom: none;
    z-index: 9998;
  }
}

#gnav ul {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0.6em;
  display: flex;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    padding: 0 5.3%;
  }
}
@media screen and (max-width: 767px) {
  #gnav ul {
    padding: 16vw 2em 0;
    flex-direction: column;
  }
}

#gnav ul li {
  list-style-type: none;
  width: 25%;
  position: relative;
}
#gnav ul li::after {
  content: "";
  display: block;
  height: 56px;
  width: 1px;
  background: #e5e5e5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#gnav ul li:last-child::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  #gnav ul li {
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
  }
}

#gnav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.7em;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s linear;
  position: relative;
  color: #fff;
  background-color: #000;
  height: 100%;
}
#gnav ul li a::before {
  content: "";
  width: 0%;
  height: 3px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 0.3s linear;
  transform: translateX(-50%);
}
#gnav ul li a:hover {
  opacity: 0.7;
}
#gnav ul li a:hover::before {
  width: 50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  #gnav ul li a {
    font-size: 1em;
    background-color: #fff;
    color: #000;
  }
}

#gnav ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.7em;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s linear;
  position: relative;
  color: #000;
  background-color: #c7c7c7;
  flex-direction: column;
  height: 100%;
}
#gnav ul li span::before {
  content: "";
  width: 0%;
  height: 3px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 0.3s linear;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #gnav ul li span {
    font-size: 1em;
    background-color: #c7c7c7;
    color: #000;
  }
}
#gnav ul li span em {
  font-size: 70%;
}

.sp_menuBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_menuBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 13vw;
    height: 13vw;
    background: url("../images/btnMenu.svg") no-repeat center center;
    background-size: cover;
  }
}
.sp_menuBtn.active {
  background: url("../images/btnClose.svg") no-repeat center center;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0.6em;
  padding-top: 3em;
}
@media screen and (max-width: 767px) {
  main {
    padding: 0 5.3%;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 3em;
  }
}

.sponsor h2 {
  font-size: 1em;
  text-align: center;
  margin-bottom: 1.2em;
}

.news dl {
  display: flex;
}
.news dl dt {
  width: 13%;
}
.news dl dd {
  width: 87%;
}
@media screen and (max-width: 767px) {
  .news dl dt {
    width: 25%;
  }
  .news dl dd {
    width: 75%;
  }
}

.news_item {
  margin-bottom: 1em;
  transition: all 0.5s;
}
.news_item dd {
  text-decoration: underline;
}
.news_item:hover {
  opacity: 0.5;
  cursor: pointer;
}

.news_modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.news_modal-content {
  top: 0;
  max-width: 550px;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: relative;
  transition: top 0.5s, opacity 0.5s;
  border-radius: 0.4em;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  right: 1em;
  top: 0;
  position: absolute;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#news_modal-body dt {
  margin-bottom: 1em;
}
#news_modal-body h4 {
  color: #00b0cc;
  background-color: #eee;
  padding: 0.5em;
  margin-bottom: 1em;
}

.news_modal-content_under {
  display: flex;
  justify-content: end;
  border-top: 1px solid #eee;
  margin-top: 2em;
}
.news_modal-content_under .under_close {
  margin: 20px auto 0;
}

.overview {
  margin-top: 2em;
}

.overview table {
  font-size: 0.9em;
  border: 1px solid #ccc;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 4em;
}

.overview table td {
  padding: 10px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}
.overview table td:nth-of-type(1) {
  background: #cceff5;
  width: 135px;
  border-right: 1px solid #ccc;
}

.seminar_tabwrap {
  background-color: #E6F6EB;
  border-radius: 5px;
}

.seminar_tabttl {
  background-color: #327727;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .seminar_tabttl {
    font-size: 1.2rem;
  }
}

.seminar_tabwrap_inner {
  padding: 1.5em;
}
@media screen and (max-width: 767px) {
  .seminar_tabwrap_inner {
    font-size: 0.7em;
    padding: 1.5em 0;
  }
}

.seminar_tabsubttl {
  font-size: 1.2em;
  color: #24581B;
  font-weight: bold;
  margin-bottom: 1em;
}

.tab_btn {
  display: flex;
  justify-content: space-between;
}

.seminar_tabitem {
  width: 32%;
}
.seminar_tabitem a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 2px solid #24581B;
  border-bottom: 0;
  background-color: #fff;
  font-size: 1.8em;
  padding: 0.3em;
  border-radius: 7px 7px 0px 0px;
  cursor: pointer;
}
.seminar_tabitem a.is-active {
  background-color: #24581B;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .seminar_tabitem a {
    font-size: 1.2em;
    padding: 1em 1em;
  }
}
.seminar_tabitem a span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .seminar_tabitem a span {
    font-size: 1em;
  }
}

.tab_content {
  width: 100%;
  border: 2px solid #24581B;
  padding: 1em;
}

.tab_content_item {
  display: none;
}
.tab_content_item.is-active {
  display: block;
}

.tab_content_iteminner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tab_content_iteminner {
    flex-direction: column;
  }
}

.venue_a, .venue_b {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .venue_a, .venue_b {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .venue_a {
    margin-bottom: 2em;
  }
}

.venue_listttl {
  background-color: #327727;
  text-align: center;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  padding: 0 0.5em 0.5em;
}
.venue_listttl span {
  font-size: 1.8em;
}
.venue_listttl:nth-child(1) {
  padding-bottom: 0;
  padding-top: 0.5em;
}

.venue_listsubttl {
  text-align: center;
  color: #fff;
  background-color: #327727;
  font-size: 1em;
  padding: 0 0.5em 1em;
}
.venue_listsubttl:nth-child(1) {
  padding-bottom: 0;
  padding-top: 1em;
}

.venue_lists {
  padding: 1em;
  background-color: #e8e8e8;
}

.venue_lists_toptxt {
  text-align: right;
}

.presentation_li {
  width: 100%;
  padding: 0;
}
.presentation_li li {
  list-style-type: none;
  background-color: #fff;
  padding: 1em;
  margin-bottom: 1.8em;
}
.presentation_li li:last-child {
  margin-bottom: 0;
}

.presen_no {
  background-color: #24581B;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.5em;
  margin-bottom: 1em;
}

.presen_ttl {
  text-align: center;
  margin-bottom: 1em;
  color: #24581B;
  font-size: 1.2em;
  font-weight: bold;
}

.presen_time {
  border-top: dotted 1px #d3d3d3;
  border-bottom: dotted 1px #d3d3d3;
  padding: 0.8em;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1em;
}
.presen_time span {
  font-weight: normal;
  font-size: 0.8em;
}

.presen_co {
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  margin-bottom: 0.5em;
}

.presen_post {
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 0.4em;
}

.presen_name {
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  margin-bottom: 1.2em;
}

.presen_btn {
  display: flex;
  justify-content: space-around;
}

.presen_detail,
.presen_apply {
  text-align: center;
  display: block;
  width: 46%;
  padding: 0.4em;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.presen_detail:hover,
.presen_apply:hover {
  opacity: 0.8;
}
.presen_detail::after,
.presen_apply::after {
  content: ">";
  position: absolute;
  right: 0.4em;
  top: 50%;
  transform: translateY(-50%);
}

.presen_detail {
  background-color: #0058a4;
}

.presen_apply {
  background-color: #ffa500;
}

.semi_card {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .semi_card {
    flex-direction: column;
  }
}
.semi_card .paid {
  background-color: #E5F7FA;
}
.semi_card .paid h3::before {
  background: #00b0cc;
}
.semi_card .paid .btn_inner a {
  background-color: #00b0cc;
}
.semi_card .free {
  background-color: #E6F6EB;
}
.semi_card .free h3 {
  color: #0AA636;
}
.semi_card .free h3::before {
  background-color: #0AA636;
}
.semi_card .free .btn_inner.inactive_mode a {
  background-color: #a3a3a3 !important;
}
.semi_card .free .btn_inner.inactive_mode a:hover {
  opacity: 1 !important;
}
.semi_card .free .btn_inner a {
  background-color: #0AA636;
}
.semi_card .ex_list {
  background-color: #FFF7EE;
}
.semi_card .ex_list h3 {
  color: #ffa63b;
}
.semi_card .ex_list h3::before {
  background-color: #ffa63b;
}
.semi_card .ex_list .btn_inner a {
  background-color: #ffa63b;
}

.inactive_mode {
  background-color: #d3d3d3 !important;
}
.inactive_mode h3 {
  color: #000 !important;
}
.inactive_mode h3::before {
  background: #000 !important;
}
.inactive_mode .btn_inner a {
  background-color: #a3a3a3 !important;
}
.inactive_mode a:hover {
  opacity: 1 !important;
}
.inactive_mode:hover {
  opacity: 1 !important;
}

.semi_card_item {
  list-style: none;
  width: 32%;
  /*width: 36%;*/
  padding: 1.4em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /*justify-content: space-between;*/
}
@media screen and (max-width: 767px) {
  .semi_card_item {
    width: 100%;
    margin-bottom: 2em;
  }
}
.semi_card_item h3 {
  display: flex;
  font-size: 1.2em;
  flex-shrink: 0;
  position: relative;
  /*&::before{
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: calc(38px / 2);
      width: 8px;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
      left: 0;
  }*/
}
.semi_card_item h3 a {
  text-decoration: underline;
}
.semi_card_item p {
  font-size: 0.9em;
  line-height: 1.8em;
  margin-bottom: 2em;
}
.semi_card_item .btn_inner {
  margin-top: auto;
}
.semi_card_item .btn_inner_r a {
  /*background-color: #ffa500;*/
  text-decoration: underline;
  color: #03a2bb;
  padding-left: 1.2em;
  position: relative;
}
.semi_card_item .btn_inner_r a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #03a2bb;
  height: 15px;
  width: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.semi_card_item .btn_inner {
  width: 100%;
}
.semi_card_item .btn_inner a {
  color: #fff;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  font-weight: bold;
  position: relative;
  border-radius: 5px;
}
.semi_card_item .btn_inner a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  height: 19px;
  width: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 13px;
}

.seminar_detailtab {
  padding-top: 2rem;
  max-width: 980px;
  margin: 0 auto;
}
.seminar_detailtab main {
  padding-top: 1em;
}

.seminar_close {
  text-align: right;
  margin-bottom: 1rem;
}
.seminar_close a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8em;
}
.seminar_close a img {
  margin-right: 0.4rem;
}
.seminar_close a:hover {
  color: #0058a4;
  text-decoration: underline;
}

.semimartab_band {
  width: 100%;
  background-color: #00b0cc;
  text-align: center;
  padding: 0.8em;
  font-weight: bold;
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 1.2em;
}

.semimartab_title {
  text-align: center;
  color: #00b0cc;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
}

.semimartab_time {
  border-top: solid 1px #d3d3d3;
  border-bottom: solid 1px #d3d3d3;
  padding: 1em;
  color: #666;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2em;
}
.semimartab_time span {
  font-size: 0.8em;
}

.semimartab_co {
  font-size: 1.4em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}

.semimartab_post {
  font-size: 1em;
  text-align: center;
  margin-bottom: 0.4em;
}

.semimartab_name {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
}

.semimartab_detail {
  width: 70%;
  margin: 0 auto 3em;
}
@media screen and (max-width: 767px) {
  .semimartab_detail {
    width: 80%;
  }
}

.semimartab_cv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.semimartab_cv a {
  background-color: #ffa500;
  text-align: center;
  display: block;
  width: 46%;
  padding: 1em;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.semimartab_cv a:hover {
  opacity: 0.8;
}
.semimartab_cv a::after {
  content: ">";
  position: absolute;
  right: 0.4em;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .exhibitor_table_wrap {
    overflow: auto;
  }
}

.exhibitor_table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .exhibitor_table {
    white-space: nowrap;
  }
}
.exhibitor_table .exhibitor_table_th .exhibitor_dev {
  background-color: #FFF6A7;
}
.exhibitor_table .exhibitor_table_th .exhibitor_tenant {
  background-color: #F8C6BD;
}
.exhibitor_table .exhibitor_table_th .exhibitor_xd {
  background-color: #D0ECFA;
}
.exhibitor_table .exhibitor_table_th .exhibitor_marche {
  background-color: #c2f1e0;
}
.exhibitor_table tr .exhibitor_name {
  font-weight: bold;
  font-size: 1em;
  width: 15%;
  border: 1px solid #a0a0a0;
}
.exhibitor_table tr .exhibitor_shop {
  font-weight: bold;
  font-size: 1em;
  width: 4%;
  border: 1px solid #a0a0a0;
}
.exhibitor_table tr .exhibitor_num {
  font-weight: bold;
  font-size: 1em;
  width: 6%;
  border: 1px solid #a0a0a0;
}
.exhibitor_table tr .exhibitor_dev {
  background-color: #FFF7EE;
}
.exhibitor_table tr .exhibitor_tenant {
  background-color: #FFEFEF;
}
.exhibitor_table tr .exhibitor_xd {
  background-color: #EEF6FE;
}
.exhibitor_table tr .exhibitor_marche {
  background-color: #F2FCF8;
}
.exhibitor_table tr td {
  font-size: 0.8em;
  padding: 0.5em;
  /*            border: 0px;*/
  line-height: 1.5em;
}
.exhibitor_table tr td:first-of-type {
  line-height: 1.8em;
  width: 12%;
  padding: 0.5em;
  text-align: center;
}
.exhibitor_table tr:nth-child(even) .exhibitor_dev {
  background-color: rgba(255, 247, 238, 0.6); /* 80% 透過 */
}
.exhibitor_table tr:nth-child(even) .exhibitor_tenant {
  background-color: rgba(255, 239, 239, 0.6); /* 80% 透過 */
}
.exhibitor_table tr:nth-child(even) .exhibitor_xd {
  background-color: rgba(238, 246, 254, 0.6); /* 80% 透過 */
}
.exhibitor_table tr:nth-child(even) .exhibitor_marche {
  background-color: rgba(242, 252, 248, 0.6); /* 80% 透過 */
}

.exhibitor_open {
  cursor: pointer;
}
.exhibitor_open:hover {
  color: #00b0cc;
  font-weight: bold;
  text-decoration: underline;
}

.exhibitor_modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 9001;
}

.exhibitor_modal_inner {
  position: absolute;
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  padding: 4em;
}
@media screen and (max-width: 767px) {
  .exhibitor_modal_inner {
    padding: 1em;
  }
}
.exhibitor_modal_inner p {
  padding: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 18px;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .exhibitor_modal_inner p {
    padding: 0;
  }
}

.exhibitor_modal_inner_ttl {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #00b0cc;
  padding: 1em;
  font-size: 1.4em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .exhibitor_modal_inner_ttl {
    font-size: 1.2em;
  }
}

.exhibitor_modal_close {
  display: block;
  width: 100%;
  max-width: 141px;
  margin: 60px auto 0;
  padding: 10px 0 10px 30px;
  border: 2px solid #00b0cc;
  color: #00b0cc;
  font-weight: bold;
  border-radius: 40px;
  line-height: 1;
  cursor: pointer;
}

.none_semi {
  background-color: #c1c1c1 !important;
}

.exhibitor_marche_t {
  background-color: #c2f1e0 !important;
  font-size: 0.8em !important;
}

.border_t {
  border-top: 2px solid #000 !important;
}

.border_l {
  border-left: 2px solid #000 !important;
}

.border_r {
  border-right: 2px solid #000 !important;
}

.border_b {
  border-bottom: 2px solid #000 !important;
}

.exhibitor_table_wrap_cation {
  font-size: 0.8rem;
  color: #000;
  display: inline-block;
  margin-left: 1em;
}

footer {
  padding: 6em 0 2em;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 3em 0 3em;
  }
}

.flogo {
  width: 100%;
  text-align: center;
  margin: 0 auto 4em;
}
.flogo a {
  display: inline-block;
}
.flogo a img {
  max-width: 100%;
}

.copy {
  text-align: center;
}/*# sourceMappingURL=common.css.map */