@charset 'UTF-8';
body {
  background: var(--bg);
}
/*-----------
mobile header
-----------*/
.img-bar {
  width: 100%;
}
#logo {
  height: 60px;
}
header {
    background: var(--bg);
    position: sticky;
    top: 0;
    height: 90px;
}
/*-----------
mobile content
-----------*/
#flow-mobile {
  width : 95vw ;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
#flow-pc {
  display: none;
}
/*--------------------
ここから下PC版
---------------------*/
@media screen and (min-width: 961px) {

  /*-----------
PC header
-----------*/
  header {
    height: 130px;
  }
  #header-wrapper {
    background: var(--bg);
  }
  #logo {
    height: 60px;
  }
  #flex-navi ul {
    margin: 0;
  }
  #flex-navi li {
    padding: 0;
	line-height: 40px;
  }
  /*-----------
PC content
-----------*/
  #flow-pc {
    width : 85%;

    display: block;
    margin: 0 auto;
  }
  #flow-mobile {
    display: none;
  }
