
/* footer
/* ------------------------------------------------------------------------ */
/* ========================================
   Link Footer Section
   ======================================== */
.link-footer {
	background-color: #231c5e;
	padding: 2rem 1.5rem;
}
.link-container-row {
	padding-bottom: 40px;
	border-bottom: 1px solid #adb5bd;
}
.link-footer h4 {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #f1f1f1;
}
.link-footer a {
	color: #cccfd2;
	display: block;
	margin-bottom: 8px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.link-footer a:hover {
	color: #107caa;
}
.link-footer .accordion-trigger {
	cursor: pointer;
	user-select: none;
}
.link-footer .accordion-trigger i {
	transition: transform 0.3s ease;
	font-size: 1.2rem;
}

/* デスクトップではアイコンを非表示 */
@media (min-width: 768px) {
	.link-footer .accordion-trigger {
		cursor: default;
	}
}

/* モバイルでのアコーディオンスタイル */
@media (max-width: 767.98px) {
	.link-container-row {
		border-bottom: none;
	}
	.link-footer .col-12 {
		margin-inline-start: 0;
		margin-inline-end: 0;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 0;
		border-bottom: 1px solid #dee2e6;
	}
	/* .link-footer .col-12:last-child {
		border-bottom: none;
	} */
	.link-footer h4 {
		margin-bottom: 0;
		padding: 24px 0;
	}
	.link-footer .links-wrapper {
		text-align: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.link-footer .accordion-trigger[aria-expanded="true"] i {
		transform: rotate(180deg);
	}
}

/* ========================================
   Main Footer Section
   ======================================== */
.main-footer {
	background-color: #231c5e;
	color: #cccfd2;
	padding: 50px 0;
}
.main-container-row {
	line-height: 25px;
}
.main-footer .footer_logo img {
	max-width: 220px;
	height: auto;
	margin-bottom: 24px;
}
.main-footer p {
	margin-bottom: 10px;
	line-height: 1.6;
	color: #cccfd2;
}
.main-footer .footer-address {
	margin-right: 25px;
}
.main-footer h4 {
	color: #f1f1f1;
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-weight: bold;
}

/* Footer Links */
.main-footer .footer-links ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.main-footer .footer-links li {
	margin-bottom: 10px;
}
.main-footer .footer-links a {
	color: #cccfd2;
	text-decoration: none;
	transition: color 0.3s ease;
	padding: 0;
}
.main-footer .footer-links a:hover {
	color: #ffffff;
}

/* Info List */
.main-footer .info-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.main-footer .info-list li {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}
.main-footer .info-list i {
	margin-right: 10px;
	font-size: 1.2rem;
	width: 20px;
	text-align: center;
	color: #ffffff;
	flex-shrink: 0;
	margin-top: 2px;
}
.main-footer .info-list a,
.main-footer .info-list i {
	color: #cccfd2;
	text-decoration: none;
	transition: color 0.3s ease;
}
.main-footer .info-list a:hover {
	color: #ffffff;
}

/* Navigation */
.main-footer .nav {
	display: flex;
	flex-direction: column;
}
.main-footer .nav .menu-item {
	padding: 0;
}
.main-footer .nav .nav-link {
	padding: 0;
	color: #cccfd2;
	margin-bottom: 10px;
}
.main-footer .nav .nav-link:hover {
	color: #ffffff;
}

/* Social Icons */
.social_icons {
	margin-top: 15px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.social-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 2px solid #adb5bd;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.6rem;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.social-icon-circle:hover {
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

/* ========================================
   Copyright Footer Section
   ======================================== */
.copyright-footer {
	background-color: #170e55;
	color: #adb5bd;
	padding: 20px 0;
	font-size: 0.8rem;
	text-align: center;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

/* タブレット */
@media (max-width: 992px) {
	.main-footer .footer_logo img {
		max-width: 154px;
	}
}
/* モバイル */
@media (max-width: 767.98px) {
	.main-footer {
		padding: 30px 15px;
	}
	.main-footer .col-12 {
		margin-bottom: 30px;
	}
	.main-footer .row > div:last-child {
		margin-bottom: 0 !important;
	}
	.main-footer .info-list li {
		justify-content: flex-start;
	}
	.social_icons {
		justify-content: flex-start;
	}
}