@charset "utf-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
株式会社サンロイヤル新潟　カスタム対応
	ver.2025.05.30.Custom-SunroyalNiigata
	ページフッター　スタイルシート
────────────────────────────────────────
FileName:		/resources/css/common-footer.css
Editor:			TRUSTEC
Description:	ページフッター　スタイルシート。
────────────────────────────────────────
2025/05/30:		サンプル開発開始。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/





/* ::::: [CUSTOM PROPERTIES] ::::: */
:root {

	/* Footer
	--------- --------- --------- ------- */
	--footer-color: #ffffff;
	--footer-font-size: var(--common-font-size);
	--footer-font-family: var(--common-font-family-suns);
	--footer-font-weight: var(--common-font-weight);
	--footer-font-style: var(--common-font-style);
	--footer-line-height: var(--common-line-height);
	--footer-letter-spacing: var(--common-letter-spacing);

	/* Sitemap
	--------- --------- --------- ------- */
	--footer-sitemap-color: #0d0d0d;
	--footer-sitemap-font-size: var(--common-font-size-smaller);
	--footer-sitemap-link-font-weight: var(--common-font-weight);

	/* Address
	--------- --------- --------- ------- */
	--footer-addreess-color: #ffffff;
	--footer-addreess-font-size: var(--common-font-size-smaller);
	--footer-addreess-font-weight: var(--common-font-weight);


	/* Copyright
	--------- --------- --------- ------- */
	--footer-copyright-color: #ffffff;
	--footer-copyright-font-size: var(--common-font-size-smaller);

/*	--footer-return-top-background-color: rgba(255, 255, 255, 1);
	--footer-return-top-color: #6c6c6c;
	--footer-return-top-width: 3rem;
	--footer-return-top-border-radius: 100%;
	--footer-return-top-transition: var(--common-hover-transition);*/
}





/* ::::: [FOOTER] ::::: */

/* Footer Setting
--------- --------- --------- ------- */
footer {
	font-size: var(--footer-font-size);
	background-image: linear-gradient(#83a84a, #00813d);
}

footer a {
}

#page-footer .company-structure,
#page-footer .company-name-azabu,
#page-footer .company-name-printing{
	color: var(--footer-color);
}
#page-footer .company-structure{
	margin-right: 0.3em;
	font-size: max(1.3rem, 1.3vw);
}
#page-footer .company-name-azabu{
	letter-spacing: -0.02em;
	font-size: max(1.5rem, 1.5vw);
}
#page-footer .company-name-printing{
	letter-spacing: -0.06em;
	font-size: max(1.5rem, 1.5vw);
}

/* Sitemap
--------- --------- --------- ------- */
.footer-sitemap {
	color: var(--footer-color);
	font-size: var(--footer-sitemap-font-size);
}
.footer-sitemap a {
	color: currentColor;
	font-weight: 700;
	transition : all 0.3s;
    line-height: 2.5em;
}
@media screen and (max-width: 1000px) {
	.footer-sitemap a:active {
		transition : all 0.3s;
	}
}
/* PCの時は:hover */
@media screen and (min-width: 1001px) {
	.footer-sitemap a:hover {
		transition : all 0.3s;
	}
}
/*	Horizontal List	*/
.footer-sitemap-horizontal {
	list-style: none;
	margin: 0;
	padding: 0.5em 0;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 0.5em 1.5em;
}
.footer-sitemap-horizontal .sitemap-item {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 2em;
	width: 20%;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.footer-sitemap-horizontal .sitemap-item {
		gap: 2em;
		width: 30%;
	}
}
@media (max-width: 767px) {
	.footer-sitemap-horizontal .sitemap-item {
		gap: 1em;
		width: 40%;
	}
}
@media (max-width: 575px) {
	.footer-sitemap-horizontal .sitemap-item {
		width: 100%;
	}
}
.footer-sitemap-horizontal .sitemap-item + .sitemap-item::before {
	flex-grow: 0;
	flex-shrink: 1;
}
.footer-copyright-row{
	display: flex;
	flex-direction: column;
    align-items: center;
}

.footer-copyright-menu-list {
	list-style: none;
	margin: 0;
    margin-bottom: 1em;
	padding: 0.5em 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0;
	justify-content: center;
}
@media (min-width: 992px) {
	.footer-copyright-menu-list {
		/*margin-bottom: 0;*/
	}
}

.footer-copyright-menu-list .sitemap-item {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	transition: all 0.3s ease-out;
}
.footer-copyright-menu-list .sitemap-item a{
	color: var(--footer-color);
	font-size: max(0.7rem, 0.8vw);
	padding: 0 1em;
    border-right: 1px solid #ffffff;
}
.footer-copyright-menu-list .ext-link{
	border-right: none !important;
}
.footer-copyright-menu-list .ext-link:after{
	content: url(../images/common/ext-link-icon.png);
	display: inline-block;
}

.copyright-wrapper{
	width: 100%;
    height: 100%;
	display: flex;
    align-items: center;
	justify-content: center;
}
.copyright{
	width: fit-content;
}

/*	Blocks	*/
.footer-sitemap .fotter-menu-title {
}

.footer-sitemap-1 {
}
.footer-sitemap-2 {
}
.footer-sitemap-3 {
}

