:root {
	--fudousan-red: #f91d00;
	--fudousan-yellow: #ffc200;
	--fudousan-text: #333333;
	--fudousan-muted: #696969;
	--fudousan-line: #eeeeee;
	--fudousan-container: 960px;
}

.fudousanHF-header,
.fudousanHF-preFooter,
.fudousanHF-footer,
.fudousanHF-fixedContact {
	font-family: Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	color: var(--fudousan-text);
	letter-spacing: 0.05em;
}

.fudousanHF-header *,
.fudousanHF-preFooter *,
.fudousanHF-footer *,
.fudousanHF-fixedContact * {
	box-sizing: border-box;
}

.fudousanHF-header ul,
.fudousanHF-preFooter ul,
.fudousanHF-footer ul,
.fudousanHF-fixedContact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fudousanHF-header a,
.fudousanHF-preFooter a,
.fudousanHF-footer a,
.fudousanHF-fixedContact a {
	color: inherit;
	text-decoration: none;
}

.fudousanHF-header svg,
.fudousanHF-preFooter svg,
.fudousanHF-footer svg,
.fudousanHF-fixedContact svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: -0.12em;
}

.fudousanHF-skipLink {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	transform: translateY(-160%);
	padding: 10px 16px;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 4px 18px rgb(0 0 0 / 18%);
	color: var(--fudousan-text);
}

.fudousanHF-skipLink:focus {
	transform: translateY(0);
}

/* Header */
body .fudousanHF-header {
	position: relative !important;
	z-index: 1000;
	width: 100%;
	height: auto !important;
	min-height: 180px;
	margin: 0;
	padding: 0;
	background: #ffffff;
	box-shadow: none;
}

.fudousanHF-header__inner {
	position: relative;
	width: min(var(--fudousan-container), calc(100% - 30px));
	margin-inline: auto;
}

.fudousanHF-header__copy {
	min-height: 40px;
	margin: 0;
	padding: 15px 0 3px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 3px;
}

.fudousanHF-header__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 140px;
	padding-top: 60px;
}

.fudousanHF-header__logo {
	position: relative;
	bottom: 15px;
	display: flex;
	align-items: center;
	flex: 0 0 260px;
}

.fudousanHF-logo {
	display: inline-flex;
	align-items: center;
}

.fudousanHF-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.fudousanHF-logo--header {
	width: 260px;
}

.fudousanHF-menuToggle,
.fudousanHF-menuClose {
	display: none;
}

.fudousanHF-navigation {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	height: 80px;
}

.fudousanHF-mainNavigation {
	display: flex;
	height: 80px;
}

.fudousanHF-mainNavigation__item {
	position: relative;
	width: 135px;
	height: 80px;
	text-align: center;
}

.fudousanHF-mainNavigation__item::after {
	position: absolute;
	top: 15px;
	right: 0;
	width: 1px;
	height: 40px;
	background: var(--fudousan-line);
	content: "";
}

.fudousanHF-mainNavigation__item:first-child::before {
	position: absolute;
	top: 15px;
	left: 0;
	width: 1px;
	height: 40px;
	background: var(--fudousan-line);
	content: "";
}

.fudousanHF-mainNavigation__parent {
	display: flex;
	height: 100%;
}

.fudousanHF-mainNavigation__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	height: 100%;
	padding: 10px 8px;
	transition: color 180ms ease, background-color 180ms ease;
}

.fudousanHF-mainNavigation__link small {
	display: block;
	margin-bottom: 5px;
	color: var(--fudousan-red);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1px;
}

.fudousanHF-mainNavigation__link strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1px;
	white-space: nowrap;
}

.fudousanHF-mainNavigation__link:hover,
.fudousanHF-mainNavigation__link:focus-visible,
.fudousanHF-mainNavigation__item:focus-within > .fudousanHF-mainNavigation__parent .fudousanHF-mainNavigation__link {
	background: #f5f5f5;
	color: var(--fudousan-red);
}

