@charset "UTF-8";
@import url("/css/lpreset.css");


*, *:before, *:after {
  box-sizing: border-box;
}
body{
  font-family: sans-serif;
  background:#333;
}
a{
  text-decoration: none;
}
img{
  vertical-align: bottom;
  backface-visibility: hidden;
}
#wrapper{
  overflow: hidden;
  max-width:1000px;
  margin:0 auto;
  background:#eee;
}

/*-------------------------------

  header

-------------------------------*/
header{
  height:494px;
  position: relative;
  background: url(/img/zunchiku-back.png) center / cover no-repeat;
}
h1 img{
  position: absolute;
  top:20px;
  right:50%;
  transform: translateX(50%);
  width:300px;
  height:100px;
}
header div{
}
header div img{
  position: absolute;
  height:494px;
  right:50%;
  transform: translateX(50%);
  animation: change-img-anim 8s infinite;
}
header div img:nth-of-type(1) {
  animation-delay: 0s;
}
header div img:nth-of-type(2) {
  animation-delay: 4s;
}
@keyframes change-img-anim {
  0%{ opacity: 0;}
  30%{ opacity: 1;}
  70%{ opacity: 1;}
  100%{ opacity: 0;}
}
.header-regi img{
  position: absolute;
  bottom:65px;
  right:50%;
  transform: translateX(50%);
  display: block;
  width:300px;
}
.notice{
  width:calc(100% - 40px);
  max-width:500px;
  margin:30px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color:#333;
  padding:10px;
  border:1px solid #aaa;
  background:#fff;
}
aside nav ul{
  display: flex;
  flex-wrap: wrap;
  width:calc(100% - 40px);
  max-width:500px;
  margin:30px auto 0;
}
aside nav ul li{
  width:calc((100% - 15px) / 2);
  margin-bottom:15px;
  background:#fff;
  border-radius: 30px;
  border:2px solid #aaa;
}
aside nav ul li:nth-of-type(odd){
  margin-right:15px;
}
aside nav ul li a{
  display: block;
  text-align: center;
  padding:10px;
  font-size:0.7rem;
  color:#555;
}
aside nav ul li a img{
  height:100px;
  margin-bottom:3px;
}
.nav-menu{
  display: block;
  width:calc(100% - 40px);
  max-width:500px;
  margin:0 auto 30px;
  background:#fff;
  border-radius: 20px;
  border:2px solid #aaa;
  padding:15px 0;
  text-align: center;
  font-size:0.9rem;
  color:#555;
}
/*-------------------------------

  article

-------------------------------*/
section{
  margin:30px 0;
}
/*---------- title/more ----------*/
h2{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:1.5rem;
  color:#555;
  background:#fff;
  width:calc(100% - 40px);
  max-width:500px;
  margin:0 auto;
  padding:20px 0;
}
h2 img{
  height:100px;
  margin:0 10px;
}
.cont-menu h2{
  height:130px;
}
.cont-menu h2 img{
  height:40px;
}
.cont-title i{
  color:#655d30;
  margin:0 10px;
}
.cont-more{
  display: flex;
  align-items: center;
  justify-content: center;
  width:calc(100% - 40px);
  max-width:500px;
  margin:0 auto 30px;
  margin:0 auto;
  border:1px solid #ddd;
  padding:10px;
  border-radius: 10px;
  border:3px solid #704631;
  background:#ab7850;
  color:#fff;
  font-size:1.1rem;
}
/*---------- bloglist ----------*/
.cont-blog ul{
  display: flex;
  flex-wrap: wrap;
  width:calc(100% - 40px);
  max-width:500px;
  margin:30px auto 0;
}
.cont-blog ul li{
  width:calc((100% - 15px) / 2);
  margin-bottom:15px;
}
.cont-blog ul li:nth-of-type(odd){
  margin-right:15px;
}
.cont-blog ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  height:150px;
  margin:0 auto;
  border:1px solid #ddd;
  padding:10px;
  border-radius: 10px;
  border:3px solid #704631;
  background:#ab7850;
  color:#fff;
  font-size:1.1rem;
}
.cont-blog ul li a i{
  margin-left:2px;
}
/*-------------------------------

  menu

-------------------------------*/
#cont-menu{
  margin-bottom:20px;
}
#cont-menu ul{
  width:calc(100% - 40px);
  max-width:500px;
  margin:30px auto;
}
#cont-menu ul li{
  margin-bottom:15px;
}
#cont-menu ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color:#333;
  padding:10px;
  border:1px solid #aaa;
  background:#fff;
}
/*-------------------------------

  footer

-------------------------------*/

.copy{
  padding:30px 0;
  color:#fff;
  font-size:0.9rem;
  text-align: center;
  font-weight: bold;
  background:#7b7569;
}