@charset "UTF-8";
/*------------------------*/

/*フッター*/

/*-----------------------*/
/*-------------------------------*/
/* contact */
/*------------------------------*/
#footer-contact.content__wrapper{
    width: 100%;
    width: calc(1280rem/16);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--mp-lr-reg);
}
#footer-contact.content__wrapper .txt{
    margin-top: calc(40rem/16);
    text-align: center;
}
#footer__wrapper{
	width: 100%;
	margin: 0 auto;
	margin-top: var(--mp-tb-2xl);
	background-color: var(--c-gray-pale);
}
/*===========================================*/
/* gridインナー */
#footer__inner{
	width: var(--fx-width);
	height: 100%;
	margin: 0 auto;
	padding: var(--mp-tb-xl) 0;

    --footer-grid-width: min(30%, calc(480rem/16));
    display: grid;
    grid-template-columns: var(--footer-grid-width) 1fr;
    place-content: center;
    grid-template-areas:
    "logo sitemap"
    "copy contact"
    ;
}
#footerLogo{
    grid-area: logo;
}
#footer__sitemap{
    grid-area: sitemap;
}
.contact-square{
    grid-area: contact;
}
#bottom-box{
    grid-area: copy;
}
/*===========================================*/
/* ロゴ */
#footerLogo{
	width: calc(280rem / 16);
}
#footerLogo > a
{
	width: 100%;
	transition: opacity .2s ease-in-out;
}
#footerLogo > a > img{
	width: 100%;
	height: auto;
}
#footerLogo a.link-hover{
	opacity: 0.7;
}
/* 住所 */
.place-address__wrapper{
	width: 100%;
	margin-top: 1em;
	padding-left: calc(40rem/16);

	position: relative;
}
.place-address__wrapper p{
	color: var(--c-bk);
	line-height: 1.3;
}
/* 住所 線 */
.place-address__wrapper::before{
	content: "";
	display: block;

	position: absolute;
	left: calc(25rem/16);

	background-color: var(--c-gray);
	width: 1px;
	height: 100%;
}
/* サイトマップ */
#footer__sitemap{
	width: 100%;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#footer__sitemap li + li{
	margin-left: 2.5em;
}
#footer__sitemap li:last-of-type{
	margin-right: 0;
}
#footer__sitemap li > a{
	color: var(--c-bk);
	font-size: var(--txt-reg);
}
/* コンタクトボタン */
#footer__inner > .contact-square{
	width: 100%;

	display: flex;
	justify-content: end;
	align-items: center;
}
#footer__inner > .contact-square > a{
	width: 180px;
	height: 80px;
	padding: 20px;

	font-size: var(--txt-sm);
	color: var(--c-white);
	background-color: var(--c-main);

	display: flex;
	align-items: center;
	justify-content: center;

	transition: background-color .2s ease-in-out;
}
/* 受付時間 */
#footer__inner .contact-square .footer-tel{
	font-size: var(--txt-md);
	color: var(--c-bk);
	margin-right: 1em;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#footer__inner .contact-square .footer-tel p{
	line-height: 1.2;
}
/* 電話番号 */
#footer__inner .contact-square .footer-tel .footer-tel_number{
	text-decoration: none;
	font-size: var(--txt-xl);
	font-weight: 700;
	font-style: normal;
	font-family: var(--baseFonts);
	color: var(--c-main);
}
#footer__inner .contact-square .footer-tel .footer-tel_number > span{
	font-size: var(--txt-md);
}
#footer__inner .contact-square .footer-tel .footer-tel_time{
	font-feature-settings: "palt";
	font-size: var(--txt-reg);
	letter-spacing: 0.07em;
	line-height: 1;
}
/* hover */
#footer__inner .contact-square a.link-hover{
	background-color: var(--c-main-light);
}
/* コピーライト */
#bottom-box{
	margin-top: auto;
}
#copyright{
	color: var(--c-gray);
	font-size: var(--txt-sm);
}



/*-------------------------------*/

/* Tablet 959px */

/*------------------------------*/
@media(max-width: 959px){
	/*===========================================*/
	/* gridインナー */
	#footer__inner{
		place-content: center;
		grid-template-areas:
		"logo contact"
		"sitemap sitemap"
		"copy copy"
		;
	}
	/*===========================================*/
	/*===========================================*/
	/* ロゴ */
	#footerLogo{
		width: calc(200rem / 16);
	}
	/* 住所 線 */
	.place-address__wrapper::before{
		left: calc(18rem/16);
	}
	/* サイトマップ */
	#footer__sitemap{
		margin-top: calc(40rem/16);
		justify-content: space-between;
		gap: 0;
	}
	/* コンタクトボタン */
	#footer__inner > .contact-square > a{
		height: 64px;
	}
	/* 電話番号 */
	#footer__inner .contact-square .footer-tel .footer-tel_time{
		letter-spacing: 0.03em;
	}
	/* お問い合わせ */
	#footer__inner > .contact-square{
		margin-top: 0;
	}
	/* コピーライト */
	#bottom-box{
		margin-top: calc(40rem/16);
	}
}/*Tablet END*/



/*-------------------------------*/

/* Smartphone 559px */

/*------------------------------*/
@media(max-width:559px){
	/* ロゴ */
	#footerLogo{
		width: 100%;
	}
	#footerLogo > a{
		display: block;
		width: calc(200rem / 16);
	}
	#footer-contact.content__wrapper .txt{
		text-align: justify;
	}
	/* 住所 */
	.place-address__wrapper{
		margin-top: 0.5em;
		padding-left: 0;
	}
	/* 住所 線 */
	.place-address__wrapper::before{
		content: none;
	}
	/*===========================================*/
	/* gridインナー */
	#footer__inner{
		display: flex;
		flex-direction: column;
	}
	/*===========================================*/
	/* サイトマップ */
	#footer__sitemap{
		border-top: solid 1px var(--c-gray-light);
		border-bottom: solid 1px var(--c-gray-light);
		margin-top: calc(24rem/16);
		flex-direction: column;
	}
	#footer__sitemap li{
		width: 100%;
	}
	#footer__sitemap li + li{
		margin-left: 0;
		border-top: solid 1px var(--c-gray-light);
	}
	#footer__sitemap li > a{
		display: block;
		line-height: 1;
		width: 100%;
		height: 100%;
		padding-top: 1.3em;
		padding-bottom: 1.3em;
	}
	/* コンタクトボタン */
	#footer__inner > .contact-square{
		margin-top: calc(24rem/16);

		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	#footer__inner > .contact-square > a{
		margin-top: calc(16rem/16);
		height: 64px;
		width: 200px;
	}
	/* 電話番号 */
	#footer__inner .contact-square .footer-tel .footer-tel_time{
		letter-spacing: -0.01em;
	}
	/* コピーライト */
	#bottom-box{
		margin-top: calc(24rem/16);
	}
}/*Smartphone END*/