@charset "utf-8";

/*
	footer専用css

*/
/*------------------------------
	メニュー
-------------------------------- */
.footer {
    background: #fff;
}
.footer--nav {
    background: #424242;
}
.footer--nav--list {
    margin: auto;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
}
.footer-nav-item a {
    color: #fff;
    font-size: 90%;
    position: relative;
}
.footer-nav-item a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    width: 1px;
    height: 16px;
}

/*------------------------------
	店舗情報
-------------------------------- */
.footer--store--list {
    margin-top: 50px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer--store--item:first-child {
    border-left: none;
}
.footer--store--name {
    font-size: 134%;
    font-weight: bold;
}
.footer--store--info {
    padding-bottom: 20px;
    line-height: 1.5;
}
.footer--store--info li {
    font-size: 89%;
}
li.footer--store--tel {
    color: #CA5044;
    font-size: 106%;
    font-weight: bold;
}
/*------------------------------
	ロゴ
-------------------------------- */
.footer--logo {
    text-align: center;
}
/*------------------------------
	コピーライト
-------------------------------- */
.footer--copy {
    padding: 20px 0 50px 0;
    text-align: center;
    font-size: 80%;
}


	/* -------------------------------------------
		footer  > SP
	--------------------------------------------- */
	@media (min-width:0px) {
		.footer--nav--list {
			padding: 25px 0;
			justify-content: flex-start;
		}
		.footer-nav-item {
			width: 50%;
		}
		.footer-nav-item a {
			padding: 3px 16px;
		}
		.footer--store--list {
			flex-direction: column;
			align-items: center;
		}
		.footer--store--item {
			padding-top: 25px;
			border-top: 1px solid #666666;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.footer--store--item:first-child {
			padding-top: 0;
		}
		.footer--store--item:first-child {
			border-top: none;
		}
		.footer--store--name {
			margin-right: 25px;
		}
		.footer--store--info {
			padding-top: 20px;
		}
	}
	/* -------------------------------------------
		footer  > TABLET
	---------------------------------------------- */
	@media (min-width:720px) {
		.footer--store--item {
			padding-top: 0;
			display: flex;
			flex-direction: row;
			align-items: center;
		}
	}
	/* -------------------------------------------
		footer  > PC
	---------------------------------------------- */
	@media (min-width:1028px) {
		.footer--nav--list {
			padding: 40px 0;
			justify-content: center;
		}
		.footer-nav-item {
			width: auto;
		}
		.footer-nav-item a {
			padding: 10px 16px;
		}
		.footer-nav-item:first-child a::before {
			width: 0px;
		}
		.footer--store--list {
			flex-direction: row;
			align-items: flex-start;
		}
		.footer--store--item {
			padding-left: 40px;
			width: calc(100%/3 - 40px);
			border-left: 1px solid #666666;
			border-top:none;
			display: block;
		}
		.footer--store--item:first-child {
			border-left: none;
		}
		.footer--store--name {
			padding: 10px 0 25px;
			margin-right: auto;
		}
		.footer--store--info {
			padding-top: 0;
		}
	}
	/* -------------------------------------------
		footer  > wide PC
	---------------------------------------------- */
	@media (min-width:1680px) {
	}