.wrap{
  margin-left: auto;
  margin-right: auto;
}

body{
  font-size: 14px;
  background-color: #000000;
  margin: 0px;
}

.menu{
  overflow: hidden;
  *zoom: 1;
}

.topmenu-item{
    margin-bottom: 80px;
    float: left;
    margin-left: auto;
    margin-right: auto;
	color: #fff;
	width: 33.3%;
    text-align: center;
    font-size: 35px;
}

.menu-item{
    float: left;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    color: gray;
    font-size: 20px;
}

.menu-itemlast{
    float: left;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 15px;
    margin-bottom: 100px;
}

.main {
	width: 1000px;
	margin-left: auto;
    margin-right: auto;
}

.pop{
    border-left: solid 1px;
    border-left-color: #ffffff;
    padding-left: 15px;
    margin-top: 150px;
    font-size: 30px;
}

.clearfix {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 80px;
  margin-top: 20px;
}

.container-text {
  float: left;
  width: 40%;
}

.container-image {
	float: right;
	width: 60%;
}

.container-text2 {
  float: right;
  width: 40%;
}

.container-image2 {
	float: left;
    width: 60%;
}

.sub {
	width: 60%;
    margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}

img {
width: 100%;
height: 100%;
}

h1,h2,h3,h4 {
  margin-top: 50px;
  margin-bottom: 90px;
  text-align: center;
  font-size: 40px;
  color:#FFFFFF;
}

a{
    text-decoration: none;
    color: gray;
    transition: color .3s;
}

a:hover{
    color: #DF7401;
}

p {
  color: #FFFFFF;
}

ul{
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 30px;
}

li{
    color: #DF7401;
}

.link{
    color: gray;
    font-size: 20px;
    margin-top: 35px;
}



.slide {
  position   : relative;
  overflow   : hidden;
  width      : 600px;
  height     : 600px;
  margin     : auto;
  background : #000000;
}

.slide img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 25s ease infinite;
}
 

.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 5s }
.slide img:nth-of-type(3) { animation-delay: 10s }
.slide img:nth-of-type(4) { animation-delay: 15s }
.slide img:nth-of-type(5) { animation-delay: 20s }
 
@keyframes slideAnime{
   0% { opacity: 0 }
   10% { opacity: 1 }
  20% { opacity: 1 }
  30% { opacity: 0 }
 100% { opacity: 0 }
}