@charset "UTF-8";

body {
	background: #fff000;
	background-size: auto;
	background-repeat: repeat;
    font-family: "Noto Sans JP",sans-serif;
}
footer {
    background: #383838;
    padding: 50px;
    display: flex;
    justify-content: center;
}
.footer_link {
  display: flex;
  justify-content: center;
}
.footer_link a {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  margin: 0 20px;
}
.footer_link a i {
  color: #fff;
  font-size: 3.5rem;
}
.footer_link li:first-child {
  margin-right: 40px;
}
.pc_disp {
	display: block;
}
.sp_disp {
	display: none;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width:480px){
body {
	/*background: url(../img/bg.jpg);*/
  background: #fff000;
	background-size: auto;
	background-repeat: repeat;
    font-family: "Noto Sans JP",sans-serif;
}
footer {
    background: #383838;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
}
.footer_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_link a {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  display: block;
  margin: 0 20px;
  text-align: center;
}
.footer_link a i {
  color: #fff;
  font-size: 2.5rem;
}
.footer_link li:first-child {
  margin-right: 0;
  width: 100%;
  margin-bottom: 20px;
}
.pc_disp {
	display: none;
}
.sp_disp {
	display: block;
}
}