@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 40px 0 0px 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
	font-family: "Zen Kaku Gothic New", serif;
}

.footer-container {
	/*SNSを使用する時*/
	/*display: grid;*/

	/*gap: 50px;*/

	/*SNSを使用しない時*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/*margin: 50px auto;*/
}

@media (min-width: 767px) {
	/*.footer-container {
		grid-template-columns: auto auto;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}*/

	.footer-container > .footer-site {
		/*margin-top: 15px;*/	/*SNSを使用するとき*/
		margin-bottom: 30px;
	}

	.footer-container > *:not(.footer-sns) {
		justify-self: start;
	}
	
	.footer-container > .footer-sns {
		grid-column: 2;
		grid-row: 1 / 4;
		justify-self: end;
		/*align-self: center;*/
	}
}
/*印刷時の為*/
@media print{
	.footer-container > .footer-site {
		margin-bottom: 30px;
	}
}
/**/
.footer-details{
	font-size: clamp(13px, 1.4vw, 16px);
	padding-top: 10px;
	padding-bottom: 5px;
}
/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 15px;
	font-size: 25px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	/*background-color: #8972b2;*/
	color: #ffffff;
	clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}

/*フッター：会社情報*/
.footer-company{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 50px;	/*エリアがない場合に使用*/
	/*padding-top: 20px;*/
}
@media screen and (max-width: 968px) {
	.footer-company{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 20px;
	}
}
.footer-company a img{
	margin-bottom: 10px;	/*ロゴ下のマージン*/
}
.footer-company p{
	line-height: 1.2;
}
/*フッターTEL*/
.footer-tel_ico{
	font-size: 27px;
	padding-right: 5px;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.footer-tel{
	font-size: 27px;
	font-weight: 400;
	font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", sans-serif;
}
/*SVGアイコンを使う時*/
.footertel_svg{
	display: inline-block;
	width: 40px;
	height: auto;
	vertical-align: sub;
	margin: 0 5px 0 5px;
}

/*対応エリア(footer)*/
.area {
	padding: clamp(15px, 7vw, 20px) 0;
	background-color: #f7f7f7;
}

h4.areaTitle {
	font-size: clamp(17px,1.4vw,18px);
	font-weight:600;
	line-height: 1.4;
	border-bottom: 2px dotted var(--main-color);
	padding: 2px;
	margin: 10px 0;
	color: var(--main-color);
}
.afooter {
	color: #aaa;
	font-size: 13px;
}
/* フッターメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-size: 15px;
}
ul.footer-menu li a{
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	font-weight:400;
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: var(--accent-color3);
}

.footer-menu li:before { 
	position: relative;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-size: 1em;
	color: var(--main-color);
}
.footer-menu li:before {
	top:3px;
	content:"\f054";/*アイコン種類*/
	margin-right: 0.3em;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.footer-menu {
		gap: 0%;
		margin-bottom: 30px;
	}
	.footer-menu li {
		/*line-height:1;*/
		display:inline-block;
		width: 100%;
		text-align: center;
	}
	.footer-menu li a{
		display:inline-block;
		/*width: 100%;*/
		/*background-color: #eee;*/
		padding: 10px 0px;
	}
	ul.footer-menu li::before{
		content: none;
	}
}

/*コピーライト*/
.footer-copy {
	display:flex;
	justify-content: center;
	background-color: #b70000;
	align-items: center;
	height: 25px;
}
.footer-copy p {
	color: #fff;
	font-size: 11px;
	font-family: sans-serif;
	/*text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);*/
}

