@charset "UTF-8";

/* フッター部分の指定のみ記載 */
/* フッター */
.footer {
}
.pseudofooter{
	color: #454545;
	font-size: 13px;
	/*border-top: 1px solid #c1c1c1;*/
	padding: 30px 0 50px 0;
	background-image: url(../img/bg_01ud.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
}
.footer-container {
	/*display: grid;
	gap: 50px;
	justify-items: center;*/	/*関連グループを横にする場合*/
}

@media (min-width: 569px) {
	.footer-container {
		grid-template-columns: auto auto;
		/*grid-template-rows: auto auto auto;*/
		gap: 20px;
	}

	.footer-container > .footer-site {
		/*margin-bottom: 40px;*/
	}

	.footer-container > *:not(.footer-sns) {
		justify-self: stretch;
	}
	
	.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: 24px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: #cccccc;
	color: #ffffff;
	clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}
/**/
.footer-details {
	font-size: 13px;
}
/* フッター：テキストメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*gap: 30px;*/
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: var(--accent-color2);
}

@media screen and (max-width: 568px) {

	.footer-menu {
		gap: 0%;
		margin-bottom:20px;
	}

	.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: 30px;
}

.footer-company p{
	line-height: 1.5;
}
/*フッターTEL*/
.footer-tel_ico{
	font-size: 25px;
	padding-right: 5px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.footer-tel{
	font-size: 30px;
	font-weight: 400;
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
/* コピーライト */
.footer-copy{
	display: flex;
	justify-content: center;
	background-color: var(--main-color);
	background-image: url(../img/bg_head.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	align-items: center;
	height:50px;
}
.footer-copy p{
	font-size: 11px;
	color: #fff;
}
/* フッターメニュー */
ul.footer-menu li a{
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	font-weight:300;
	font-size: clamp(12px,1.4vw,14px);
}
ul.footer-menu li::after{
	content: "　　/　　";
}
ul.footer-menu li:last-child::after{
	content: none;
}
@media (max-width: 568px) {
	ul.footer-menu li a{
		font-size: 14px;
	}
	ul.footer-menu li::after{
		content: none;
	}
}
/*footer SNS*/
.foot-sns{
 	display: inline-block;
}
.foot-sns a {
	font-size: 20px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1 / 1;
	background-color: #fb0074;
	color: #ffffff;
	clip-path: circle(50%);
	margin-left: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
}

