
@charset "utf-8";

h3{
	text-align: left;
	margin-top: 73px;
	margin-bottom: 25px;
}
p{
	line-height: 30px;
}

.information {
	margin: 0 auto;
	text-align: center;
}

.information__tab-label {
	display: inline-block;
	margin: 0 calc(20 / 1000 * 100%) 0 0;
    padding: 1rem 0;
    width: calc(300 / 1000 * 100%);
	color: #232323;
	text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
	background-color: #ffffff;
	border: 2px solid #232323;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
    .information__tab-label {
		font-size: 2.13vw;
	}
}

.information__tab-label:last-of-type {
	margin: 0;
}

.information__tab-label:hover {
    color: #ffffff;
	background-color: #232323;
	transition: all .4s ease-in-out;
}

input#tab1:checked ~ .information__tab-label--privaciy,
input#tab2:checked ~ .information__tab-label--cookie {
	color: #ffffff;
    background-color: #232323;
}

input#tab1:checked ~ .information__content .information__text--privaciy,
input#tab2:checked ~ .information__content .information__text--cookie {
	display: block;
}

input[type="radio"] {
	display: none;
}

.information__content {
	padding: calc(75 / 1000 * 100%) 0 0;
	text-align: left;
}

.information__text {
	display: none;
}

.information__text--right {
	text-align: right;
}

@media screen and (max-width: 768px) {
	.information__tab-label {
		min-width: 44%;
	}
}