@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 40px 0 0px 0;
	background-color: #FFF;
	color: #666;
	font-size: 14px;
	position: relative;
	z-index: 1;
}

.footer-container {
	/*SNSを使用する時*/
	/*display: grid;*/

	/*gap: 50px;*/
	
	/*SNSを使用しない時*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
} 

@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: 15px;
	}

	.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;*/
	}
}


/* フッター：テキストメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: var(--accent-color2);
}

@media screen and (max-width: 767px) {

	.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;
	}

}
/*フッター：会社情報*/
.footer-company{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 30px;	/*エリアがない場合に使用*/
	padding-top: 10px;
}

.footer-company img{
	padding: 10px 0 10px 60px;
}
.footer-company p{
	line-height: 1.2;
}
/* フッターTEL全体 */
.footer-tel {
	display: flex;
	align-items: center;
	gap: 3px; /* アイコンと番号の間隔 */
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
		"Hiragino Sans", Meiryo, sans-serif;
}

/* アイコン */
.footer-tel_ico {
	display: inline-flex;
	width: 20px;
	height: 23px;
	fill: var(--main-color); /* ← アイコン専用の色指定！ */
}

.footer-tel_ico img {
	width: 100%;
	height: auto;
}

/* アイコン（フリーダイヤル） */
.footer-freetel_ico {
	display: inline-block;
	width: 30px;
	height: 15px;
	vertical-align: sub;
}

.footer-freetel_ico img {
	width: 100%;
	height: auto;
}

/* 電話番号 */
.footer-tel_num {
	font-size: 25px;
	font-weight: bold;
	text-decoration: none;
	color: inherit;
}

/* フッターメニュー */
ul.footer-menu li a{
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	font-weight:400;
}
ul.footer-menu li::after{
	content: "　/";
}
ul.footer-menu li:last-child::after{
	content: none;
}
@media (max-width: 767px) {
	ul.footer-menu li::after{
		content: none;
	}
}


/*コピーライト*/

.footer-copy {
	display:flex;
	justify-content: center;
	background-color: var(--accent-color2);
	align-items: center;
	height:30px;
	/* border-top: 4px solid var(--accent-color1); */
}
.footer-copy p {
	/*color: #666;*/
	color: #fff;    
	font-size: 11px;
}
/* フッター */
.footer-details{
	font-size: 13px;
	padding-bottom: 10px;
}
