/* =========================================================
   FOOTER (Simple / Reset Version)
   - No gradient
   - Clean corporate style
========================================================= */

footer{
  position: relative;
  background: #255f9d;
  color: var(--color-fff);
  padding: calc(var(--space-50)*1) calc(var(--space-50)*2) var(--space-20);
  font-size: calc(var(--font-size-h5)*0.8);
}

/* =========================================================
   Footer Navigation
========================================================= */

.footerNavi{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footerNavi .list{
  position: relative;
  margin-right: var(--space-30);
  padding: var(--space-10);
}

.footerNavi .list a{
  color: var(--color-fff);
  text-decoration: none;
  transition: opacity .25s ease;
}

.footerNavi .list a:hover{
  opacity: .75;
}

.footerNavi .list span:before{
  display: block;
  content:"";
  width: 10px;
     height: 2px;
    background: rgba(255, 255, 255, .85);
    position: absolute;
    top: 16px;
    left: -10px;
}


/* =========================================================
   Right / Left Columns
========================================================= */

.footerNaviInnerR{
  width: 60%;
  display: flex;
  justify-content: flex-start;
}

.footerNaviInnerL{
  width: 40%;
  border-left: 1px solid rgba(255,255,255,.35);
  padding-left: var(--space-20);
}

.footerNaviInnerL .list{
  color: var(--color-fff);
}

/* =========================================================
   Icons
========================================================= */

.bcp_icon{
  width: 45px;
  margin: 0 15px;
}
.bcp_icon img{
  width: 100%;
  display: block;
}

.sdgs_icon{
  width: 65px;
  margin: 0 15px;
}
.sdgs_icon img{
  width: 100%;
  display: block;
}

/* =========================================================
   Footer Flex Area
========================================================= */

.foot_flex_outer{
  display: flex;
  align-items: baseline;
  max-width: 1200px;
  margin: 0 auto;
}

.foot_flex_inner_left{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.snsIconsContainer{
  display: flex;
  justify-content: end;
  align-items: center;
  margin-left: auto;
}

.snsIconsContainer i{
  font-size: var(--font-size-h1);
  margin-right: var(--space-10);
  transition: opacity .25s ease;
}

.snsIconsContainer i:hover{
  opacity: .75;
}

/* =========================================================
   Footer Bottom
========================================================= */

.footerBottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.35);
  margin-top: 50px;
  padding-top: var(--space-20);
  font-size: 10px;
}

.footerBottom a{
  color: var(--color-fff);
  border-left: 1px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: opacity .25s ease;
}

.footerBottom a:hover{
  opacity: .75;
}

.footerBottom span{
  padding-left: var(--space-10);
  padding-right: var(--space-10);
}

/* ========================================================== */
/* ==================  Tablet 1025px  ======================== */
/* ========================================================== */
@media screen and (max-width:1025px){

  footer{
    padding: calc(var(--space-50)*1) calc(var(--space-50)*1);
    font-size: 12px;
  }

  .footerNavi{
    display: block;
  }

  .footerNaviInnerR{
    width: 100%;
    justify-content: space-around;
    max-width: 800px;
  }

  .footerNaviInnerL{
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.35);
  }

  .footerNavi .list{
    margin-right: 0;
    padding: 10px 0;
    line-height: 1.5;
  }

  .footerBottom{
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }

  .footerBottom a{
    border-left: none;
  }

  .footerBottom span{
    padding: 0;
  }

  .privacy{
    display: flex;
    flex-direction: column;
  }

  .privacy a{
    padding: 10px 0;
  }

  .copy{
    padding-top: 20px;
    line-height: 1.5;
  }

  .snsIconsContainer{
    margin-left: 0;
  }

  .foot_flex_outer{
    align-items: end;
  }
}

/* ========================================================== */
/* ==================  Smartphone 600px  ===================== */
/* ========================================================== */
@media screen and (max-width:600px){

  .footerNaviInnerR{
    display: block;
    line-height: 1.5;
  }

}
