@charset "utf-8";

body {
	margin: 0;
	background: url(/assets/img/bg.jpg);
}
.contents {
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#navTgl:checked ~ .contents {
	transform: translateX(250px);
}
header {
  height: 300px;
  background-image: url('../title/190313.png');
  background-size: cover;
}
header .h1 {
	text-shadow:
	  black 1px 1px 2px, black -1px 1px 2px,
		black 1px -1px 2px, black -1px -1px 2px;
}
/* :::::: togglr button ::::::*/

#navTgl {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
}
.open {
	z-index: 2;
	width: 48px;
	height: 48px;
	background: lightSeaGreen;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .6s;
}
#navTgl:checked + .open {
	background: indianRed;
	transform: translateX(250px);
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
	z-index: 1;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 250px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.6);
	transform: translateX(-100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2,
.menu a {
	color: white;
}
.menu h2 {
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	font-size: .8em;
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
	display: block;
	padding: 1em 2em;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
}
#navTgl:checked ~ .menu {
	transform: none;
}

/* :::::: header, footer ::::::
header {
	box-sizing: border-box;
	text-align: center;
}
header .logo,{
	margin: 0;
	color: #553969;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	line-height: 120px;
	letter-spacing: .1em;
}
header {
	position: relative;
	margin-bottom: 40px;
}
footer {
  width: 100%;
  background: #666666;
  height: 150px;
}
footer small {
	font-size: 1em;
}*/
* footer */
footer {
    background: #ede6e6;
    padding: 20px;
}
footer ul {
    list-style-type: none;
    margin: 0 5px;
    padding: 0;
    display: flex;/*flex*/
    justify-content: flex-end;/*flex-end*/
}
footer ul li {
    margin: 0 0 0 20px;
}
footer ul li a,
footer ul li a:link,
footer ul li a:visited {
    text-decoration: none;
    font-size: 13px;
    color: #000;
}
footer ul li a:hover {
    color: #888;
}
footer p {
    margin: 0;
    text-align: center;
    color: #888;
}

/* :::::: article :::::: */
article {
	width: 100%;
	max-width: 647px;
	margin: 0 auto 100px;
	padding: 0 10px;
	box-sizing: border-box;
}
article h1 {
	width: 7em;
	height: 7em;
	margin: 0 auto;
	font-size: 1em;
	line-height: 7em;
	font-weight: normal;
	text-align: center;
	background: rgba(0,0,0,.05);
	border-radius: 50%;
}
section {
	margin: 4em 0;
}
section h2 {
	margin: 0 0 .6em;
}
figure {
	position: relative;
	margin: 0;
	padding-bottom: 3.6em;
}
figure img {
	max-width: calc(100% - 10px);
	margin-bottom: .8em;
	padding: 5px;
	vertical-align: middle;
	background: rgba(255,255,255,.6);
}
figcaption {
	font-size: .8em;
}
section .btn {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 1em 2em;
	color: white;
	background: lightSeaGreen;
	text-align: center;
	text-decoration: inherit;
	transition: background .3s;
}
section .btn:hover {
	background: indianRed;
}

.main-nav, .main {
  display: -webkit-flex;
  display: flex;
}
.main-nav li:first-child {
  margin-right: auto;
}
.main-nav a {
  margin: 10px;
  border-radius: 5px;
  background: ;/*main-navbgcolr #1e90ff*/
  color: #fff;
    display: block;
    padding: 15px;
    text-decoration: none;
}
.main-nav .logo {
  background: ; /*navlogpbackclor#4584b1*/
}
ul {
  list-style: none;
}
/* Main contents */
.main section {
  -webkit-flex: 1;
  flex: 1;
  margin: 10px;
  border-radius: 5px;
  background: #dcd6d9;/*ColmBGcolr*/
  padding: 15px;
}
.main .col-1 {
  -webkit-flex: 1;
  flex: 1;
}
.main .col-2 {
  -webkit-flex: 1;
  flex: 2;
}
.main .col-3 {
  -webkit-flex: 1;
  flex: 3;
}
.main .col-4 {
  -webkit-flex: 1;
  flex: 4;
}
.main h1 {
  color: #696969;/*文字*/
  font-size: 1.5rem;
}
.main p {
  margin-top: 10px;
}

/* Mobile */
@media screen and (max-width: 700px) {
    .main {
        -webkit-flex-direction: column;
    flex-direction: column;
    }
    img {
        max-width: 100%;
    }
}
/*:pager:*/
.pager {
    overflow: hidden;
  }
  .pager ul {
    list-style: none;
    position: relative;
    left: 50%;
    float: left;
  }
  .pager ul li {
    margin: 0 1px;
    position: relative;
    left: -50%;
    float: left;
  }
  .pager ul li span,
  .pager ul li a {
    display: block;
    font-size: 16px;
    padding: 0.6em 1em;
    border-radius: 3px;
  }
  .pager ul li a {
    background: #EEE;
    color: #000;
    text-decoration: none;
  }
  .pager ul li a:hover {
    background: #333;
    color: #FFF;
  }
/*g-navi*/
.g-navi {
  display: flex;
}
.g-navi h1 {
  margin: 10px 0 0 10px;
}
.g-navi nav {
  margin: 0 0 0 auto;
}
.g-navi nav ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
}
.g-navi nav ul li a,
.g-navi nav ul li a:link,
.g-navi nav ul li a:visited {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
}
.g-navi nav ul li a:hover {
  color: #888;
}