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

/*フッター*/

/*-----------------------*/
/* ページトップへ戻る */
#page-top-scroll{
	width: 60px;
	height: 100px;

	position: fixed;
	bottom: 60px;
	right: var(--mp-lr-reg);
	opacity: 0;
	visibility: hidden;

 	transition: transform .4s var(--easeInOutSine); /* ←スピード調整はここ */
	z-index: 5;
}
#page-top-scroll > a{
	border-radius: 8px;
	width: 100%;
	height: 100%;
	background-color: var(--c-main-red);
	color: var(--c-white);
	border: solid 1px var(--c-main-red);

	font-size: var(--txt-md);
	font-family: 'Lato', sans-serif;
	font-style: normal;
	letter-spacing: 0.15em;

	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 1em;

	transition: background-color .4s var(--easeInOutSine),
	color .4s var(--easeInOutSine);

	cursor: pointer;

	position: relative;
}
#page-top-scroll > a > svg{
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);

	height: 12px;
	fill: var(--c-white);

	transition: top .3s var(--easeOutCubic),
	fill .3s var(--easeOutCubic);
}
/* ホバー */
@media(any-hover:hover){
	#page-top-scroll > a.link-hover,
	#page-top-scroll > a:focus{
		background-color: var(--c-white);
		color: var(--c-main-red);
	}
	#page-top-scroll > a.link-hover > svg,
	#page-top-scroll > a:focus > svg{
		top: 10px;
		fill: var(--c-main-red);
	}
}
/* アニメーション トップへ戻る */
#footer__wrapper.is-change #page-top-scroll{
	position: fixed;
	bottom: 60px;
	right: var(--mp-lr-reg);
	opacity: 1;

	animation-duration: .8s;
	animation-timing-function: var(--easeOut);
	animation-fill-mode: forwards;
	z-index: 5;
}
#footer__wrapper.is-change[data-is-change="true"] #page-top-scroll{
	animation-name: footer-on;
}
#footer__wrapper.is-change[data-is-change="false"] #page-top-scroll{
	animation-name: footer-off;
}
@keyframes footer-on{
	from{
		opacity: 0;
		visibility: hidden;
	}
	to{
		opacity: 1;
		visibility: visible;
	}
}
@keyframes footer-off{
	from{
		opacity: 1;
		visibility: visible;
	}
	to{
		opacity: 0;
		visibility: hidden;
	}
}
/*-------------------------------*/

/* Smartphone 767px */

/*------------------------------*/
@media(max-width:767px){
	/* ページトップへ戻る */
	#page-top-scroll{
		width: 48px;
		height: 72px;
	}
	#page-top-scroll > a{
		border-radius: 6px;
		font-size: var(--txt-reg);
	}
	#page-top-scroll > a > svg{
		top: 12px;
		height: 10px;
	}
}


/*-------------------------------*/
/* 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-main);
}
/*===========================================*/
/* 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);
	padding-left: 1em;

	position: relative;
}
#footerLogo::before{
	content: "";
	width: 6px;
	height: 92px;
	background-color: var(--c-white);
	position: absolute;
	top: 0;
	left: 0;
}
#footerLogo > a
{
	font-size: var(--txt-xl);
	font-weight: 700;
	font-style: normal;
	font-family: var(--baseFonts);
	line-height: 1.3;
	color: var(--c-white);
	white-space: nowrap;

	transition: opacity .3s var(--easeOutCubic);
}
#footerLogo a.link-hover{
	opacity: 0.7;
}
/* 住所 */
.place-address__wrapper{
	width: 100%;
	margin-top: 0.8em;
}
.place-address__wrapper p{
	color: var(--c-white);
	line-height: 1.3;
		white-space: nowrap;
}
/* サイトマップ */
#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-white);
	font-size: var(--txt-reg);
}
/* コンタクトボタン */
.contact-square{
	width: 100%;

	display: flex;
	justify-content: end;
	align-items: center;
}
.contact-square > a.button.-footer-contact{
	width: 100%;
	max-width: calc(200rem/16);
	height: calc(56rem/16);
	background-color: var(--c-white) !important;
	border: 2px solid var(--c-white) !important;
	border-radius: 40px;

	color: var(--c-main) !important;
	font-size: var(--txt-reg);

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

	transition: opacity .3s var(--easeOutCubic);
}
/* 受付時間 */
.contact-square .footer-tel{
	font-size: var(--txt-md);
	color: var(--c-bk);
	margin-right: 1em;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contact-square .footer-tel p{
	line-height: 1.2;
}
/* 電話番号 */
.contact-square .footer-tel .footer-tel_number{
	text-decoration: none;
	font-size: var(--txt-xl);
	font-weight: 700 !important;
	font-family: var(--baseFonts);
	color: var(--c-white);
	line-height: 1;

	font-family: "Lato", sans-serif;
    font-style: normal;
}
.contact-square .footer-tel .footer-tel_number > span{
	font-size: var(--txt-md);
}
.contact-square .footer-tel .footer-tel_time{
	font-feature-settings: "palt";
	font-size: var(--txt-reg);
	letter-spacing: 0.07em;
	line-height: 1;
	color: var(--c-white);
}
/* hover設定 */
@media(any-hover:hover){
	.contact-square a.button.-footer-contact.link-hover,
	.contact-square a.button.-footer-contact:focus{
		opacity: 0.7;
	}
}
/* コピーライト */
#bottom-box{
	margin-top: auto;
}
#copyright{
	color: var(--c-white);
	font-size: var(--txt-sm);
}



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

/* Tablet 1023px */

/*------------------------------*/
@media(max-width: 1023px){
	/*===========================================*/
	/* gridインナー */
	#footer__inner{
		place-content: center;
		grid-template-areas:
		"sitemap sitemap"
		"logo contact"
		"copy copy"
		;
		gap: calc(60rem/16);
	}
	/*===========================================*/
	/*===========================================*/
	/* ロゴ */
	#footerLogo{
		width: calc(200rem / 16);
	}
	/* サイトマップ */
	#footer__sitemap{
		gap: 1em;
		width: 100%;
		border-bottom: solid 1px var(--c-white);
		padding-bottom: 2em;
	}
	/* コンタクトボタン */
	.contact-square{
		margin-top: calc(40rem/16);
		width: 100%;

		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-direction: column;
		gap: 1em;
	}
	.contact-square .footer-tel{
		margin-right: 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 767px */

/*------------------------------*/
@media(max-width:767px){
	/* ロゴ */
	#footerLogo{
		width: 100%;
	}
	#footerLogo::before{
		height: 84px;
	}
	#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;
	}
	/*===========================================*/
	/* gridインナー */
	#footer__inner{
		display: flex;
		flex-direction: column;
	}
	/*===========================================*/
	/* サイトマップ */
	#footer__sitemap{
		border-top: solid 1px var(--c-white);
		border-bottom: solid 1px var(--c-white);
		padding-top: 1em;
		padding-bottom: 1em;

		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{
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	#footer__inner > .contact-square > a{
		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*/