/* Footer (モバイルファースト) */
.site-footer {
	margin-top: 10vh;
	padding: 2.4rem 0 .2em;
	color: #444;
	background: color-mix(in srgb, var(--page-bg, #f8f9fb) 55%, #fff 45%);
	mix-blend-mode: multiply;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
}

/* フッターメニュー */
.footer-menu {
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	gap: .8rem 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu a { color: #444; font-size: 1.4rem; text-decoration: none; }
.footer-menu a:hover { color: #222; text-decoration: underline; }


/* SNS */
.social-list {
	display: flex;
	justify-content: center; 
	gap: .6rem;
	list-style: none;
	margin: 0;
	padding: 0;

}
.social-list li {	opacity:0.75;}
.social-list li:hover { opacity: 1;}
.social-link {
	display: flex;
	justify-content: center; /* 水平方向の中央揃え */
	align-items: center;     /* 垂直方向の中央揃え */
	padding: 0;
	width: 40px;
	height: 40px;
	color: #555;
	font-size: 1.3rem;
	text-decoration: none;
/* 	border-radius: 50%; */
	transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.social-link:link,
.social-link:visited { color: #333;}
.social-link:hover { 
	color: #222; 
	opacity:1;
}
.social-link.sns-facebook svg {
	width: 30px;
	height: 30px;
}


/* ロゴまわり */
.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	padding: 30px 30px 20px;
}
.footer-logo {
	display: inline-block;
	text-decoration: none;
}
.footer-logo img { height: 37px;}

.privacy-link {
	display: inline-block;
	margin-top: .85rem;
	font-size: 1.2rem;
	text-decoration: none;
}
.privacy-link:link,
.privacy-link:visited {color: #666;}
.privacy-link:hover { color: #222; }

/* セゾンロゴ */
.grant {
	margin: 1em 0 4em;
	color: #333;
	font-size: 1.3rem;
	text-align: center;
}
.grant img {
	margin-top: .45em;
	width: 60%;
	max-width: 220px;
	height: auto;
}

/* コピーライト */
.copyright {
	margin: 2em auto 0;
	padding: .5em .45em .4em;
/* 	color: #fff; */
	font-size: 1.2rem;
	text-align: center;
	background: color-mix(in srgb, var(--page-bg, #f8f9fb) 75%, #fff 25%);
	mix-blend-mode: multiply;
}


@media (min-width: 769px) {
  .footer-inner {
	  grid-template-columns: 1fr 1fr 1fr;
	  align-items: start;
	  direction: rtl;
	  padding: 4vh 4vw 4vh;
	}
	.footer-social { direction: ltr;}
	.footer-social .social-list {
		flex-direction: column;
		gap: 0rem;
		padding-left: 30px;
		text-align: left;
	}
	.social-link { justify-content: flex-start;}
	.social-link svg {
		flex-direction: row;
		min-width: 44px;
	}
	.social-link:after { margin-left: .5em;}
	.social-link.sns-x:after { content: "X（旧Twitter）"; display: block; white-space: nowrap;}
	.social-link.sns-instagram:after { content: "instagram"; display: block; white-space: nowrap;}
	.social-link.sns-note:after { content: "note"; display: block; white-space: nowrap;}
	.social-link.sns-facebook:after { content: "facebook"; display: block; white-space: nowrap;}
	.footer-nav { direction: ltr;}
	.footer-nav .footer-menu {flex-direction: column;}
	.footer-nav .footer-menu a:before {
		content: '';
  display: inline-block;
  margin-right: .5em;
  width: .65em;
  height: .65em;
  background: var(--page-bg, #f8f9fb);
  background-image: url(../images/headline-ron2.svg);
  background-repeat: no-repeat;
  background-size: 93%,auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
	}
	.footer-brand { align-items: end; padding:0 30px 30px;}
	.footer-logo {text-align: left;}
  .footer-logo img { height: 42px; }
  .copyright {direction: ltr;}
}

@media (min-width: 1440px) {
  .footer-inner { gap: 2.4rem; }
}


