/**
 * Modal Styles
 * 配送情報モーダル用スタイル
 */
.feedback-index{
	.information{
		padding: 20px;
	}
}
.information{
	margin-bottom: 0;
	max-width: 1300px;
	padding-block: 20px;
	.information__text{
		font-size: 18px;
	}
	.information__inner{
		background-color: #EEF2F4;
		padding: 10px 10px;
		width: 100%;
		text-align: center;
		button{
			background: none !important;
			border: none !important;
			padding: 0 !important;
			margin: 0 !important;
			color: inherit !important;
			cursor: pointer !important;
			outline: inherit !important;
			text-decoration: underline;
			font-weight: 700;
			&:hover{
				opacity: 0.7;
			}
		}
	}
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	background-color: #fff;
	border-radius: 8px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	padding: 40px 30px 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.modal-overlay.is-active .modal-container {
	transform: translateY(0);
	font-family: Arial, Helvetica, sans-serif;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	color: #666;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s ease;
}

.modal-close:hover {
	color: #000;
}

.modal-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.modal-text {
	font-size: 14px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 25px;
}

.modal-link-section {
	background-color: #f8f8f8;
	padding: 20px;
	border-radius: 6px;
}

.modal-link-text {
	font-size: 14px;
	color: #444;
	margin-bottom: 15px;
}

.modal-link-label {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}

.modal-link {
	display: inline-block;
	color: #0066cc;
	text-decoration: underline;
	font-size: 14px;
	transition: color 0.2s ease;
}

.modal-link:hover {
	color: #004499;
}

@media screen and (max-width: 768px) {
	.modal-container {
		padding: 30px 20px 20px;
	}
	.modal-title {
		font-size: 16px;
	}
	.modal-text,
	.modal-link-text,
	.modal-link-label,
	.modal-link {
		font-size: 13px;
	}
}