/* Address
--------- --------- --------- ------- */
.footer-address {
	color: var(--footer-addreess-color);
	font-size: var(--footer-addreess-font-size);
	font-weight: var(--footer-addreess-font-weight);
	padding-top: 3em;
}

.footer-address .footer-map-link {
    background-color: #ffffff;
    color: #00813d !important;
    border-radius: 0.5em;
	margin: auto;
    width: 13.5em;
	position: relative;
    line-height: 3em;
    padding: 0 1.5em 0 .8em !important;
}
.footer-address .footer-map-link .link-txt::after {
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 27px;
	top: 0;
	transition: ease .3s;
}


.btn-index-room-guide .href-txt,
.btn-index-facility .href-txt{
	border: 2px solid #ffffff;
	border-radius: 0.5em;
	display: block;
	pointer-events: auto;
}



.footer-address .footer-brand {
    width: fit-content;
	padding-right: 1.5rem;
    margin-bottom: 0;
}
.footer-address .footer-brand img {
	margin-right: 0.2em;
	width: 150px;
	height: auto;
}
@media (max-width: 576px) {
	.footer-address .footer-brand img {
		width: 100px;
	}
}

.address-contents{
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
}
.address-wrapper {
    width: fit-content;
	display: flex;
    flex-direction: column;
    justify-content: center;
	padding-left: 1.5rem;
}
.address-wrapper .address {
	width: fit-content;
	margin: auto;
    margin-bottom: 1em;
}
.address-wrapper .address:before{
	content: url(../images/common/map-pin-icon.png);
	display: inline-block;
}
.address-wrapper .company-inf {
    width: fit-content;
	font-family: var(--common-font-family-serif);
    font-size: 1.6em;
    font-weight: 700;
	letter-spacing: 0.1em;
    margin-bottom: 0.3em;
	margin: auto;
}
@media (max-width: 767px) {
	.footer-address .footer-brand {
		padding-right: 0;
	}
	.address-contents{
		justify-content: center;
		margin: auto;
		flex-direction: column;
		align-items: center;
	}
	.address-wrapper {
		padding-left: 0;
	}
	.footer-address .footer-brand img{
		margin-right: 0;
        margin-bottom: 1em;
	}
	.address-wrapper .company-inf {
		margin-bottom: 0.3em !important;
	}
}
@media (max-width: 576px) {
	.footer-address .footer-map-link {
		background-color: #ffffff;
		color: #00813d !important;
		border-radius: 0.5em;
		margin: auto;
	}
	.address-wrapper .address {
		width: fit-content;
		margin: auto;
		margin-bottom: 1em;
		font-size: 0.9em;
	}
	.address-wrapper .company-inf {
		font-size: 1em;
	}
}

/* Copyright
--------- --------- --------- ------- */
.footer-copyright {
	background-color: var(--footer-copyright-background-color);
	color: var(--footer-copyright-color);
	padding: 1.5rem 0;
	border-top: solid 1px var(--footer-copyright-color);
}

.copyright {
	font-size: max(0.7rem, 0.8vw);
	margin: 0;
}

.icon-returnTop {
	background-color: var(--footer-return-top-background-color);
	color: var(--footer-return-top-color);
	font-size: var(--footer-return-top-width);
	width: var(--footer-return-top-width);
	height: var(--footer-return-top-width);
	border: none;
	border-radius: var(--footer-return-top-border-radius);
	display: inline-block;
	transition: var(--footer-return-top-transition);
}
.icon-returnTop:hover,
.icon-returnTop:focus,
.icon-returnTop:active {
	color: #5b8f82;
}
.footer-contact,
.footer-sitemap {
	margin-top: 1.5rem;
}

.contact-wrapper{
	border-radius: 0.5em;
	background-color: var(--footer-color);
}

.contact-list {
	list-style: none;
    margin: 0;
    padding: 3em 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-list-item:first-child{
	border-right: solid 1px #00813d;
}

.contact-list-item {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	width: 50%;
}
.contact-list-item-telp,
.contact-list-item-web {
	width: fit-content;
	display: flex;
    flex-direction: column;
    margin: auto;
}
.contact-telp-caption,
.contact-web-caption {
    font-size: max(0.9em, 1vw) !important;
    font-weight: 600;
    margin-bottom: 0.8em;
}
.contact-list-item .telp{
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    font-size: max(1.8em, 2vw) !important;
    font-weight: 900 !important;
    letter-spacing: 0.1em;
    padding-bottom: 0;
    color: #00813d !important;
}
.contact-web-link{
	background-color: #00813d;
    color: #ffffff !important;
    border-radius: 0.5em;
	font-weight: 700;
	letter-spacing: 0.1em;
    padding: 1em 1.5em !important;
    font-size: max(1em, 1.2vw) !important;
}
.contact-web-link .link-txt:after {
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 0.8em;
}


.contact-list-item .business-hours {
    font-size: max(0.5em, 0.4vw) !important;
    font-weight: 600;
    letter-spacing: var(--common-letter-spacing);
    margin-top: 0.5em;
    text-align-last: justify;
    color: var(--header-color);
}

@media (max-width: 767px) {
	.contact-list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5em 0;
	}
	.contact-list-item {
		width: 100%;
	}
	.contact-list-item:first-child{
		border-right: none;
		border-bottom: solid 1px #00813d;
        padding-bottom: 1.5em;
	}
}