.emergency-toptext {
	width: calc(100% - 54px);
	text-align: center;
	border: 7px solid #EA3737;
	background-color: #FFE7E7;
	padding: 20px;
}

.emergency-toptext h4 {
	color: #EA3737;
	font-size: 24px;
	font-weight: bold;
	margin: 0;
    border: none;
}

.emergency-toptext p {
	margin: 20px 0 0 0;
    text-align: left;
}



.emergency-btn {
	display: inline-block;
	width: calc(100% - 40px);
	background-color: #FFCC00;
	color: #000;
	text-align: center;
	border-radius: 20px;
	text-decoration: none;
	transition: opacity 0.3s ease;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px;
}

.emergency-btn:hover {
	opacity: 0.7;
    text-decoration: none;
    color: #000;
}



.emergency-title-h3 {
    padding: 0 0 15px 0;
    margin: 0;
    color: #000 !important;
    border: none !important;
    border-bottom: #FFCC00 4px solid !important;
    background-color: transparent !important;
    font-size: 24px  !important;
    font-weight: bold  !important;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif  !important;
}

.emergency-title-h4{
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.emergency-title-h4 span{
    color: #FFCC00;
}



.emergency-meiwa-info {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.emergency-meiwa-info li {
	margin-bottom: 10px;
}

.emergency-meiwa-info li a {
	font-weight: bold;
	color: #EA3737;
	margin-left: 10px;
    border-bottom: 1px solid #EA3737;
}
.emergency-meiwa-info li a:hover{
    opacity: 0.7;
}

.emergency-meiwa-info li span {
	color: #EA3737;
	font-size: 18px;
	margin-right: 5px;
}

.emergency-meiwa-info li:last-of-type {
	margin-bottom: 0;
}



.emergency-administration-info {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.emergency-administration-info li {
	margin-bottom: 10px;
}

.emergency-administration-info li a {
	font-weight: bold;
	color: #EA3737;
	margin-left: 10px;
    border-bottom: 1px solid #EA3737;
}
.emergency-administration-info li a:hover{
    opacity: 0.7;
}

.emergency-administration-info li span {
	color: #EA3737;
	font-size: 18px;
	margin-right: 5px;
}

.emergency-administration-info li:last-of-type {
	margin-bottom: 0;
}



.video-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* スマホ：2列（デフォルト） */
	gap: 20px;
}

/* 641px以上 */
@media only screen and (min-width: 641px) {
	.video-grid {
		grid-template-columns: repeat(3, 1fr); /* PC・タブレット：3列 */
	}
}

.video-title {
	margin: 0 0 10px 0 !important;
    padding: 0 !important;
	font-size: 18px !important;
	font-weight: bold !important;
	text-align: center !important;
    border: none !important;
    font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		"Yu Gothic",
		"Yu Gothic Medium",
		"Meiryo",
		sans-serif !important;
}

.video-embed iframe {
	width: 100%;
	height: 200px;
}



.qa-box {
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 20px;
	position: relative;
}

.qa-box:last-of-type {
	margin-bottom: 0;
}

.qa-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.qa-question {
	display: flex;
	align-items: flex-start; /* ← 重要 */
	gap: 8px;
}

.qa-label {
	flex: 0 0 1.5em; /* ← 固定幅 */
	font-weight: bold;
	line-height: 1.6;
}

.qa-label.q {
	color: #FF9900;
}

.qa-label.a {
	color: #EA3737;
}

.qa-text {
	line-height: 1.6;
}

.qa-answer {
	margin-top: 10px;
	display: none;
	animation: fadeIn 0.3s ease;
	font-weight: bold;
}

.qa-answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.qa-answer p {
	margin: 0;
	line-height: 1.6;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.qa-toggle {
	background: none;
	border: none;
	font-size: 24px;
	color: #FF9900;
	cursor: pointer;
}

.qa-toggle .icon {
	display: inline-block;
	transition: transform 0.3s ease;
	transform: rotate(0deg);
	font-size: 24px;
}

.qa-toggle.active .icon {
	transform: rotate(45deg);
}

.qa-header {
	cursor: pointer;
}