.fudousanHF-submenuToggle {
	position: absolute;
	right: 6px;
	bottom: 8px;
	z-index: 2;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.fudousanHF-submenuToggle::before {
	position: absolute;
	top: 7px;
	left: 8px;
	width: 7px;
	height: 7px;
	border-right: 1px solid var(--fudousan-red);
	border-bottom: 1px solid var(--fudousan-red);
	transform: rotate(45deg);
	content: "";
}

.fudousanHF-submenuToggle:focus-visible {
	outline: 2px solid var(--fudousan-red);
	outline-offset: 2px;
}

.fudousanHF-submenu {
	position: absolute;
	top: 80px;
	left: 0;
	z-index: 20;
	visibility: hidden;
	width: 285px;
	padding: 8px 0 !important;
	background: #ffffff;
	box-shadow: 0 10px 24px rgb(0 0 0 / 16%);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	text-align: left;
}

.fudousanHF-submenu a {
	display: block;
	padding: 12px 18px;
	border-left: 3px solid transparent;
	font-size: 14px;
	line-height: 1.6;
}

.fudousanHF-submenu a:hover,
.fudousanHF-submenu a:focus-visible {
	border-left-color: var(--fudousan-red);
	background: #f5f5f5;
}

.fudousanHF-mainNavigation__item--hasChildren:hover .fudousanHF-submenu,
.fudousanHF-mainNavigation__item--hasChildren:focus-within .fudousanHF-submenu,
.fudousanHF-mainNavigation__item--hasChildren.is-open .fudousanHF-submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.fudousanHF-helpNavigation {
	position: absolute;
	top: -100px;
	right: 0;
	display: flex;
}

.fudousanHF-helpNavigation__link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 70px;
	padding: 10px 30px;
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 2px;
	transition: opacity 180ms ease;
}

.fudousanHF-helpNavigation__link small {
	display: block;
	margin-bottom: 3px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1px;
}

.fudousanHF-helpNavigation__link span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.fudousanHF-helpNavigation__link svg {
	width: 18px;
	height: 18px;
}

.fudousanHF-helpNavigation__link--phone {
	min-width: 246px;
	border-radius: 0 0 0 15px;
	background: var(--fudousan-yellow);
}

.fudousanHF-helpNavigation__link--contact {
	min-width: 284px;
	border-left: 1px solid #ffffff;
	border-radius: 0 0 15px 0;
	background: var(--fudousan-red);
}

.fudousanHF-helpNavigation__link:hover,
.fudousanHF-helpNavigation__link:focus-visible {
	opacity: 0.82;
}

.fudousanHF-fixHeaderMeasure {
	display: none !important;
}

/* Call-to-action area before the footer */
.fudousanHF-preFooter {
	position: relative;
	min-height: 570px;
	padding: 120px 15px 160px;
	background-image: linear-gradient(rgb(16 74 99 / 30%), rgb(16 74 99 / 46%)), url("../images/footer_bnr_bg.jpg");
	background-position: center;
	background-size: cover;
}

.fudousanHF-preFooter__inner {
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	margin-inline: auto;
	text-align: center;
}

.fudousanHF-preFooter__categories {
	display: flex;
	justify-content: center;
	gap: 13px;
}

