/*
Theme Name: Clover Oita
Theme URI: https://cloveroita.com/
Author: Clover Oita
Description: グループホーム クローバー専用のPHP 8.3対応オリジナルテーマ
Version: 1.2.6
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: clover-oita
*/

:root {
	--green: #87c151;
	--green-dark: #6fa93c;
	--orange: #e8a600;
	--text: #444;
	--muted: #919191;
	--line: #e1e1e1;
	--footer: #89b83e;
	--footer-dark: #619e25;
	--container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--text);
	font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 14px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
	color: var(--green-dark);
}

button,
input,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 100px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	background: #fff;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: 117px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.98);
	transition: height 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.site-header.is-scrolled {
	height: 60px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: min(calc(100% - 100px), var(--container));
	height: 100%;
	margin-inline: auto;
}

.site-logo {
	display: flex;
	align-items: center;
	height: 75px;
	transition: height 0.4s ease-in-out;
}

.site-logo img {
	width: 210px;
	transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.site-header.is-scrolled .site-logo {
	height: 59px;
}

.site-header.is-scrolled .site-logo img {
	width: 170px;
}

.primary-navigation {
	display: flex;
	align-items: flex-start;
	height: 60px;
}

.site-menu,
.footer-menu {
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu > li {
	position: relative;
}

.site-menu > li > a {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 16px;
	color: #676767;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.site-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--green);
	content: "";
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.site-menu > li.current-menu-item > a,
.site-menu > li.current_page_item > a,
.site-menu > li > a:hover {
	color: #333;
}

.site-menu > li.current-menu-item > a::after,
.site-menu > li.current_page_item > a::after,
.site-menu > li > a:hover::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background: #555;
	transform-origin: center;
	transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

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

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

.page-main {
	min-height: 420px;
	padding: 50px 0 90px;
}

.section {
	padding: 55px 0 65px;
}

.section-title {
	margin: 0;
	color: var(--green);
	font-size: 20px;
	font-weight: 400;
	text-align: center;
}

.short-rule {
	width: 50px;
	height: 1px;
	margin: 24px auto 45px;
	background: var(--green);
}

.center {
	text-align: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border: 0;
	border-radius: 4px;
	background: var(--orange);
	color: #fff;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
	background: #cf9400;
	color: #fff;
	transform: translateY(-1px);
}

.button span {
	margin-left: 10px;
	font-size: 20px;
	line-height: 0;
}

.button-large {
	padding: 15px 28px;
	font-size: 16px;
}

/* Front page */
.home-hero {
	min-height: 735px;
	padding-top: 70px;
	background-image: url("assets/images/27542356.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: auto 260px;
}

.home-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	column-gap: 45px;
}

.hero-message {
	width: 100%;
}

.hero-house {
	width: 359px;
	margin: 0 auto;
}

.hero-copy {
	align-self: start;
	padding: 35px 0 0 50px;
	font-size: 15px;
}

.hero-copy p {
	max-width: 530px;
	margin: 0;
}

.hero-action {
	align-self: start;
	padding-top: 30px;
	text-align: center;
}

.home-gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1px;
	margin-bottom: 40px;
}

.home-gallery img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.home-gallery a,
.facility-gallery a {
	position: relative;
	display: block;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
}

.home-gallery a::after,
.facility-gallery a::after {
	position: absolute;
	inset: 0;
	display: grid;
	background: rgba(112, 169, 60, 0.66);
	color: #fff;
	content: "+";
	font-size: 36px;
	opacity: 0;
	place-items: center;
	transition: opacity 0.4s ease-in-out;
}

.home-gallery a img,
.facility-gallery a img {
	transition: transform 0.7s ease;
}

.home-gallery a:focus-visible,
.facility-gallery a:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
	.home-gallery a:hover::after,
	.facility-gallery a:hover::after {
		opacity: 1;
	}

	.home-gallery a:hover img,
	.facility-gallery a:hover img {
		transform: scale(1.06);
	}
}

.home-news {
	padding-bottom: 90px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}

.news-card {
	position: relative;
	padding-top: 105px;
}

.news-icon {
	position: absolute;
	top: 0;
	left: 50%;
	display: grid;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #fafafa;
	color: #ddd;
	font-size: 30px;
	place-items: center;
	transform: translateX(-50%);
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.news-icon:hover,
.news-icon:focus-visible {
	background: var(--green);
	color: #fff;
	transform: translateX(-50%) scale(1.08);
}

.news-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 400;
}

.news-card-links,
.news-card time {
	display: inline-block;
	color: #aaa;
	font-size: 11px;
}

.news-card-links a + a,
.news-card-links > a:last-child {
	margin-left: 8px;
}

.news-card time {
	display: block;
	margin-top: 18px;
}

/* About */
.about-page {
	padding-top: 70px;
}

.philosophy-image {
	width: 800px;
	margin: 0 auto 50px;
}

.about-lead-image {
	width: 760px;
	margin: 0 auto 70px;
}

.about-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
}

