@charset "UTF-8";

/*------------menu------------*/
#include_footer_menu footer{
  background-color: #000;
  padding: 50px 18px;
}
#include_footer_menu .footer_menu_inner{
  max-width: 640px;
  box-sizing: border-box;
  margin: 0 auto;
  font-size: 14px;
}
#include_footer_menu ul{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 3.1rem;
}
#include_footer_menu ul li{
  list-style: none;
}
#include_footer_menu ul li a{
  position: relative;
  text-decoration: none;
  padding-right: 24px;
  color: #fff;
}
#include_footer_menu ul li a:hover{
  text-decoration: underline;
}
#include_footer_menu ul li a:after{
  position: absolute;
  content: "";
  background-image: url("/prime/assets/images/icon_outlink-white.png");
  background-size: 100% 100%;
  width: 18px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
#include_footer_menu .footer_copyright{
  font-size: 16px;
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
/*black*/
#include_footer_menu.color_black ul li a,
#include_footer_menu.color_black .footer_copyright{
  color: #000;
}
#include_footer_menu.color_black ul li a:after{
  background-image: url("/prime/assets/images/icon_outlink-black.png");
}
@media screen and (max-width: 768px){
  #include_footer_menu footer{
    padding: 6.5104vw 5.2015vw;
  }
}
@media screen and (max-width: 450px){
  #include_footer_menu .footer_menu_inner{
    font-size: 11px;
  }
  #include_footer_menu ul li a{
    padding-right: 18px;
  }
  #include_footer_menu ul li a:after{
    width: 12px;
    height: 8px;
  }
  #include_footer_menu .footer_copyright{
    font-size: 13px;
    margin-top: 30px;
  }
}
/*------------banner------------*/
#include_footer_banner{
  background-color: #000;
}
#include_footer_banner .footer_bnr{
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (min-width: 769px){
  #include_footer_banner{
    padding: 50px 20px 0;
  }
}
@media screen and (max-width: 768px){
  #include_footer_banner{
    padding: 6.5104vw 5.2015vw 0;
  }
}
/*------------個別ページ調整------------*/
/*top*/
#include_footer_menu.prime_top footer{
  background-color: #222;
  padding-top: 40px;
}
.page-docomo-lp #include_footer_menu.prime_top footer{
  margin-top: 0;
}
@media screen and (max-width: 768px){
  #include_footer_menu.prime_top footer{
    padding-top: 30px;
  }
}