.footer-wrapper {
	padding: 20px;
	display: flex;
	background: var(--color-dark-blue);
	@media (max-width: 1279px) {
		padding: 40px;
	}
}

.footer-flex {
	display: flex;
	@media (max-width: 1279px) {
		justify-content: center;
	}
}

.footer-meta {
	margin-inline: 20px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	@media (max-width: 1279px) {
		padding: 0;
		text-align: center;
	}
}

.footer-logo {
	max-width: 180px;
}

.footer-sns {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.footer-sns a {
	transition: .3s;
}

.footer-sns a:hover {
	transform: scale(1.3);
}

footer address {
	font-size: 0.8125rem;
	color: #fff;
}

.footer-sns img {
	width: 22px;
	height: 22px;
}

.footer-nav {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
/* 	grid-template-columns: 1fr 1fr 1fr 1fr; */
	@media (max-width: 1279px) {
		display: none;
	}
}

.footer-nav-list {
	padding: 12px 16px;
	border-left: 1px solid #3B66A5;
}

.footer-nav-list:last-child {
	border-right: 1px solid #3B66A5;
}

.footer-nav-item {
	margin-bottom: 13px;
	padding-left: 13px;
	position: relative;
	font-size: var(--font-s-text);
	font-weight: 600;
	color: #fff;
}

.footer-nav-item::before,
.footer-nav-item::after,
.footer-nav-sub li::before,
.footer-nav-sub li::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 7px;
	height: 1px;
	border-radius: 9999px;
	background-color: #fff;
	transform-origin: calc(100% - .5px) 50%;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-nav-item::before,
.footer-nav-sub li::before {
	transform: rotate(42deg);
}

.footer-nav-item::after,
.footer-nav-sub li::after {
	transform: rotate(-42deg);
}

.footer-nav-sub {
	margin-left: 13px;
	font-size: var(--font-s-text);
	color: #fff;
}

.footer-nav-sub li {
	margin-bottom: 5px;
	padding-left: 13px;
	position: relative;
}

.footer-contact {
	margin-inline: auto;
/* 	margin-inline: auto 4px; */
	text-align: center;
	@media (max-width: 1279px) {
		display: none;
	}
}

.footer-contact-call {
	margin-block: 16px 24px;
	display: block;
	position: relative;
	font-size: var(--font-s-text);
	font-weight: 600;
	line-height: 1.765;
	color: #fff;
}

.footer-contact-call::before,
.footer-contact-call::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 3px;              /* 線の太さ */
  height: 32px;            /* 線の長さ */
  background: currentColor;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.footer-contact-call::before{
  left: -8px;              /* 左端からの距離 */
  transform: rotate(-30deg); /* ＼ */
}

/* 右端：右上→左下（／） */
.footer-contact-call::after{
  right: -8px;             /* 右端からの距離 */
  transform: rotate(30deg);  /* ／ */
}

.footer-contact .btn {
	height: 60px;
	font-size: var(--font-s-text);
	background: var(--color-secondary);
}

.footer-contact .btn:hover {
	background: var(--color-hovered-secondary);
}

.copyright {
	padding-block: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-black);
	@media (max-width: 767px) {
		padding-bottom: 100px;
	}
}

.copyright small {
	font-size: 0.8125rem;
	color: #fff;
}