.lined-heading {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0 0 32px;
	font-size: 20px;
	font-weight: 400;
}

.lined-heading::after {
	flex: 1;
	height: 1px;
	background: var(--line);
	content: "";
}

.icon-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.icon-list li {
	position: relative;
	min-height: 35px;
	padding: 1px 0 22px 27px;
}

.icon-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	color: #777;
	font-size: 14px;
	content: "♥";
}

.life-list li::before {
	content: "✎";
}

.icon-list strong {
	display: block;
	font-weight: 400;
}

.icon-list small {
	display: block;
	margin-top: 6px;
	font-size: 13px;
}

/* Facility */
.facility-page {
	padding-top: 62px;
}

.facility-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
	gap: 40px;
}

.green-label {
	margin: 0 0 30px;
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
}

.data-table {
	width: 100%;
	margin: 0 0 35px;
	border-collapse: collapse;
	font-size: 14px;
}

.data-table th,
.data-table td {
	padding: 14px 16px;
	border: 1px solid #ddd;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
}

.data-table th {
	width: 50%;
}

.facility-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 50px 0;
}

.facility-gallery img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.facility-side ul,
.facility-primary ul {
	padding-left: 20px;
}

.facility-side li,
.facility-primary li {
	margin: 5px 0;
}

.equipment-table th {
	width: 36%;
}

.map-embed {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 24px;
	padding-top: 52%;
	background: #f3f3f3;
}

.map-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.facility-page > .center {
	margin: 55px 0 0;
}

/* Contact */
.contact-inner {
	max-width: 680px;
}

.phone-contact {
	padding: 0 0 50px;
	text-align: center;
}

.centered-heading {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	margin: 0 0 32px;
	font-size: 20px;
	font-weight: 400;
}

.centered-heading::before,
.centered-heading::after {
	flex: 1;
	height: 1px;
	background: var(--line);
	content: "";
}

.phone-contact img {
	width: 300px;
	margin: 0 auto 35px;
}

.contact-form-section h2 {
	margin: 0 0 22px;
	font-size: 20px;
}

.contact-form p {
	margin: 0 0 24px;
}

.contact-form label {
	display: block;
	margin-bottom: 7px;
	font-weight: 600;
}

.contact-form label span {
	color: var(--green);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--green);
	outline: 2px solid rgba(135, 193, 81, 0.15);
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.form-message {
	padding: 12px 16px;
	border-left: 4px solid;
	background: #f5f5f5;
}

.form-message.success {
	border-color: var(--green);
}

.form-message.error {
	border-color: #b52929;
}

/* Simple pages and posts */
.prose,
.posts-container {
	max-width: 880px;
}

.posts-layout {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
	gap: 70px;
}

.posts-layout .posts-container {
	max-width: none;
	min-width: 0;
}

.prose h1,
.single-post h1 {
	margin: 0 0 35px;
	font-size: 22px;
	font-weight: 400;
}

.prose p,
.prose li,
.post-content,
.post-excerpt {
	line-height: 1.9;
}

.news-sidebar {
	padding: 0 0 0 42px;
	border-left: 1px solid #e5e5e5;
}

.news-sidebar section {
	margin-bottom: 50px;
}

.news-sidebar h2 {
	margin: 0 0 14px;
	font-size: 20px;
}

.news-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-sidebar li {
	padding: 8px 0;
	border-bottom: 1px solid #ddd;
	color: #888;
	line-height: 1.45;
}

.news-sidebar time {
	font-size: 12px;
}

.prose ul {
	padding-left: 22px;
}

.prose li {
	margin-bottom: 12px;
}

.post-list-item {
	margin-bottom: 55px;
	padding-bottom: 55px;
	border-bottom: 1px solid #e8e8e8;
}

.post-list-item h2 {
	margin: 0 0 5px;
	font-size: 22px;
	font-weight: 400;
	overflow-wrap: anywhere;
}

.post-list-item h2 a {
	display: block;
	max-width: 100%;
}

