@charset "UTF-8";
/* ---------------------------------------
  site_footer
-----------------------------------------*/
.site_footer{
  margin-top: 10rem;
}

/* ---------------------------------------
  footer_bnr
-----------------------------------------*/
.footer_bnr{
  padding: 4rem 0;
}
.footer_bnr_list{
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.footer_bnr_list li{
  width: 28rem;
}
.footer_bnr_list a{
  display: block;
  transition: opacity 0.2s;
}
.footer_bnr_list a:hover{
  opacity: 0.8;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_bnr{
    padding: 3rem 0;
  }
  .footer_bnr_list{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .footer_bnr_list li{
    width: 100%;
    max-width: 32rem;
  }
}

/* ---------------------------------------
  footer_main
-----------------------------------------*/
.footer_main{
  background: var(--color-main);
  color: #fff;
  padding: 3rem 0 0;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_main{
    padding: 3rem 0 0;
  }
}

/* ---------------------------------------
  footer_head
-----------------------------------------*/
.footer_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer_logo img{
  display: block;
  width: 32rem;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_head{
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .footer_logo img{
    width: min(32rem, 80vw);
    margin: 0 auto;
  }
}

/* ---------------------------------------
  footer_nav
-----------------------------------------*/
.footer_nav{
  display: flex;
  gap: 2.4rem;
}
.footer_nav a{
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.footer_nav a:hover{
  opacity: 0.7;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_nav{
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 1.6rem;
  }
}

/* ---------------------------------------
  footer_service
-----------------------------------------*/
.footer_service{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.footer_service a{
  display: block;
  padding: 0.6rem 1.4rem;
  border-radius: 0.6rem;
  background: #fff;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 600;
  transition: background-color 0.2s;
}
.footer_service a:hover{
  background: var(--color-main-light);
}
@media screen and (max-width: 700px) { /* SP */
  .footer_service{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }
  .footer_service li{
    width: auto;
  }
  .footer_service a{
    width: 100%;
    padding: 1.4rem 0;
    text-align: center;
    font-size: 1.4rem;
  }
}

/* ---------------------------------------
  footer_bottom
-----------------------------------------*/
.footer_bottom{
  margin-top: 3rem;
  padding: 0 0 4rem;
}
.footer_bottom_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_bottom{
    margin-top: 3rem;
    padding: 2rem 0 3rem;
  }
  .footer_bottom_inner{
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ---------------------------------------
  footer_policy, footer_copy
-----------------------------------------*/
.footer_policy a{
  font-size: 1.3rem;
  color: #fff;
}
.footer_copy{
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 700px) { /* SP */
  .footer_policy,
  .footer_copy{
    text-align: center;
  }
  .footer_policy a,
  .footer_copy{
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
