html,body {
  overscroll-behavior-y: none;
}

.main-area {
	overflow: hidden;
	max-width: 100%;
}

.document-list {
	background-color: var(--gray-color1);
	padding: 5vh 0;
	margin-top: 5vh;
}

.logo-lists {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
	column-gap: 1vw;
	grid-row-gap: 10px;
}

.logo-lists li {
	background-color: #fff;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 130px;
}

.logo-lists li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	position: relative;
}

.logo-lists li a .label {
	position: absolute;
	width: fit-content;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #CB4042;
	border-radius: 15px 0 0 0 ;
	padding: 1px 5px;
	font-size: 12px;
	color: #fff;
}

.logo-lists li a img {
	width: 65%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup {
	width: 25vw;
	box-sizing: border-box;
	background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translate(0, 0);
	pointer-events: none;
	transition: opacity 0.3s;
}

.popup.selected {
	opacity: 1;
}

h2.tip-title {
	border-bottom: 1px solid #252525;
	font-weight: 500;
}

h2.tip-title span.small {
	display: inline-block;
	font-size: 14px;
	margin-left: 1.5px;
}

p.tip-text {
	font-size: 14px;
	line-height: 24px;
	margin-top: 10px;
}

/*.modal-area .modal {
	max-height: 70vh;
}

.modal-area .modal .content-text {
	max-height: 85%;
}*/

.modal-area .modal, .modal-area .modal .content-text {
	height: auto;
}

.modal-area .modal .download-btn {
	display: block;
	width: fit-content;
	background-color: #fff;
	border: 1px solid #006eb6;
	border-radius: 5px;
	margin: 0 auto;
	margin-top: 5vh;
	font-size: 14px;
	color: #006eb6;
	font-weight: 500;
	padding: 5px 10px;
	transition: all 0.3s;
}

.modal-area .modal .download-btn:hover {
	background-color: #006eb6;
	color: #fff;
}