
.item {
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	max-height: 500vh;
	transition: opacity 2s ease, visibility 2s ease, max-height 2s;
}

.hide {
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

.access-count {
	text-align: right;
	font-size: 12px;
	color: #555;
	font-style: italic;
}

#form2 input[type=radio] + label.checkbox::before {
	border-radius: 50%;
}
#form2 input[type=radio]:checked + label.checkbox::after {
	opacity: 1;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: black;
	transform: none;
	top: calc(50% + 3px);
	left: 9px;
}
@media screen and (max-width: 768px) {
	#form2 input[type=radio]:checked + label.checkbox::after {
		width: 8px;
		height: 8px;
		top: calc(50% + 2px);
		left: 8px;
	}
}

.sns-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
	img {
		height: 80px;
	}
}
.error {
	color: red;
	padding: 4px 0;
	font-size: 0.9rem;
	font-weight: bold;
	animation: customBlink 1.4s infinite;
}
@keyframes customBlink {
	0% { opacity: 1; }
	71.43% { opacity: 1; }
	85.71% { opacity: 0.3; }
	100% { opacity: 1; }
}
