@charset "utf-8";

body {
	background-color: #BEFDB3;
	color: #033609;
}
img {
	max-width: 100%;
	height: auto;
	width:auto;
	border: none;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}
div {
	overflow: hidden;
}
hr {
	clear: both;
}
a:hover {
	color: #FF0000;

}
ul,li {
	margin: 0;
	padding: 0;
}

h1 {
	text-align: center;
	color: #006633;
}
p {
	line-height: 1.8em;
}
p.center {
	text-align: center;
}
table {
	line-height: 1.8em;
	margin: 10px auto;
}
table td {
	vertical-align: top;
}
.top {
	font-weight: bold;
	text-align: right;
}
div.bottom {
	background-color: #003366;
	text-align: right;
}
div.bottom p a {
	color: #FFF;
	text-decoration: none;
}

@media screen and (min-width: 801px){

.smart_only {
	display: none;
}
.hamburger-menu {
	display: none;
}

table {
	width: 800px;
}
table td {
	padding: 5px 5px;
}
h1 {
	font-size: 30px;
}
.top {
	font-size: 12px;
}

div.chara {
	width: 800px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.chara_left {
	width: 240px;
	padding-top: 20px;
}
div.chara_right {
	width: 540px;
	text-align: left;
}
div.bottom p {
	margin: 5px 10px !important;
}

div.omake {
	width: 740px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	justify-content: center;
	grid-gap: 10px 10px;
	margin: 20px auto;
}

div.link {
	margin: 0;
	overflow: hidden;
	border-top: solid 1px #AAA;
	border-bottom: solid 1px #AAA;
	margin: 20px 0;
}
div.link ul {
	width: 800px;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 20px auto;
}
div.link ul li {
	font-size: 12px;
	padding: 3px 5px;
}

div.postscript {
	width: 800px;
	margin: 30px auto;
	background-color: #FFF;
	border: solid 3px #FF0080;
	box-sizing: border-box;
	color: #000;
}
div.postscript p {
	margin: 15px 15px;
}
p.postscript_title {
	font-weight: bold;
	color: #FF0080;
	border-bottom: solid 1px #F00;
}
p.postscript_name {
	text-align: right;
	font-weight: bold;
}



}

@media screen and (max-width:800px){

.pc_only {
	display: none;
}
div.link {
	display: none;
}
table {
	width: auto;
}
table td {
	padding: 5px 5px;
}
h1 {
	font-size: 24px;
	margin-top: 50px;
}
.top {
	font-size: 12px;
	margin: 60px 0 20px;
}
div.bottom {
	width: auto;
	margin-top: 30px;
}
div.bottom p {
	text-align: center;
	margin: 5px auto !important;
}

div.chara {
	width: auto;
	margin: 30px 0 40px;
}
div.chara_left {
	text-align: center;
}
div.chara_right {
	text-align: left;
}

div.omake {
	width: auto;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	justify-content: center;
	grid-gap: 10px 10px;
}


.menu-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	z-index: 999;
	background-color: #555;
	border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
	transition: all 0.3s;
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: all 0.3s;
}
#menu-btn-check {
	display: none;
}

.menu-content {
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 997;
	background-color: rgba(255,255,255,0.95);
	transition: all 0.3s;
	text-align: left;
	overflow: auto;
}
#menu-btn-check:checked ~ .menu-content {
	left: 20%;
}
.menu-content ul {
	padding: 70px 10px 100px;
}
.menu-content ul li {
	border-bottom: solid 1px #AAA;
	list-style: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
	color:#000;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 5%;
	top: 16px;
}

div.postscript {
	width: auto;
	margin: 30px auto;
	background-color: #FFF;
	border: solid 3px #FF0080;
	box-sizing: border-box;
	color: #000;
}
div.postscript p {
	margin: 10px 10px;
}
p.postscript_title {
	font-weight: bold;
	color: #FF0080;
	border-bottom: solid 1px #F00;
}
p.postscript_name {
	text-align: right;
	font-weight: bold;
}

}