/* ダイアログを画面中央に表示 */
.change-origin-notice {
	position: fixed;
	inset: 0;
	margin: auto;
	padding: 0;
	border: none;
	border-radius: 0.5em;
	box-shadow: 0.5em 0.5em 3em rgba(0, 0, 0, 0.25);
	max-width: 90%;
	transition: 0.6s ease-in;
}
.change-origin-notice::backdrop {
	background: rgba(0, 0, 0, 0.65);
	transition: 0.6s ease-in;
}
.change-origin-notice[data-closed='true'],
.change-origin-notice[data-closed='true']::backdrop {
	opacity: 0;
	visibility: hidden;
}

.change-origin-notice__content {
	padding: 3em 2em;
	background: #fff;
}

.change-origin-notice__title {
	display: block;
	margin: 0 0 1em;
	font-size: 2em;
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	text-align: center;
}

.change-origin-notice__text {
	margin: 0 0 1em;
	line-height: 1.7;
}

.change-origin-notice__url {
	margin: 0 auto 4em !important;
	width: fit-content;
	font-size: 1.2em;
	word-break: auto-phrase;
	text-wrap: balance;
}
.change-origin-notice__url del {
	font-style: italic;
	text-decoration: line-through;
}
.change-origin-notice__url a {
	font-weight: bolder;
	text-decoration: none;
}

.change-origin-notice__close {
	display: block;
	margin: 0 auto;
	padding: 0.5em 2em;
	font-size: 0.85em;
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	color: #fff;
	background: #333;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.change-origin-notice__close:hover {
	background: #555;
}
