@charset "UTF-8";

/**
 * オリジナルcss
 */

#footer {
	margin-top: 0;
	margin-top: 160px;

}

/* footer contact */

.footer_contact {
	margin: 120px auto;
	position: relative;
}

a.contact_button {
	span::before {
		background-image: url(../images/footer/footer_contact_mail.svg);
	}
}

a.partner_button {
	span::before {
		background-image: url(../images/top/partner_icon.svg);
	}
}

/* footer menu */

.footer_info {
	padding: 80px 0;
	background-color: var(--c3);
}

.footer_info_company_name {
	display: flex;
	gap: 60px;
	align-items: center;

	.footer_info_company_name_text {
		font-size: 1.4rem;
	}
}

.footer_info_menu_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 60px 0;
	gap: 24px;
}

.footer_menu_menu {
	/* width: 65%; */
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 24px 64px;

	.footer_menu_menu_link {
		height: auto;
	}

	.footer_menu_menu_link a {
		font-size: 1.6rem;
		text-decoration: none;
		display: block;
	}
}

.footer_info_company {


	ul {
		font-size: 1.6rem;
		padding-left: 0;
		margin: 0;
		list-style-type: none;
	}

	li {
		display: flex;
		align-items: flex-start;
		gap: 32px;
	}

	li+li {
		margin-top: 32px;
	}


	li .en {
		display: block;
		font-family: var(--en);
		font-size: 2.8rem;
	}

	li .small {
		display: block;
		font-family: var(--go);
		font-size: 1.6rem;
	}


	li::before {
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		content: '';
		width: 40px;
		aspect-ratio: 1;
	}

	li:nth-of-type(1)::before {
		background-image: url(../images/footer/footer_tel_icon.svg);
	}

	li:nth-of-type(2)::before {
		background-image: url(../images/footer/footer_mail_icon.svg);
	}


}

.footer_info_map {
	max-width: 514px;
	aspect-ratio: 514 / 263;

	iframe {
		width: 100%;
		height: 100%;
	}
}

.footer_copyright {
	font-size: 1.2rem;
	padding: 16px;

	.footer_copyright_copyright {
		font-family: var(--en);
		text-align: center;
	}
}

.footer_sp_buttons {
	display: none;
}

@media screen and (max-width:960px) {

	.footer_info_company {
		font-size: 1.4rem;

		h2 {
			font-size: 2rem;
		}
	}

}

@media screen and (max-width:768px) {
	#footer {
		margin-top: 80px;
	}

	.footer_info {
		padding: 40px 0;
	}

	.footer_info .inner {
		padding: 0 35px;
	}

	.footer_info_company_name,
	.footer_info_menu_wrapper {
		flex-direction: column;
	}

	.footer_info_company_name {
		align-items: flex-start;
		gap: 8px;
	}

	.footer_info_company_name .footer_info_logo {
		max-width: 220px;
		margin: 0;
	}

	.footer_info_company_name .footer_info_company_name_text {
		font-size: 1.1rem;
	}

	.footer_info_menu_wrapper {
		padding: 40px 0;
		gap: 40px;
	}

	.footer_menu_menu {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-auto-flow: row;
		gap: 24px;
		padding: 0;

		.footer_menu_menu_link:nth-of-type(8) {
			grid-row: auto;
		}

		.footer_menu_menu_link a {
			font-size: 1.4rem;
		}
	}

	.footer_info_company_wrapper {
		flex-direction: column;
		gap: 24px;
		padding: 40px 0 0;
		margin-bottom: 0;
	}

	.footer_info_company {
		width: 100%;

		li {
			gap: 24px;
			line-height: 1.5;
		}

		li+li {
			margin-top: 16px;
		}

		li::before {
			width: 28px;
		}

		li .en {
			font-size: 2rem;
		}

		li .small {
			font-size: 1.4rem;
		}
	}


	.footer_info_map {
		margin: 0 auto;
		aspect-ratio: 320 / 164;
	}


	.footer_copyright {
		padding-bottom: 56px;

		.inner {
			flex-direction: column;
			gap: 8px;
			padding: 0;
		}

		a {
			font-size: 1.2rem;
		}

		.footer_copyright_copyright {
			font-size: 1rem;
		}
	}

	.footer_sp_buttons {
		position: fixed;
		width: 100%;
		height: 48px;
		left: 0;
		bottom: 0;
		display: flex;
		/* flex-wrap: wrap; */
		gap: 4px;
		padding: 4px 4px;
		margin-top: 0;
		z-index: 100;
	}

	.footer_sp_button {
		width: 50%;
		position: relative;
	}

	.footer_sp_button a {
		color: #fff;
		text-decoration: none;
		width: 100%;
		height: 100%;
		transition: .3s;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.3em;
		border-radius: 16px;

		img {
			width: 1.8em;
			aspect-ratio: 1;
			object-fit: contain;
		}

		span {
			font-size: 1.3rem;
			font-weight: 500;
		}
	}

	.footer_sp_button:first-child a {
		background: #CAB774;
	}

	.footer_sp_button:last-child a {
		background: var(--c1);
		/* color: var(--c1); */
	}
}

@media screen and (max-width:639px) {}

@media screen and (max-width:500px) {}