.fudousanHF-preFooter__categories li {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: rgb(249 29 0 / 90%);
	box-shadow: 0 5px 14px rgb(0 0 0 / 18%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.fudousanHF-preFooter__title {
	margin: 30px 0 35px;
	color: #ffffff;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.45;
	text-shadow: 0 2px 7px rgb(0 0 0 / 45%);
}

.fudousanHF-preFooter__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 760px;
	margin-inline: auto;
	box-shadow: 0 10px 28px rgb(0 0 0 / 22%);
}

.fudousanHF-preFooter__action {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 98px;
	padding: 14px 20px;
	color: #ffffff !important;
	transition: filter 180ms ease;
}

.fudousanHF-preFooter__action small {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 600;
}

.fudousanHF-preFooter__action strong {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 700;
}

.fudousanHF-preFooter__action--phone {
	border-radius: 16px 0 0 16px;
	background: var(--fudousan-yellow);
}

.fudousanHF-preFooter__action--contact {
	border-left: 1px solid #ffffff;
	border-radius: 0 16px 16px 0;
	background: var(--fudousan-red);
}

.fudousanHF-preFooter__action:hover,
.fudousanHF-preFooter__action:focus-visible {
	filter: brightness(0.9);
}

/* Footer */
body .fudousanHF-footer {
	padding: 0;
	background: transparent;
	color: var(--fudousan-text);
}

.fudousanHF-footer__main {
	position: relative;
	padding: 60px 15px 30px;
	background: #eeeeee;
}

.fudousanHF-footer__inner {
	width: min(900px, 100%);
	margin-inline: auto;
}

.fudousanHF-footer__navigation {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.fudousanHF-footer__column,
.fudousanHF-footer__column ul {
	margin: 0;
}

.fudousanHF-footer__columnTitle {
	display: block;
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 2px solid #c8c8c8;
	font-size: 17px;
	font-weight: 700;
}

.fudousanHF-footer__column li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #d7d7d7;
}

.fudousanHF-footer__column li::before {
	position: absolute;
	top: 17px;
	left: 1px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #777777;
	border-right: 1px solid #777777;
	transform: rotate(45deg);
	content: "";
}

.fudousanHF-footer__column li a {
	display: block;
	padding: 11px 4px 11px 15px;
	font-size: 13px;
	line-height: 1.55;
}

.fudousanHF-footer__column--primary li a {
	font-size: 15px;
	font-weight: 600;
}

.fudousanHF-footer__column a:hover,
.fudousanHF-footer__column a:focus-visible {
	color: var(--fudousan-red);
}

.fudousanHF-footer__brand {
	margin-top: 55px;
	text-align: center;
}

.fudousanHF-footer__brand p {
	margin: 0 0 13px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 3px;
}

.fudousanHF-logo--footer {
	width: 280px;
}

.fudousanHF-footer__contacts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 610px;
	margin: 32px auto 0;
}

.fudousanHF-footer__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 58px;
	padding: 12px 16px;
	color: #ffffff !important;
	font-size: 17px;
	font-weight: 700;
}

.fudousanHF-footer__contact--phone {
	border-radius: 12px 0 0 12px;
	background: var(--fudousan-yellow);
}

.fudousanHF-footer__contact--mail {
	border-left: 1px solid #ffffff;
	border-radius: 0 12px 12px 0;
	background: var(--fudousan-red);
}

.fudousanHF-footer__contact:hover,
.fudousanHF-footer__contact:focus-visible {
	opacity: 0.82;
}

