@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 50px 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;
	}
}
/*フッターバナー*/
.footerbnr {
	padding: var(--v-space2) 0;
	position: relative;
	z-index: 1;
	/*background-color: #efede5;
 	background-size: 4px 4px;
	background-image: repeating-linear-gradient(0deg, #e5ebf2, #e5ebf2 1px, #fff 1px, #f4f6f9);*/
	background-image: url(../img/bg_05.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.footerbnr::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #113464ba;
}

/*売りたい方へページ　フッターバナー*/
.footerbnr2 {
	padding: var(--v-space2) 0;
	position: relative;
	z-index: 1;
	/*background-color: #efede5;
 	background-size: 4px 4px;
	background-image: repeating-linear-gradient(0deg, #e5ebf2, #e5ebf2 1px, #fff 1px, #f4f6f9);*/
	background-image: url(../img/bg_05.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.footerbnr2::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ffffffba;
}





/**/
.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;*/
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 'Noto Serif JP', 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: 30px;
	font-size: clamp(15px, 1.6vw, 17px);
}
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-color1);
}
.footer-menu li::before {
	position: relative;
	content: "\27A4"; /* 太めで視認性の高い矢印 */
	margin-right: 0.5em;
	color: var(--main-color);
	font-size: 1em;
	font-weight: 900;
	display: inline-block;
	top:3px;
}
@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: #333;
	align-items: center;
	height: 25px;
	border-top: 3px solid var(--accent-color3);
}
.footer-copy p {
	color: #fff;
	font-size: 11px;
	font-family: sans-serif;
	/*text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);*/
}

