
main {
	text-align: center;
	box-sizing: border-box;
}

body {
	margin:0;
	padding:0;
	width:100%;
	max-width:100%;
	height: 100%;
	max-height: 100%;
}

header {
	text-align: none;
}

* {
	box-sizing: border-box;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 2em;
}

p {
	font-size: 1.5em;
}

/*NOT WORKING PROPERLY (age-verif won't collapse)*/
/*Age verifacation page START*/



#age-verif {
	
}

.age-verif {
	height: 100%;
	width: 100%;
	position: fixed;
	right: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	/*needed to move the side menu*/
	transition: width 0.5s;
}

.verif-back {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	background-color: rgba(255,255,255,1);
	z-index: 200;
}

.verif-text {
	display: flex;
	z-index: 203;
}

.enter-button {
	display: flex;
	height: 23px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	margin-top: 10px;
	z-index: 203;
	background-color: #000000;
	color: #ffffff;
}

.enter-button:hover {
	cursor: pointer;
	opacity: 0.8;
}

.verif-button {
	display: none;
}

.verif-button:checked ~ .collapse {
	display: none;
}

/*.verif-button:checked ~ .verif-back {
	height: 0;
}*/

/*Age Verification END*/

/*(position: fixed) keeps element in place even when scrolling*/
.header-pc {
	position: fixed;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
	background-color: #000000;
	z-index: 90;
}

.header-logo {
	display: flex;
	margin: 0px;
	margin-left: 30px;
}

.header-logo a {
	text-decoration-line: none;
}

.header-logo a span{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 190px;
}

.author-pc {
	font-family: "Roboto", sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: white;
	margin: 0px;
}

.official-pc {
	font-size: 16px;
	font-weight: 700;
	color: white;
	margin: 0px;
}

.header-logo a:hover {
	cursor: pointer;
	opacity: 0.8;
}

.header-nav {
	position: fixed;
	right: 50%;
	transform: translate(50%);
}

.header-nav ul {
	display: flex;
	justify-content: center;
}

.header-nav ul li a {
	font-size: 17px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	height: 50px;
	text-decoration-line: none;
	color: white;
	margin-left: 30px;
	padding-top: 12px;
}

.header-nav ul li a:hover {
	opacity: 0.8;
}

.header-inactive {
	opacity: 0.8;
}

.header-sns {
	position: fixed;
	right:0;
	padding-right: 30px;
	margin-top: 6px;
}

.header-sns ul {
	display: flex;
}

.header-sns ul li a {
	padding: 5px;
}

.header-sns ul li a img {
	width: 45px;
}

.header-sns ul li a:hover {
	cursor: pointer;
	opacity: 0.8;
}

/*MOBILE HEADER*/

.header-mobile {
	position: fixed;
	top: 0;
	width: 100%;
	height: 90px;
	display: flex;
	background-color: #000000;
	z-index: 90;
}

.mobile-logo {
	display: flex;
	margin-left: 4%;
	margin-top: 10px;
}

.mobile-logo a {
	text-decoration-line: none;
}

.mobile-logo a span{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
}

.author-mobile {
	font-family: fantasy;
	font-size: 2em;
	font-weight: 500;
	color: white;
}

.official-mobile {
	font-size: 1.3em;
	font-weight: 700;
	color: white;
}

.mobile-logo a:hover {
	cursor: pointer;
	opacity: 0.8;
}
}

/*MOBILE MENU*/

.mobile-menu {
	
}

.mobile-button {
	display: none;
}

.hamb {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: right;
	padding: 10px;
	margin-top: 30px;
	margin-right: 15px;
}

.hamb:hover {
	cursor: pointer;
}

/*create hamburger icon*/
.hamb-line {
	background: white;
	display: block;
	position: relative;
	height: 6px;
	width: 75px;
}

.hamb-line::before,
.hamb-line::after{
	background: white;
	content:'';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	transition: all .01s;
}

.hamb-line::before {
	top: -15px;
}

