@charset "UTF-8";


/* ==================================================
   PAGE：フッター
================================================== */


/* --------------------------------------------------
   SECTION：フッター
-------------------------------------------------- */

.footer {
	padding: var(--v-space) 0 0;
	color: #4a4f4a;
	position: relative;
	z-index: 1;
    background-color: #fff;
	border-top: 1px solid #e1e6e1;
}


/* ===== 2カラム ===== */

.flex02 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: clamp(36px, 5vw, 70px);
}

.footer-child01,
.footer-child02 {
	box-sizing: border-box;
	min-width: 0;
}

.footer-child01 {
	flex: 0 1 45%;
}

.footer-child02 {
	flex: 1;
	display: flex;
}

.inmap {
	flex: 1;
	display: flex;
	min-height: 360px;
}

.inmap iframe {
	display: block;
	flex: 1;
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
}


/* ===== 会社情報 ===== */

.footer-company {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 22px;
}

.footer-company > a img {
	display: block;
	margin-bottom: 26px;
}

table.focom-tab {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #e1e6e1;
}

table.focom-tab td {
	padding: 11px 4px;
	border-bottom: 1px solid #e1e6e1;
	font-size: 14px;
	line-height: 1.7;
	vertical-align: top;
}

table.focom-tab tr td:nth-child(1) {
	width: 7em;
	padding-right: 16px;
	color: #7b807b;
	font-weight: 700;
}

table.focom-tab tr td:nth-child(2) {
	padding-left: 4px;
}

/* 既存HTMLのラベル装飾をフラットに */
table.focom-tab .beta {
	display: inline;
	padding: 0;
	margin: 0;
	background: none;
	border-radius: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: .05em;
	text-align: left;
}

.footer-tel {
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
}


/* ===== アクセス ===== */

table.actab2 {
	width: 100%;
	margin: 0;
	border: 0;
	border-bottom: 1px solid #e1e6e1;
	border-radius: 0;
	background: none;
	border-collapse: collapse;
}

table.actab2:first-of-type {
	border-top: 1px solid #e1e6e1;
}

table.actab2 tr td:nth-of-type(1) {
	width: 6em;
	padding: 12px 4px;
	color: #666b66;
	font-size: 13px;
	font-weight: 700;
	vertical-align: middle;
	white-space: nowrap;
}

table.actab2 tr td:nth-of-type(2) {
	padding: 12px 4px 12px 12px;
	color: #555a55;
	font-size: 13px;
	line-height: 1.7;
	vertical-align: middle;
}

table.actab2 .svgicon02 {
	margin-right: 5px;
}


/* --------------------------------------------------
   SECTION：フッターメニュー
-------------------------------------------------- */

.footer-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: clamp(48px, 6vw, 72px) auto 0;
	padding: 26px 0;
	border-top: 1px solid #e1e6e1;
}

.footer-site {
	width: 100%;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px 28px;
	margin: 0;
}

.footer-menu li {
	display: flex;
	align-items: center;
	margin: 0;
}

.footer-menu li + li::before {
	content: "";
	display: block;
	width: 1px;
	height: 14px;
	margin-right: 28px;
	background-color: #cfd7cf;
}

.footer-menu li::after {
	content: none;
}

.footer-menu li a {
	display: inline-block;
	color: #555a55;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
	text-decoration: none;
	transition: color .2s ease;
}

.footer-menu li a:hover {
	color: var(--main-color);
	text-decoration: none;
}


/* --------------------------------------------------
   SECTION：コピーライト
-------------------------------------------------- */

.footer-copy {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 34px;
	background-color: var(--accent-color2);
}

.footer-copy p {
	color: #fff;
	font-size: 11px;
	letter-spacing: .05em;
}

.footer-copy a {
	color: inherit;
}


/* --------------------------------------------------
   SECTION：SP
-------------------------------------------------- */

@media screen and (max-width: 968px) {

	.flex02 {
		flex-direction: column;
		gap: 36px;
	}

	.footer-child01,
	.footer-child02 {
		flex: 0 0 100%;
	}

	.footer-company {
		align-items: center;
	}

	.footer-company > a img {
		margin-right: auto;
		margin-left: auto;
	}

	.inmap,
	.inmap iframe {
		min-height: 320px;
	}
}

@media screen and (max-width: 768px) {

	.footer {
		padding-top: 70px;
	}

	.footer-company {
		align-items: stretch;
	}

	.footer-company > a {
		text-align: center;
	}

	table.focom-tab tr td:nth-child(1) {
		width: 6em;
		padding-right: 10px;
	}

	table.focom-tab td {
		font-size: 13px;
	}

	table.actab2 {
		display: table;
		padding: 0 !important;
		font-size: inherit;
	}

	table.actab2 tr td:nth-of-type(1) {
		width: 5.5em;
		padding: 10px 2px;
	}

	table.actab2 tr td:nth-of-type(2) {
		padding: 10px 2px 10px 8px;
	}

	.footer-container {
		padding: 24px 0;
	}

	.footer-menu {
		flex-direction: column;
		align-items: center;
		gap: 18px;
	}

	.footer-menu li + li::before {
		display: none;
	}
}
