@charset "UTF-8";


/*=======================================================*/
/*      	　			フッターCSS   			  		  */
/*=======================================================*/

/* フッター */
.footer {
	padding: 40px 0 0px 0;
	/*background-color: #fff;*/
	color: #666;
	font-size: 13px;
}
.footer-container {
	/*SNSを使用する時*/
	/*display: grid;*/

	/*gap: 50px;*/
	
	/*SNSを使用しない時*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
} 
@media print, screen and (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: 24px;
	font-size: 20px;
}
.footer-sns a {
	display: grid;
	place-items: center;
	width: 30px;
	aspect-ratio: 1 / 1;
	background-color: #fb0074;
	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;
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: var(--main-color);
}
@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-top: 30px;
	padding-bottom: 40px;	/*エリアがない場合に使用*/
background-image: url(../img/bg_01ud.png);
background-repeat: no-repeat;
background-position: bottom center;
background-size: cover;
}
.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;*/
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
.footer-tel{
	font-size: 25px;
	font-weight: 400;
	/*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
/* フッターメニュー */
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 only screen and (max-width: 767px) {
	ul.footer-menu li::after{
		content: none;
	}
}
/*コピーライト*/
.footer-copy {
	display:flex;
	justify-content: center;
	background-color: var(--main-color);
	align-items: center;
	height:40px;
	/*border-top: 2px solid var(--accent-color1);*/
}
.footer-copy p {
	color: #fff;
	font-size: 11px;
}
/* フッター */
.footer-details{
	font-size: 13px;
	padding-bottom: 10px;
}
/*フッターバナー*/
.footerbnr {
	/*padding: 30px 0 80px 0;*/
	padding: 0 0 50px 0;
	/*background: linear-gradient(-225deg, #6db09a 0%, #cdeae3 60%, #79a7d7 100%);*//*グラデーション*/
}
/*対応エリア(footer)*/
.area {
	padding: clamp(15px, 7vw, 20px) 0;
	background-color: #F2F2F2;
}
h4.areaTitle {
	font-size: clamp(18px,1.4vw,18px);
	font-weight: 400;
	line-height: 1.4;
	border-bottom: 1px dotted var(--accent-color2);
	padding: 2px;
	margin: 10px 0;
	color: var(--accent-color2);
}
.afooter {
	color: #606060;	
	font-size: 13px;
}
