@charset "UTF-8";

/* VPS移行告知バナー（一時表示用） */

.ttc-maintenance-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75em;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #0d5644;
	color: #8ce2d5;
	padding: 1em 1.2em;
	text-align: left;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ttc-maintenance-banner__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	font-size: 28px;
	line-height: 1;
}

.ttc-maintenance-banner__icon svg {
	width: 100%;
	height: 100%;
}

.ttc-maintenance-banner__text {
	margin: 0;
	font-size: 17px;
	line-height: 1.5;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: bold;
}

@media screen and (max-width: 599px) {
	.ttc-maintenance-banner {
		padding: 0.9em 1em;
		gap: 0.6em;
	}
	.ttc-maintenance-banner__icon {
		width: 30px;
		height: 30px;
		font-size: 24px;
	}
	.ttc-maintenance-banner__text {
		font-size: 15px;
	}
}
