@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 20px 0 0 0;
	background-color: #fff;
	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;
	margin: 30px auto 40px 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: 35px;*/
	}
	.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: 30px;
	font-size: clamp(14px, 1.5vw, 15px);
}
.footer-menu li {
	position: relative;
	padding-left: 12px; /* アイコン分の余白 */
}
.footer-menu li a {
	line-height: 1;
	display: inline-block;
	white-space: nowrap;
	font-weight: 400;
}
.footer-menu li a:hover {
	display: inline-block;
	text-decoration: underline;
	color: var(--sub-color2);
}
/* li の先頭に矢印を表示 */
.footer-menu li::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border: 1px solid #a89885;
	border-width: 1px 1px 0 0; /* 右上だけ線を残す */
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

/*スマホ（767px以下）*/
@media screen and (max-width: 767px) {
	.footer-menu {
		gap: 0;
		margin-bottom: 30px;
	}
	.footer-menu li {
		display: inline-block;
		width: 100%;
		text-align: center;
		padding-left: 0; /* スマホでは左アイコン分の余白不要 */
	}
	.footer-menu li a {
		display: inline-block;
		padding: 10px 0;
	}
	/* スマホでは矢印を非表示 */
	.footer-menu li::before {
		content: none;
	}
}

/*フッター：会社情報*/
.footer-company{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 30px;
	/*padding-bottom: 60px;*/	/*エリアがない場合に使用*/
	/*background-image: url(../img/bg_footer.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;*/
}
/*
@media (max-width: 568px) {
	.footer-company{
		background-position: center bottom;
		background-size: 300%;
	}
}
*/
.footer-company p{
	line-height: 1.2;
}
/*フッターロゴ*/
img.logo-f{
	width: 300px;
	margin-bottom: 20px;	/*ロゴ下のマージン*/
}
@media (max-width: 568px) {
	img.logo-f{
		width: 270px;
	}
}
/*コピーライト*/
.footer-copy {
	display:flex;
	justify-content: center;
	background-color: #174d84;
	align-items: center;
	height:27px;
	border-top: 3px solid var(--accent-color1);
}
.footer-copy p {
	color: #fff;
	font-size: 11px;
}
.footer-details{
	font-size: 13px;
	padding-bottom: 10px;
}

/* フッターTEL全体 */
.footer-tel {
	display: flex;
	align-items: center;
	gap: 5px; /* アイコンと番号の間隔 */
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	margin-bottom: 5px;
}
/* アイコン */
.footer-tel_ico {
	display: inline-flex;
	width: 28px;
	height: 28px;
}
.footer-tel_ico img {
	width: 100%;
	height: auto;
}

/* 電話番号 */
.footer-tel_num {
	font-size: 27px;
	line-height: 1;
	font-weight: 400;
	text-decoration: none;
	color: #6c5f4d;
}

/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 24px;
	font-size: 24px;
}
.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
}
@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}
/*フッターバナー*/
.footerbnr {
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #f4faff;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #f0e8e0, #f0e8e0 1px, #fff 1px, #fff);
}
/*対応エリア(footer)*/
.area {
	padding: clamp(15px, 7vw, 20px) 0;
	/*padding: 0 0 clamp(15px, 7vw, 20px) 0;*/
	background-color: #eee8e0;
}

h4.areaTitle {
	font-size: clamp(17px,1.4vw,18px);
	font-weight:600;
	line-height: 1.4;
	border-bottom: 1px dotted #666;
	padding: 2px;
	margin: 0 0 7px 0;
	color: #666;
}
.afooter {
	color: #6c6c6c;
	font-size: 13px;
	text-align: justify;
}




