@charset "UTF-8";
/* CSS Document */


.footer_too_logo {
	width: 88px;
}

/* 会社概要フッターリンク */
.footer_link_wrap {
	padding: 64px 0;
	background-color: #efecea;
}
.footer_link {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 4px calc(4%);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;

}
.footer_link_wrap a {
	color: #222;
	text-decoration: none;
	padding: 24px;
	border: solid 2px rgba(255,255,255,0.7);
	border-radius: 8px;	
	display: grid;
	row-gap: 24px;
	grid-template-rows: subgrid;
	grid-row: span 2;
	transition: 0.5s;
}
.footer_link_wrap a:hover {
	background: rgba(255,255,255,0.40);
}
.footer_link_wrap a .footer_link_desc {
	color: var(--fill_brown);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 300;
}
.footer_link_wrap a .footer_link_text {
	font-size: 24px;
	line-height: 1.1;
}




/* フッター */

footer {
	background-color: white;
	padding-top: 48px;
	padding-bottom: 16px;
}
.global_footer_wrap .material-symbols-outlined {
	transform: scale(0.9);
	margin-top: -3px;
}


.global_footer_wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	font-size: 15px;
}
.global_footer_left {
	text-align: center;
	margin-top: 24px
}
.global_footer_right { grid-area: 1 / 1 / 2 / 2; }
.global_footer_left { grid-area: 2 / 1 / 3 / 2; }

.global_footer_wrap .footer_main_wrap .too_link {
	justify-content: space-between;;
}
.global_footer_right {
	display: block; 
	width: 100%;
		
}
.global_footer_right .footer_main_wrap {
	display: block;
	width: 100%;
}

@media (min-width: 576px) {
	.global_footer_wrap {
		grid-template-columns: 10% auto;
		gap: 16px 24px;
	}
	.global_footer_left {
		text-align: left;
		margin-top: 0
	}
	
	.global_footer_left { grid-area: 1 / 1 / 2 / 2; }
	.global_footer_right { grid-area: 1 / 2 / 2 / 3; }
	.en_link { grid-area: 2 / 2 / 3 / 3; }
	
	.global_footer_right {
		display: flex;
		column-gap: 24px;
		margin-top: 6px;
	}
	.global_footer_right .footer_home_wrap {
		width: 10%;
		min-width: 80px
	}
	
	.global_footer_right .footer_main_wrap {
		width: calc( 90% - 24px);
	}
	.global_footer_wrap .too_link {
		justify-content: flex-start;
	}
	.global_footer_right .footer_main_wrap{
		display: grid;
		grid-template-columns: repeat( auto-fit, minmax(200px, 1fr));
		gap: 0;
	}

	
	
	
	
	
}
.global_footer_wrap a {
	color: black;
	line-height: 1.2;
	text-decoration: none;
}
@media (max-width: 575px) {
	footer .container {
		padding-left:  0;
		padding-right: 0;
	}
	.global_footer_inner li a {
		padding: 16px;
		width: 100%;
		border-top: solid 1px #DDD;
	}
}


@media (min-width: 576px) {
	.global_footer_right > div{
		gap: 16px 24px;
	}
}

.global_footer_wrap ul, .global_footer_wrap li  {
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 576px) {
	 .footer_main_wrap ul {
		padding-left: 16px;
		border-left: solid 1px  #DDD;
		margin-bottom: 8px;
	}	
}

.global_footer_inner li{
	text-align: left;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}
@media screen and  (min-width: 576px) {
	.global_footer_inner li {
		margin-bottom: 14px;

	}
}
	.global_footer_inner ul li a {
	text-decoration: none;
	font-size: 14px;
}
.global_footer_other_link {
	text-align: left;
	display: block;
}

.global_footer_other_link li {
	border: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
}
.global_footer_other_link a {
	text-decoration: none;
	font-size: 13px;
	display: flex;
	align-items: center;
	column-gap: 4px;
	padding: 4px 0;
}
.global_footer_other_link a span {
	transform: scale(0.8);
	color: #666;
	font-weight: 300;
}


#copyright {
	margin-top: 24px;
	font-size: 12px;
	color: #888;
	font-weight: 300;
	margin-bottom: 0;
	
	text-align: center;
}
@media screen and  (min-width: 576px) {
	#copyright {
		text-align: left;
	}
}

.en_link {
	margin-left: 16px;
	margin-top: 36px;
	color: #666;
	line-height: 1;
	font-size: 12px;
	display: flex;
	align-items: center;
	column-gap: 6px;
	justify-content: center;
}
@media screen and  (min-width: 576px) {
	.en_link {
		margin-left: 0;
		justify-content: flex-start;
	}
}
.en_link .lang {
	font-size: 12px;
	padding: 3px 6px;
	border-radius: 4px;
	background-color: #E9E9E9;
}