.hamb-line::after {
	top: 15px;
}


.side-menu {
	position: fixed;
	right: 0;
	/*hide the menu by default*/
	width: 0%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.9);
	z-index: 50;
	overflow: auto;
	/*needed to move the side menu*/
	transition: width 0.5s;
}

/*expend the menu*/
.mobile-button:checked ~ .side-menu {
	width: 50%;
}

.mobile-button:checked ~ .hamb .hamb-line {
	background: transparent;
}

.mobile-button:checked ~ .hamb .hamb-line::before {
	transform: rotate(-45deg);
	top: 0;
}

.mobile-button:checked ~ .hamb .hamb-line::after {
	transform: rotate(45deg);
	top: 0;
}

.mobile-nav {
	display: flex;
	justify-content: left;
	margin-top: 100px;
	
}

.mobile-nav ul li a:hover {
	opacity: 0.8;
}

.mobile-nav ul li a {
	font-size: 25px;
	font-weight: 600;
	text-decoration-line: none;
	display: flex;
	height: 65px;
	line-height: 25px;
	color: white;
	white-space: nowrap;
	padding-top: 6px;
	padding-right: 500px;
	padding-left: 20px;
	margin-bottom: 10px;
	margin-left: 5px;
	border: solid;
	border-color: white;
	border-width: 1.5px;
}

.mobile-sns {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

.mobile-sns ul {
	display: flex;
}

.mobile-sns ul li a {
	margin: 20px;
}

.mobile-sns ul li a img{
	width: 70px;
}

.mobile-sns ul li a:hover {
	cursor: pointer;
	opacity: 0.8;
}

@media (min-width: 1000px) {
	.header-mobile {
		display: none;
	}
}

@media (min-width: ) and (max-width:999px) {
	.header-pc {
		display: none;
	}
}

.top {
	margin-top: 90px;
}

.top-read {
	margin-top: 120px;
}

.main-title {
	margin: 0;
	font-family: fantasy;
	font-size: 50px;
	font-weight: 500;
}

.box-main {
	margin:0;
	padding:0;
	z-index: 1;
	border-bottom: solid;
	border-width: 3px;
	background-color: #ffffff;
}

.main-title {
	display: float;
}

.box-main img {
	/*display:block; got rid of space bellow the img, an inline element.*/
	display: block;
	/*centers a block element horizontaly*/
	margin: auto;
	width: 100%;
	max-width: 1000px;
}

/* Use an image instead of text for the title
.title-main {
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
	font-size: 500%;
	transform: translate (-50%);
	font-family: fantasy;
}
*/


.box-products {
	margin-top: 5px;
	padding-bottom: 100px;
	background-color: #dfdfdf;
	border: solid;
	border-width: 3px;
}

.box-products h1 {
	margin: 0px;
	margin-top: 20px;
}

.box-products h3 {
	margin: 0px;
}

.box-products ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: opx;
	margin-top: 30px;
}

.box-products ul li{
	overflow: visible;
	margin-right: 10px;
}

.box-products ul ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0px;
}

.box-products ul ul li{
	width: 190px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	margin-right: 2px;
	margin-left: 2px;
	border: solid;
	border-color: #000000;
	background-color: #ffffff;
	border-width: 1px;
}

.box-products ul ul li:hover {
	cursor: pointer;
	opacity: 0.8;
}

.box-products ul ul li img {
	display: block;
	max-width: 190px;
	max-height: 55px;
	margin: 0;
	object-fit: contain;
}

.box-goods {
	margin-top: 5px;
	padding-bottom: 100px;
	background-color: #ffffff;
	border: solid;
	border-width: 3px;
}

.box-goods h1 {
	margin: 0px;
	margin-top: 20px;
}

.box-goods h3 {
	margin: 0px;
}

.box-goods ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.box-goods ul li{
	overflow: visible;
}

.box-news {
	background-color: #dfdfdf;
	padding-bottom: 100px;
	border: solid;
	border-width: 3px;
	margin-top: 5px;
}