.post-content,
.news-sidebar a {
	overflow-wrap: anywhere;
}

.post-category {
	margin-bottom: 25px;
	color: var(--green);
	font-size: 11px;
}

.post-thumbnail,
.single-thumbnail {
	display: block;
	margin: 0 0 26px;
}

.post-thumbnail img,
.single-thumbnail img {
	width: 100%;
}

.post-meta {
	margin-top: 22px;
	color: #999;
	font-size: 11px;
}

.pagination .nav-links,
.post-navigation {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.pagination .page-numbers {
	display: inline-grid;
	min-width: 35px;
	height: 35px;
	padding: 0 10px;
	border-radius: 50%;
	place-items: center;
}

.pagination .current {
	background: var(--green);
	color: #fff;
}

.single-post h1 {
	margin-bottom: 8px;
}

.post-content img {
	max-width: 100%;
	height: auto;
}

/* Enfold-compatible motion, implemented without the page builder. */
.motion-ready .reveal-rtl {
	opacity: 0;
}

.motion-ready .reveal-rtl.is-visible {
	animation: clover-rtl 0.8s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.motion-ready .reveal-masonry {
	perspective: 600px;
}

.motion-ready .reveal-masonry > .reveal-item {
	opacity: 0;
	visibility: hidden;
}

.motion-ready .reveal-masonry > .reveal-item.is-visible {
	animation: clover-masonry-show 0.8s 1 cubic-bezier(0.175, 0.885, 0.32, 1.075) both;
	animation-delay: var(--reveal-delay, 0ms);
	visibility: visible;
}

@keyframes clover-rtl {
	from {
		opacity: 0;
		transform: translateX(10%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes clover-masonry-show {
	from {
		opacity: 0.1;
		transform: translateZ(300px) translateY(200px) rotateX(-70deg);
	}
	to {
		opacity: 1;
		transform: translateZ(0) translateY(0) rotateX(0);
	}
}

/* Accessible image lightbox. */
.lightbox-open {
	overflow: hidden;
}

.lightbox-open .home-gallery a::after,
.lightbox-open .facility-gallery a::after {
	opacity: 0 !important;
}

.lightbox-open .home-gallery a img,
.lightbox-open .facility-gallery a img {
	transform: none !important;
}

.clover-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	padding: 45px 70px;
	background: rgba(0, 0, 0, 0.88);
	opacity: 1;
	place-items: center;
	transition: visibility 0s linear 0.3s;
	isolation: isolate;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	visibility: hidden;
}

.clover-lightbox.is-open {
	opacity: 1;
	transition-delay: 0s;
	visibility: visible;
}

.clover-lightbox figure {
	max-width: min(100%, 1100px);
	max-height: 100%;
	margin: 0;
	color: #fff;
	opacity: 0;
	transform: scale(0.94);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.clover-lightbox.is-open figure {
	opacity: 1;
	transform: scale(1);
}

.clover-lightbox.is-open figure.is-changing {
	opacity: 1;
	transform: scale(0.995);
}

.clover-lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 135px);
	margin: auto;
	background: transparent;
	box-shadow: 0 12px 45px rgba(0, 0, 0, 0.45);
	filter: none !important;
	image-rendering: auto;
	mix-blend-mode: normal;
	opacity: 1;
}

.clover-lightbox figcaption {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 12px;
	font-size: 13px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	z-index: 1;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 38px;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s ease, transform 0.2s ease;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
	opacity: 1;
	transform: scale(1.1);
}

.lightbox-close {
	top: 14px;
	right: 18px;
}

.lightbox-prev,
.lightbox-next {
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: 10px;
}

.lightbox-next {
	right: 10px;
}

.scroll-top {
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 90;
	display: grid;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.48);
	color: #fff;
	font-size: 25px;
	opacity: 0;
	pointer-events: none;
	place-items: center;
	transform: translateY(12px);
	transition: background 0.25s ease, opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
	background: var(--green-dark);
	color: #fff;
}

/* Footer */
.footer-main {
	padding: 50px 0 38px;
	background: var(--footer) url("assets/images/bg_f.jpg") bottom center no-repeat;
	background-size: auto 100%;
	color: #fff;
}

.contact-form .button {
	background: var(--green);
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
	background: var(--green-dark);
}

.footer-logo {
	width: 260px;
	margin-bottom: 20px;
}

.footer-main p {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
}

.footer-bottom {
	padding: 18px 0;
	background: var(--footer-dark);
	color: #e8f0df;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom small,
.footer-menu a {
	font-size: 11px;
}

.footer-menu li + li::before {
	margin: 0 10px;
	content: "/";
}

.footer-menu a:hover {
	color: #fff;
}

@media (max-width: 989px) {
	body.menu-open {
		overflow: hidden;
	}

	.container,
	.header-inner {
		width: min(calc(100% - 50px), var(--container));
	}

	.site-header {
		height: 90px;
	}

	.site-header.is-scrolled {
		height: 90px;
	}

	.site-logo {
		height: 90px;
	}

	.site-header.is-scrolled .site-logo {
		height: 90px;
	}

	.site-logo img {
		width: 190px;
	}

	.site-header.is-scrolled .site-logo img {
		width: 190px;
	}

	.menu-toggle {
		position: relative;
		z-index: 102;
		display: block;
		align-self: center;
	}

	.primary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 350px;
		max-width: 100%;
		height: 100vh;
		padding-top: 90px;
		background: #fff;
		box-shadow: none;
		pointer-events: none;
		transform: translateX(100%);
		transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.75, 0, 0.25, 1), visibility 0.5s;
		visibility: hidden;
	}

	.primary-navigation.is-open {
		box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.3), -12px 0 28px rgba(0, 0, 0, 0.12);
		pointer-events: auto;
		transform: translateX(0);
		visibility: visible;
	}

	.site-menu {
		display: block;
	}

	.site-menu > li > a {
		height: auto;
		padding: 18px 50px;
		border-bottom: 1px solid #eee;
	}

	.site-menu > li > a::after {
		display: none;
	}

	.home-hero {
		min-height: 650px;
		padding-top: 50px;
	}

	.hero-copy {
		padding-left: 15px;
	}

	.about-columns {
		gap: 40px;
	}

	.facility-layout {
		grid-template-columns: 1.6fr 1fr;
		gap: 28px;
	}

	.facility-gallery {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 14px;
	}

	.container,
	.header-inner {
		width: min(calc(100% - 32px), var(--container));
	}

	.site-header {
		height: 80px;
	}

	.site-header.is-scrolled {
		height: 80px;
	}

	.site-logo {
		height: 80px;
	}

	.site-header.is-scrolled .site-logo {
		height: 80px;
	}

	.site-logo img {
		width: 165px;
	}

	.site-header.is-scrolled .site-logo img {
		width: 165px;
	}

	.primary-navigation {
		top: 0;
		padding-top: 80px;
	}

	.page-main {
		padding: 40px 0 65px;
	}

	.section {
		padding: 45px 0 55px;
	}

	.home-hero {
		min-height: 0;
		padding: 34px 0 180px;
		background-size: auto 180px;
	}

	.home-hero-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.hero-message {
		width: 92%;
		margin: 0 auto;
	}

	.hero-house {
		width: min(66%, 280px);
	}

	.hero-copy {
		padding: 20px 0 0;
		text-align: center;
	}

	.hero-action {
		padding-top: 10px;
	}

	.home-gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.news-card {
		padding-top: 0;
		padding-left: 85px;
	}

	.news-icon {
		top: 0;
		left: 0;
		width: 62px;
		height: 62px;
		transform: none;
	}

	.philosophy-image {
		margin-bottom: 30px;
	}

	.about-lead-image {
		margin-bottom: 45px;
	}

	.about-columns,
	.facility-layout,
	.posts-layout {
		grid-template-columns: 1fr;
	}

	.news-sidebar {
		padding: 40px 0 0;
		border-top: 1px solid #e5e5e5;
		border-left: 0;
	}

	.about-columns {
		gap: 50px;
	}

	.icon-list li {
		padding-left: 42px;
	}

	.facility-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.data-table th,
	.data-table td {
		padding: 12px 9px;
	}

	.centered-heading::before,
	.centered-heading::after {
		display: none;
	}

	.footer-bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.clover-lightbox {
		padding: 55px 16px 30px;
	}

	.lightbox-prev,
	.lightbox-next {
		width: 40px;
		height: 56px;
		background: rgba(0, 0, 0, 0.35);
		font-size: 30px;
	}

	.clover-lightbox figcaption {
		padding-inline: 4px;
	}

	.scroll-top {
		right: 18px;
		bottom: 18px;
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}

	.motion-ready .reveal-rtl,
	.motion-ready .reveal-masonry > .reveal-item {
		opacity: 1;
		transform: none;
		visibility: visible;
	}
}
