@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 50px 0 0px 0;
	background-color: #F4F4EF;
	font-size: clamp(13px, 1.5vw, 15px);
	position: relative;
	z-index: 1;
	background-image: url(../img/bg_01.png);
	background-position: center;
	background-repeat: repeat;
	background-size: auto;
	font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", sans-serif;
}

.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;*/
	}
}


/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 15px;
	font-size: 35px;
}
/*
.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	color: #ffffff;
	clip-path: circle(50%);
}
@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}
*/
/*Instagram*/
a.instacolor{
	background: #d6249f;
	background: -webkit-linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	background: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
/*LINE*/
a.linecolor{
	background: #00b900;
}
/*facebook*/
a.facebookcolor{
	background: #3b5998;
}
.facebookcolorp{
	color: #3b5998;
}
/*X*/
.xcolorp{
	color: #000;
}

/* フッター：テキストメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: #89a26d;
}

@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: 50px;
	padding-top: 20px;
	background-image: url(../img/bg_ud.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}
.footer-company a img{
	margin-bottom: 10px;	/*ロゴ下のマージン*/
}
.footer-company p{
	line-height: 1.2;
}
/*フッターTEL*/
.footer-tel_ico{
	font-size: 25px;
	padding-right: 5px;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

	/*SVGアイコンを使う時*/
	/* display: inline-block;
	width: 35px;
	height: 20px;
	vertical-align: sub;
	margin: 0 5px 5px 5px; */
}
.footer-tel{
	font-size: 27px;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
/*telアイコン付き*/
p.footertelicon {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: clamp(25px, 2.5vw, 27px);/*通常33px*/
	font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
}
p.footertelicon::before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url(../img/telicon.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 5px;
	margin-bottom: -3px;/*調整*/
}

/* フッターメニュー */
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: "　|　";
	color: #ccc;
}
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-color3);
	align-items: center;
	height:30px;
}
.footer-copy p {
	color: #fff;
	font-size: 11px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
/* フッター */
.footer-details{
	font-size: 12px;
	padding-top: 5px;
	padding-bottom: 5px;
}

/*フッターバナー*/
.footerbnr {
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #fff;
	/*background-size: 4px 4px;
	background-image: repeating-linear-gradient(0deg, #fff100, #fff100 1px, #fff 1px, #fff);*/
}

/*対応エリア(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;
}