.box-news ul {
	background-color: #ffffff;
	display: block;
	padding: 20px;
	margin: auto;
	margin-bottom: 30px;
	width: 85%;
	height: 500px;
	border: solid;
	border-radius: 10px;
	overflow: scroll;
}

.box-news ul li {
	text-align: left;
	list-style-type: disc;
	margin-left: 30px;
	margin-bottom: 10px;
}

.box-news ul p {
	margin: 0px;
}



.button-news a{
	text-decoration-line: underline;
}

.box-free {
	margin-top: 5px;
	padding-bottom: 100px;
	background-color: #ffffff;
	border: solid;
	border-width: 3px;
}

.box-free h1 {
	margin: 0px;
	margin-top: 15px;
}

.box-free h2 {
	margin: 0px;
	margin-top: 30px;
}

.box-free h3 {
	margin: 0px;
}

.box-free p {
	font-size: 0.9em;
	margin: 0px;
	margin-top: 5px;
	overflow: ;
}

.box-free ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.box-free ul li{
	padding: 5px;
	width: 260px;
	height: 220px;
	margin-left: 10px;
	border-style: solid;
	border-width: 2px;
	border-radius: 25px;
	background-color: #dfdfdf;
}

.box-free ul li a{
	font-family: fantasy;
	font-size: 1.8em;
	font-weight: 500;
	/*center text verticaly and horizotally*/
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
}

.box-free ul li a img{
	width: 250px;
}

.box-free ul li:hover{
	cursor: pointer;
	opacity: 0.8;
}

.box-mail {
	margin-top: 5px;
	padding-bottom: 300px;
	background-color: #dfdfdf;
	border: solid;
	border-width: 3px;
}

.box-mail h1 {
	margin: 0px;
	margin-top: 15px;
}

.box-mail h3 {
	margin: 0px;
}

.box-mail p {
	font-size: 0.9em;
	margin: 5px;
}

.box-mail form {
	margin-top: 25px;
	margin-bottom: 50px;
}

#input-mail {
	padding: 7px;
	border-radius: 2px;
	width: 380px;
	height: 50px;
	font-size: 20px;
}

#input-subscribe {
	padding: 5px;
	border-radius: 2px;
	width: 70px;
	height: 50px;
	font-size: 24px;
}

#input-subscribe:hover {
	opacity: 0.7;
}

.footer-sns {
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer {
	
}

.footer-sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-sns ul li a {
	padding: 5px;
}

.footer-sns ul li a:hover {
	cursor: pointer;
	opacity: 0.8;
}

.legals {
	display: flex;
	align-items: center;
	min-height: 50px;
	max-height: ;
	background-color: #000000;
}

.legals p {
	color: white;
	margin-left: 20px;
}

.social-icon {
	width: 35px;
	padding: 5px;
}

.products-img {
	width: 400px;
	margin-right: 0px;
	border: solid;
	border-color: #000000;
	border-width: 1px;
}

.logo {
	width: 125px;
}

.read_logo {
	width: 250px;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none; /*remove bullets*/
}


/*signup.php*/
.signup-box {
	min-height: 90vh;
	max-height: 100vh;
	width: 100%;
}

.signup-text {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 75vh;
	font-size: 3vw;
}

/*unsubscribe*/
.box-unsub {
	min-height: 75vh;
	max-height: 85vh;
	width: 100%;
	background-color: #0000;
}

.box-unsub h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0px;
	margin-top: 15px;
}

.box-unsub h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0px;
}

.box-unsub p {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 0.9em;
	margin: 5px;
}

.box-unsub form {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 25px;

}

#input-mail {
	padding: 7px;
	border-radius: 2px;
	width: 380px;
	height: 50px;
	font-size: 20px;
}

#input-unsub {
	padding: 5px;
	border-radius: 2px;
	width: 110px;
	height: 50px;
	font-size: 24px;
}

#input-unsub:hover {
	opacity: 0.7;
}