@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 40px 0 0px 0;
	background-color: #FFF;
	color: #666;
	font-size: 13px;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.footer-container {
	display: grid;
	gap: 20px;
	justify-items: center;
}

@media (min-width: 769px) {
	.footer-container {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}

	/*.footer-container > .footer-site {
		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-company{
	display: flex;
 	flex-direction: column;
  	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;	/*エリアがない場合に使用*/
}

.footer-company p{
	line-height: 1.2;
}
/*フッターTEL*/
.footer-tel_ico{
	font-size: 20px;
	padding-right: 5px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.footer-tel{
	font-size: 25px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}


/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 24px;
	font-size: 24px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: var(--main-color);
	color: #ffffff;
	clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}


/* フッター：テキストメニュー */
.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: 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 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: 768px) {
	ul.footer-menu li::after{
		content: none;
	}
}

.footer-copy {
	display: flex;
	justify-content: center;
	background-color: var(--accent-color2);
	align-items: center;
	height:50px;
	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;
}

/*フッターバナー*/
.footerbnr {
    padding: 30px 0 50px 0;
    background: #e7e7e7;
}

/*対応エリア(footer)*/
.area {
    padding: clamp(15px, 7vw, 20px) 0;
    background-color: #f7f7f7;
}

h4.areaTitle {
    font-size: clamp(18px,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;
}