.fudousanHF-footer__copyright {
	padding: 15px;
	background: #ffffff;
	color: var(--fudousan-muted);
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

/* Fixed contact button */
.fudousanHF-fixedContact {
	position: fixed;
	right: 24px;
	bottom: 42px;
	z-index: 900;
}

.fudousanHF-fixedContact__phone {
	display: none !important;
}

.fudousanHF-fixedContact__mail {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 124px;
	height: 124px;
	border: 3px solid var(--fudousan-red);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
	color: var(--fudousan-red) !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.fudousanHF-fixedContact__mail svg {
	width: 34px;
	height: 34px;
	margin-bottom: 5px;
}

.fudousanHF-fixedContact__mail small {
	display: block;
	font-size: 11px;
}

.fudousanHF-fixedContact__mail:hover,
.fudousanHF-fixedContact__mail:focus-visible {
	background: var(--fudousan-red);
	color: #ffffff !important;
}

@media (max-width: 1200px) and (min-width: 991px) {
	.fudousanHF-mainNavigation__item {
		width: 132px;
	}

	.fudousanHF-mainNavigation__link {
		padding-inline: 6px;
	}

	.fudousanHF-mainNavigation__link strong {
		font-size: 17px;
	}
}

@media (max-width: 990px) {
	body.fudousanHF-menuOpen {
		overflow: hidden;
	}

	body .fudousanHF-header {
		min-height: 125px;
	}

	.fudousanHF-header__inner {
		width: calc(100% - 30px);
	}

	.fudousanHF-header__copy {
		overflow: hidden;
		height: 50px;
		padding: 10px 70px 15px;
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 1.5px;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.fudousanHF-header__main {
		display: block;
		min-height: 75px;
		padding-top: 0;
	}

	.fudousanHF-header__logo {
		position: static;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 75px;
	}

	.fudousanHF-logo--header {
		width: min(220px, calc(100vw - 140px));
	}

	.fudousanHF-menuToggle {
		position: absolute;
		top: 57px;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 5px;
		width: 60px;
		height: 60px;
		margin: 0;
		padding: 8px;
		border: 0;
		background: transparent;
		color: var(--fudousan-text);
		cursor: pointer;
	}

	.fudousanHF-menuToggle > span {
		display: block;
		width: 29px;
		height: 2px;
		background: var(--fudousan-red);
		transition: transform 180ms ease, opacity 180ms ease;
	}

	.fudousanHF-menuToggle small {
		font-size: 9px;
		font-weight: 700;
		letter-spacing: 1px;
	}

	.fudousanHF-menuToggle[aria-expanded="true"] > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.fudousanHF-menuToggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.fudousanHF-menuToggle[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.fudousanHF-navigation {
		position: absolute;
		top: 125px;
		left: -15px;
		z-index: 100;
		display: none;
		flex-direction: column;
		width: calc(100% + 30px);
		height: auto;
		max-height: calc(100vh - 125px);
		overflow-y: auto;
		padding: 0 0 28px;
		background: #ffffff;
		box-shadow: 0 8px 18px rgb(0 0 0 / 20%);
	}

	.admin-bar .fudousanHF-navigation {
		max-height: calc(100vh - 171px);
	}

	.fudousanHF-navigation.is-open {
		display: flex;
	}

	.fudousanHF-mainNavigation {
		order: 1;
		display: block;
		height: auto;
		border-top: 1px solid #cccccc;
	}

	.fudousanHF-mainNavigation__item {
		width: 100%;
		height: auto;
		border-bottom: 1px solid #cccccc;
		text-align: left;
	}

	.fudousanHF-mainNavigation__item::before,
	.fudousanHF-mainNavigation__item::after {
		display: none;
	}

	.fudousanHF-mainNavigation__parent {
		display: grid;
		grid-template-columns: 1fr 58px;
		height: auto;
	}

	.fudousanHF-mainNavigation__link {
		display: grid;
		grid-template-columns: 78px 1fr;
		align-items: center;
		height: auto;
		min-height: 58px;
		padding: 14px 15px;
		border-left: 3px solid transparent;
		background: #eeeeee;
		text-align: left;
	}

	.fudousanHF-mainNavigation__link small {
		margin: 0;
		font-size: 11px;
	}

	.fudousanHF-mainNavigation__link strong {
		font-size: 16px;
		white-space: normal;
	}

	.fudousanHF-mainNavigation__link:hover,
	.fudousanHF-mainNavigation__link:focus-visible {
		border-left-color: var(--fudousan-red);
		background: #dddddd;
		color: var(--fudousan-text);
	}

	.fudousanHF-submenuToggle {
		position: relative;
		right: auto;
		bottom: auto;
		width: 58px;
		height: 100%;
		min-height: 58px;
		border-radius: 0;
		background: #e5e5e5;
	}

	.fudousanHF-submenuToggle::before {
		top: 22px;
		left: 23px;
		width: 10px;
		height: 10px;
		border-color: var(--fudousan-text);
		transition: transform 180ms ease;
	}

	.fudousanHF-submenuToggle[aria-expanded="true"]::before {
		transform: translateY(4px) rotate(225deg);
	}

	.fudousanHF-submenu {
		position: static;
		display: none;
		visibility: visible;
		width: 100%;
		padding: 0 !important;
		background: #ffffff;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.fudousanHF-mainNavigation__item--hasChildren:hover .fudousanHF-submenu,
	.fudousanHF-mainNavigation__item--hasChildren:focus-within .fudousanHF-submenu {
		display: none;
	}

	.fudousanHF-mainNavigation__item--hasChildren.is-open .fudousanHF-submenu {
		display: block;
	}

	.fudousanHF-submenu li {
		border-top: 1px solid #eeeeee;
	}

	.fudousanHF-submenu a {
		padding: 13px 18px 13px 36px;
		font-size: 13px;
	}

	.fudousanHF-helpNavigation {
		position: static;
		order: 2;
		display: block;
	}

	.fudousanHF-helpNavigation__link {
		height: auto;
		min-height: 68px;
		padding: 12px 15px;
		border-radius: 0;
		font-size: 16px;
	}

	.fudousanHF-helpNavigation__link--phone,
	.fudousanHF-helpNavigation__link--contact {
		min-width: 0;
		border: 0;
		border-radius: 0;
	}

	.fudousanHF-menuClose {
		order: 3;
		display: block;
		width: 126px;
		margin: 28px auto 0;
		padding: 10px 14px;
		border: 1px solid #dddddd;
		border-radius: 24px;
		background: #ffffff;
		color: var(--fudousan-muted);
		font-size: 14px;
		cursor: pointer;
	}

	.fudousanHF-menuClose span {
		margin-right: 8px;
		font-size: 18px;
	}

	.fudousanHF-preFooter {
		min-height: 0;
		padding: 72px 20px 92px;
	}

	.fudousanHF-preFooter__categories {
		flex-wrap: wrap;
		gap: 9px;
	}

	.fudousanHF-preFooter__categories li {
		width: 66px;
		height: 66px;
		font-size: 12px;
	}

	.fudousanHF-preFooter__title {
		margin: 24px 0 28px;
		font-size: 24px;
	}

	.fudousanHF-preFooter__actions {
		grid-template-columns: 1fr;
		max-width: 430px;
	}

	.fudousanHF-preFooter__action {
		min-height: 82px;
	}

	.fudousanHF-preFooter__action--phone {
		border-radius: 13px 13px 0 0;
	}

	.fudousanHF-preFooter__action--contact {
		border-top: 1px solid #ffffff;
		border-left: 0;
		border-radius: 0 0 13px 13px;
	}

	.fudousanHF-footer__main {
		padding: 45px 20px 30px;
	}

	.fudousanHF-footer__navigation {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.fudousanHF-footer__columnTitle {
		margin-bottom: 8px;
	}

	.fudousanHF-footer__brand {
		margin-top: 45px;
	}

	.fudousanHF-logo--footer {
		width: min(280px, 82vw);
	}

	.fudousanHF-footer__contacts {
		grid-template-columns: 1fr;
		max-width: 430px;
	}

	.fudousanHF-footer__contact--phone {
		border-radius: 12px 12px 0 0;
	}

	.fudousanHF-footer__contact--mail {
		border-top: 1px solid #ffffff;
		border-left: 0;
		border-radius: 0 0 12px 12px;
	}

	.fudousanHF-footer__copyright {
		padding-bottom: 80px;
		font-size: 10px;
	}

	.fudousanHF-fixedContact {
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		background: #ffffff;
		box-shadow: 0 -5px 18px rgb(0 0 0 / 16%);
	}

	.fudousanHF-fixedContact__phone,
	.fudousanHF-fixedContact__mail {
		display: flex !important;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		gap: 8px;
		width: auto;
		height: 66px;
		padding: 7px 8px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		color: #ffffff !important;
		font-size: 13px;
		font-weight: 700;
		line-height: 1.25;
	}

	.fudousanHF-fixedContact__phone {
		background: var(--fudousan-yellow);
	}

	.fudousanHF-fixedContact__mail {
		background: var(--fudousan-red);
	}

	.fudousanHF-fixedContact__phone svg,
	.fudousanHF-fixedContact__mail svg {
		width: 24px;
		height: 24px;
		margin: 0;
	}

	.fudousanHF-fixedContact__phone small,
	.fudousanHF-fixedContact__mail small {
		display: block;
		font-size: 9px;
		font-weight: 500;
	}

	.fudousanHF-fixedContact__phone:hover,
	.fudousanHF-fixedContact__phone:focus-visible,
	.fudousanHF-fixedContact__mail:hover,
	.fudousanHF-fixedContact__mail:focus-visible {
		filter: brightness(0.9);
		color: #ffffff !important;
	}
}

@media (max-width: 430px) {
	.fudousanHF-header__copy {
		font-size: 12px;
	}

	.fudousanHF-preFooter__categories {
		max-width: 250px;
		margin-inline: auto;
	}

	.fudousanHF-preFooter__title {
		font-size: 21px;
	}

	.fudousanHF-preFooter__action strong {
		font-size: 19px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fudousanHF-header *,
	.fudousanHF-preFooter *,
	.fudousanHF-footer *,
	.fudousanHF-fixedContact * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
