.footer {
	padding: calc(10.2rem * var(--scale)) calc(9rem * var(--scale)) calc(4rem * var(--scale));
}
.footer_box {
	display: flex;
	align-items: flex-start;
	gap: calc(10rem * var(--scale));
}
.footer_left {
	width: calc(26rem * var(--scale));
}
.footer_logo {
	width: calc(22rem * var(--scale));
}
.footer_left_text {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: calc(2rem * var(--scale));
	color: #fff;
	line-height: 1;
	margin-top: calc(1.5rem * var(--scale));
	margin-left: calc(1.4rem * var(--scale));
	margin-bottom: calc(3.1rem * var(--scale));
}
.footer_visit_btn {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
	width: 100%;
	height: 6rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(119deg,rgba(245, 177, 92, 1) 0%, rgba(255, 146, 13, 1) 100%);
}
.footer_line_btn {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
	width: 100%;
	height: 6rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.575rem;
	background: linear-gradient(119deg,rgba(82, 212, 133, 1) 0%, rgba(0, 185, 0, 1) 100%);
	margin-top: 1rem;
}
.footer_line_btn:before {
	content: "";
	width: 2.812rem;
	height: 2.7rem;
	background-image: url(../img/line-icon-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.footer_right {
	flex: 1;
}
.footer_right_top {
	display: flex;
	    gap: calc(3rem * var(--scale));
}
.footer_menu_title {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}
.footer_list {
	margin-top: 2.7rem;
}
.footer_list_item + .footer_list_item {
	margin-top: 1.8rem;
}
.footer_list_item_link {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}
.footer_right_bottom {
	margin-top: 11rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_sns {
	display: flex;
	gap: 3.5rem;
}
.footer_sns_item {
	width: 3.4rem;
	transition: .3s;
}
.footer_sns_item:hover {
	opacity: 0.5;
}
.footer_main_link {
	width: 26rem;
	background-color: #fff;
	padding: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: .3s;
}
.footer_main_link:hover {
	background-color: #0C6170;
}
.footer_main_link:after {
	content: "";
	width: 1.3rem;
	height: 1.4rem;
	background-image: url(../img/blank-blue.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.footer_main_link:hover:after {
	background-image: url(../img/blank-white.svg);
}
.footer_main_link_text_en {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	color: #0C6170;
	line-height: 1;
}
.footer_main_link_text_ja {
	font-weight: 500;
	font-size: 1.2rem;
	color: #0C6170;
	letter-spacing: -0.02em;
	margin-top: .7rem;
}
.footer_main_link:hover .footer_main_link_text_en {
	color: #fff;
}
.footer_main_link:hover .footer_main_link_text_ja {
	color: #fff;
}
.copyright {
	text-align: center;
	margin-top: 4.1rem;
}
.copyright_text {
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	color: #fff;
	letter-spacing: 0.05em;
}
@media (max-width:768px) {
	.footer {
		padding: 4rem 2.4rem 8rem;
	}
	.footer_box {
		flex-direction: column;
		gap: 0;
	}
	.footer_left {
		width: 16rem;
		margin: auto;
		order: 1;
	}
	.footer_logo {
		width: 100%;
	}
	.footer_left_text {
		font-size: 1.4rem;
		margin-top: 1.5rem;
		margin-left: 1.1rem;
		margin-bottom: 0;
	}
	.footer_visit_btn {
		display: none;
	}
	.footer_line_btn {
		display: none;
	}
	.footer_right {
		flex: auto;
		display: contents;
	}
	.footer_right_top {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5rem 3.7rem;
		order: 3;
	}
	.footer_right_bottom {
		display: contents;
	}
	.footer_sns {
		order: 2;
		margin: 4rem auto 5rem;
		justify-content: center;
		gap: 1.3rem;
	}
	.footer_sns_item {
		width: 2.5rem;
	}
	.footer_main_link {
		order: 4;
		margin-top: 5rem;
	}
	.copyright {
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 0 2.4rem;
		margin-top: 11rem;
	}
}