@charset "UTF-8";

/* PC表示設定 */
@media screen and (min-width: 768px) {

/* コンテンツここから */


/* マイページ専用フッター */

#mypage_footer {
  width: 100%;
  background-color: #fff;
  padding: 25px;
}

#mypage_footer .mypage_footer_sub {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 800px;
  margin: auto;
}

#mypage_footer .mypage_footer_sub li {
  width: 140px;
  border-bottom: 1px solid #EAE5E3;
  padding-bottom: 15px;
}

#mypage_footer .mypage_footer_sub li a {
  font-size: 12px;
  letter-spacing: 0.96px;
  position: relative;
  display: block;
}
#mypage_footer .mypage_footer_sub li a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0 , -50%);
  background-image: url(../img/footer/mypage_icon_link.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}



/* 共通フッター */

footer {
  width: 100%;
  background: linear-gradient(180deg, #F5F5F5 0%, #FFF 100%);
  padding-bottom: 40px;
}

footer .footer_menu_market {
  margin: 0 auto 40px;
  padding-top: 30px;
  width: 90%;
  max-width: 800px;
  display: flex;
  align-items: flex-start;
}

footer .footer_menu_market .footer_menu_main {
  width: 50%;
  border-top: 1px solid #EAE5E3;
  margin-right: 50px;
}

footer .footer_menu_market .footer_menu_main li {
  border-bottom: 1px solid #EAE5E3;
  padding: 16px 0;
}

footer .footer_menu_market .footer_menu_main li a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  margin-left: 30px;
}

footer .footer_menu_market .footer_menu_main li:nth-child(1) {
  background-image: url(../img/header/icon_mypage.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
footer .footer_menu_market .footer_menu_main li:nth-child(2) {
  background-image: url(../img/header/icon_mine3d.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
footer .footer_menu_market .footer_menu_main li:nth-child(3) {
  background-image: url(../img/header/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
footer .footer_menu_market .footer_menu_main li:nth-child(4) {
  background-image: url(../img/header/icon_reserve.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
footer .footer_menu_market .footer_menu_main li:nth-child(5) {
  background-image: url(../img/header/icon_logout.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}



footer .footer_menu_market .footer_menu_sub li {
  margin-bottom: 12px;
}

footer .footer_menu_market .footer_menu_sub li a {
  font-size: 12px;
  letter-spacing: 0.96px;
}


footer .copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.96px;
}


  /* コンテンツここまで */

}