@charset "utf-8";
/*
Theme Name: urateno_v02
*/

@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
	margin: 0px;
	padding: 0px;
}

body {
	background-color: rgba(158, 76, 159, 0.75);
	font-family: Lato, "Noto Sans JP", "メイリオ", sans-serif;
}

a {
	text-decoration: none;
	font-weight: bold;
	color: #2f2f2f;
}

header {
	position: sticky;
	top: 0px;
	z-index: 9999;
}

footer {
	margin-top: 1rem;
	background-color: #e9e9e9;
	padding: 1rem;
}

h2.title {
	text-align: center;
	line-height: 1rem;
}

.text_english {
	font-size: 1rem;
}

.text_japanese {
	font-size: 0.5rem;
}

.header_box {
	position: relative;
	width: calc(100% - 1rem * 2);
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.5);
}

.logo {
	width: 24rem;
	height: 4rem;
}

ul, li {
	display: inline-block;
}

.nav_btn {
	display: none;
	text-align: center;
	background-color: #ffffff;
	width: 2rem;
	height: 2rem;
	padding: 0.5rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.main_menu {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
}

.large_box {
	background-color: #555555;
}

.content_box {
	padding: 1rem;
	color: #ffffff;
}

.img_large img {
	width: 100%;
	height: 75vh;
	object-fit: cover;
}

.meta_date {
	font-size: 2rem;
	text-align: right;
}

.hello_box {
	padding: 1rem;
	background-image: linear-gradient(
		-45deg, #ffffff 25%,
		#e6e6e6 25%, #e6e6e6 50%,
		#ffffff 50%, #ffffff 75%,
		#e6e6e6 75%, #e6e6e6
	);
	background-size: 4rem 4rem;
}

.p_box_while {
	word-wrap: break-word;
	display: block;
	width: calc(100% - 1rem * 2);
	padding: 1rem;
	background-color: #ffffff;
}
.medium_box {
	max-width: calc(1024px - 1rem * 2);
	margin: 0px auto;
}

.medium_box ul {
	width: 100%;
	margin-top: 1rem;
}

.medium_box li {
	width: calc(100% / 3 - 1rem * 2 - 4px);
	display: inline-block;
	vertical-align: top;
	margin: 0px 1rem 1rem 1rem;
}

.content_div {
	background-color: #e6e6e6;
}

.content_p_box {
	text-align: left;
	width: calc(100% - 1rem * 2);
	padding: 1rem;
}

.layer_box img {
	object-fit: cover;
	width: calc(100% - 1rem * 2);
	margin: 1rem 1rem 0px 1rem;
}

.tag {
	background-color: #333333;
	border-radius: 1rem 0px 0px 1rem;
	width: 10rem;
	padding: 0.25rem 0px 0.25rem 0.5rem;
}

.tag a {
	color: #ffffff;
}

.event {
	background-color: #4488ff;
}

.notice {
	background-color: #22af22;
}

.report {
	background-color: #af2222;
}
.layer_box {
	position: relative;
}

.content_layer {
	position: absolute;
	width: 100%;
	height: 0px;
	opacity: 0;
	transition: 1.0s;
}

.content_layer p {
	color: #ffffff;
	margin: calc(100% / 2 - 1rem / 2) auto;
	text-align: center;
	font-size: 2rem;
}

.layer_box:hover .content_layer {
	height: 100%;
	opacity: 1;
	background-color: rgba(175, 75, 75, 0.75);
	transition: 1.0s;
}

@media screen and (min-width:1px) and ( max-width:375px) {
	.logo {
		width: 16rem;
		height: 4rem
	}
	.nav_btn {
		display: block;
	}
	.main_menu {
		display: none;
		position: relative;
		top: 0px;
		left: 0px;
	}
	.main_menu ul {
		width: 100%;
		text-align: center;
	}
	.main_menu li {
		display: block;
		width: 100%;
	}
	.medium_box li {
		width: calc(100% - 1rem * 2);
		display: inline-block;
		vertical-align: top;
		margin: 0px 1rem 1rem 1rem;
	}

}
@media screen and (min-width:376px) and ( max-width:768px) {
	.logo {
		width: 16rem;
		height: 4rem
	}
	.nav_btn {
		display: block;
	}
	.main_menu {
		display: none;
		position: relative;
		top: 0px;
		left: 0px;
	}
	.main_menu ul {
		width: 100%;
		text-align: center;
	}
	.main_menu li {
		display: block;
		width: 100%;
	}
	.medium_box li {
		width: calc(50% - 1rem * 2 - 1rem);
		display: inline-block;
		vertical-align: top;
		margin: 0px 1rem 1rem 1rem;
	}

}
@media screen and (min-width:769px) and ( max-width:1024px) {
	
}