@charset "UTF-8" ;

/* base style */ 
 * {
    margin: 0; 
    padding: 0;
 }
 html, body { 
  width: 100%; 
 } 
 body { 
   background-color: #000; 
 } 
 a { 
   color: #FF0000;
   text-decoration: none;
 } 
 ul { 
   list-style: none; 
 } 
 img { 
   max-width: 100%;
   height: auto;
 } 
 p {
	line-height: 1.5;
 }
 
 /* header */ 

 .header { 
   -js-display: flex; 
   display: -webkit-box; 
   display: -webkit-flex; 
   display: -ms-flexbox; 
   display: flex; 
   -webkit-box-pack: justify; 
   -webkit-justify-content: space-between; 
   -ms-flex-pack: justify; 
   justify-content: space-between; 
 } 
 .header ul { 
   -js-display: flex; 
   display: -webkit-box; 
   display: -webkit-flex; 
   display: -ms-flexbox; 
   display: flex; 
   -webkit-box-align: center; 
   -webkit-align-items: center; 
   -ms-flex-align: center; 
   align-items: center; 
 } 
 .header ul li { 
   margin-left: 5px; 
   margin-right: 5px;
   font-size: 140%;
   color: #FFF;
 } 
 .header {
    border: 8px solid #FFF;
    border-radius: 240px 15px 185px 15px / 15px 200px 15px 185px;
    margin: 5px;
    padding: 10px;
}

/* btn */
 .btn-flat-border7 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #FF0000;
  border: solid 4px #FF0000;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border7:hover {
  background: #FF0000;
  color: black;
}

 .btn-flat-border5 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #67c5ff;
  border: solid 4px #67c5ff;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border5:hover {
  background: #67c5ff;
  color: black;
}
 .btn-flat-border6 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #B59658;
  border: solid 4px #B59658;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border6:hover {
  background: #B59658;
  color: black;
}

.btn-flat-border1 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #FFFF38;
  border: solid 4px #FFFF38;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border1:hover {
  background: #FFFF38;
  color: black;
}
 .btn-flat-border2 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #00FF00;
  border: solid 4px #00FF00;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border2:hover {
  background: #00FF00;
  color: black;
}

.btn-flat-border3 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #FFA500;
  border: solid 4px #FFA500;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border3:hover {
  background: #FFA500;  color: black;
}
 .btn-flat-border4 {
  display: inline-block;
  padding: 0.3em;
  margin: 0.3em 0;
  text-decoration: none;
  color: #FF38FF;
  border: solid 4px #FF38FF;
  border-radius: 10px;
  transition: .4s;
}

.btn-flat-border4:hover {
  background: #FF38FF;  color: black;
}

 /* inde */ 
 .inde h2 {
   font-weight: bold;
   text-align: center;
   font-size: x-large;
   padding: 10px 0;
   margin: 10px 0;
   color: #B59658;
   line-height: 1.5;
 }
 .inde h5 {
   font-weight: bold;
   text-align: center;
   font-size: 1.4rem;
   padding: 5px;
   color: #FFF;
 }
 .inde p { 
   padding: 8px;
   margin: 10px;
   font-weight: bold;
 }
 .inde img { 
   width: 100%;
   height: auto;
   text-align: center;
   vertical-align: middle;
 }
 /* top */
 .top { 
   -js-display: flex; 
   display: -webkit-box; 
   display: -webkit-flex; 
   display: -ms-flexbox; 
   display: flex; 
   -webkit-flex-wrap: wrap; 
   -ms-flex-wrap: wrap; 
   flex-wrap: wrap; 
   padding: 0px; 
   width: 100% ;
   margin: 0 auto ;
 } 
 .top div.inde { 
   width: calc(100% - 10px); 
   margin: 5px;
   color: #B59658;
   background: #000;
   font-size: 15px; 
 }
 .top p {
	font-size: medium;
	line-height: 2;
  }

 /* footer */ 
 .footer {
	border-top: 6px solid #A85E5C ;
	color: #B59658 ;
	margin-top: 1em ;
	padding: 1em 0 ;
	background: #000 ;
 }
 .contents-wrap {
	-js-display: flex; 
   display: -webkit-box; 
   display: -webkit-flex; 
   display: -ms-flexbox; 
   display: flex; 
   -webkit-flex-wrap: wrap; 
   -ms-flex-wrap: wrap; 
   flex-wrap: wrap; 
   padding: 10px; 
   width: 96% ;
   margin: 0 auto ;
 }
 .contents-box {
   width: calc(33.33% - 10px); 
   margin: 5px;
 }

 @media screen and (max-width: 768px){
 p {
	font-size: small;
	line-height: 2.5;
 } 
  .header { 
     display: none;
 }

 .top div.inde {
   font-size: 7px;
   }
 .top p {
	font-size: xx-small;
  } 
 .main div.inde { 
     width: calc(100% - 10px); 
     margin: 5px; 
   }
 .inde h2 {
	 font-size: .8rem;
  }
 .inde h5 {
	 font-size: .8rem;
  }
 .inde p { 
     font-size: 12px;
  }
 .contents-box {
     width: calc(100% - 10px); 
     margin: 5px;
   }

 .footer {
     display: none;
 }
}