@charset "UTF-8";
/* CSS Document */


/*/_/_/_/_ HEADER */
header {
	background-color: #f00;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
h1 img {
	height: 40px;
	width: auto;
	margin: 10px;
}
h1 a {
	padding: 10px;
}

/*/_/_/_/_/ Hamberger Menu */
.l-drawer {
	margin-top: 15px;
	margin-right: 15px;
}
.l-drawer__checkbox {
	display: none;
}
/*_________ Hamberger Icon */
.l-drawer__icon {
	  cursor: pointer;
	  display: block;
	  width: 56px;
	  height: 30px;
	  position: relative;
	  right: 0;
}
.l-drawer__icon-parts, .l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
	background-color: #fff;
	display: block;
	width: 26px;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.l-drawer__icon-parts:before, .l-drawer__icon-parts:after {
	content: " ";
}
.l-drawer__icon-parts:before {
	top: 16px;
}
.l-drawer__icon-parts:after {
	top: -16px;
}
/*________ OverLay */
.l-drawer__overlay {
	background: #000;
	opacity: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
}
/*_________ Menu */
.l-drawer__menu {
	background: #a00;
	color: #000;
	max-width: 100%;
	width: 320px;
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	right: -320px;
}
.l-drawer__menu ul {
	margin: 20px;
	list-style: none;
}
.l-drawer__menu ul .l-drawer__item {
	list-style: none;
}
.l-drawer__menu ul li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 20px 0;
	border-bottom: dotted 4px #fff;
}
.l-drawer__menu ul li a::before {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: bold;
	margin-right: 4px;
}
.l-drawer__icon {
  z-index: 4;
}
.l-drawer__menu {
  z-index: 3;
}
.l-drawer__overlay {
  z-index: 2;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts {
  background: transparent;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__icon .l-drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}
.l-drawer__checkbox:checked ~ .l-drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}
.l-drawer__checkbox:checked ~ .l-drawer__menu {
  right: 0;
}
/*________ Current Page */
.current {
	color: #ff0;
	padding: 20px 0;
	border-bottom: dotted 4px #fff;
}
.current::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	margin-right: 4px;
}

/*________ Hamberger Icon After */
.l-drawer__icon-parts, .l-drawer__icon-parts:after, .l-drawer__icon-parts:before, .l-drawer__overlay, .l-drawer__menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}


/*/_/_/_/_ MAIN */


/*/_/_/_/_ FRONTAREA */
#frontarea {
	background: url("../img_base/TopBG.jpg") center center / cover no-repeat;
}
#toppageTitle {
	text-align: center;
}
#toppageTitle img {
	width: 80%;
	height: auto;
	margin-top: 15px;
}

/*/_/_/_/_ NEWS */
.news {
	padding: 10px;
}
h3 {
	background-color: #f00;
	padding: 6px;
	color: #fff;
	border-radius: 4px;
}
h4 {
	color: #f00;
	margin: 1rem 0 0.5rem 0;
	border-bottom: 2px solid #f00;
}
h4 span {
	font-weight: normal;
}
h4::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0c8";
	font-weight: bold;
	margin-right: 4px;
}
.news a {
	text-decoration: none;
	padding: 10px 0;
	display: block;
	border-bottom: 1px dotted #ccc;
	color: #333;
}
.news a::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	font-weight: bold;
	margin-right: 4px;
}


/*/_/_/_/_ FOOTER */
footer {
	width: 100%;
	background-color: #000;
	text-align: center;
	padding-bottom: 15px;
}
footer img {
	width: 100px;
	height: auto;
}
footer a {
	display: block;
	padding: 15px;
}
small {
	color: #999;
	font-size: smaller;
	padding: 0 15px 15px 15px;
}


/*/_/_/_/_/_/ PC */
@media only screen and (min-width: 980px) {
	body {
		background: url("../../img/body_bg.png") no-repeat;
		min-height: 100vh;
		background-attachment: fixed;
		background-size: cover;
		background-position: center;
	}
	#wrapper, header {
		width: 980px;
		margin: 0 auto;
	}
	#wrapper {
		background-color: #fff; 
		box-shadow: 5px 5px 5px #ccc;
		border-left: 1px solid #ccc;
	}
	#frontarea {
		height: 90vh;
	}
	#toppageTitle img {
		height: 80vh;
		margin-top: 4rem;
	}
	.news ul {
		list-style: none;
	}
}