:root {
  --biprogyBlue1:#1D2088;
  --biprogyBlue2:#0081CC;
  --biprogyBlue3:#00AFEC;
  --biprogyPurple:#C82F8B;
  --biprogyGreen:#45B035;
  --biprogyYellow:#FFE100;
  --biprogyOrange:#F18D00;
  --biprogyRed:#E61F53; }

#foot {
  height: fit-content;
  background: none;
  color: #FFF;
  padding: var(--space2) 0;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; }
  #foot > .container {
    display: flex;
    flex-direction: column;
    grid-gap: var(--space2);
    align-items: center; }
  #foot .logo_biprogy {
    width: 314px;
    height: 34px; }
    #foot .logo_biprogy .icon {
      width: 100%;
      height: 100%;
      background-image: url("../images/logo_biprogy.png"); }
  #foot .copyright {
    font-size: var(--fontSize_ss); }
  @media (min-width: 768px) {
    #foot > .container {
      flex-direction: row;
      justify-content: space-between; }
    #foot .copyright {
      font-size: var(--fontSize_s); } }

#mv {
  overflow: hidden;
  box-sizing: border-box; }
  #mv .bg_wrap picture {
    width: 100%;
    height: 100%; }
    #mv .bg_wrap picture img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  #mv .bg_wrap::after {
    width: 100%;
    height: 100%;
    background: #333;
    content: "";
    opacity: 0.33;
    filter: Alpha(opacity=33);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0; }
  #mv .section_body_wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
