@charset "UTF-8" ;

/* base style */ 
 * {
    margin: 0; 
    padding: 0;
 }
 html, body { 
  width: 100%; 
 } 
 a { 
   color: #FF0000; 
 } 
 ul { 
   list-style: none; 
 } 
 img { 
   max-width: 100%; 
 } 
 p {
   line-height: 1.2;
 } 
 /* 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%;
 } 

 .header {
    border: 8px solid #800000;
    border-radius: 240px 15px 185px 15px / 15px 200px 15px 185px;
    margin: 5px;
    padding: 10px;
}
 /* inde */ 
 .inde { 
   background-color: white;
 } 
 .inde h1 { 
   font-weight: bold; 
   text-align: center; 
   font-size: 1.8rem; 
   padding: 5px; 
   color: #800000;
   background: linear-gradient(transparent 10%, #d2b48c 60%);
 }
 .inde h3 {
	font-weight: bold;
	text-align: center;
	font-size: 1rem;
	padding: 5px;
	color: #800000;
	background: linear-gradient(transparent 60%, #ffff66 60%);
 }
 .inde h4 {
	font-weight: bold;
	text-align: center;
	font-size: 1.4rem;
	padding: 5px;
	color: #800000;
	background: linear-gradient(transparent 60%, #ffff66 60%);
 }

 .inde p { 
   padding: 5px;
   font-size: 15px;
 } 
 .inde img { 
   width: 90%;
   padding: 10px;
 } 
 /* comment */
 .comment { 
   -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: 95% ;
   margin: 0 auto ;
 } 
 .comment div.inde { 
   width: calc(100% - 10px); 
   margin: 5px; 
 }

 /* 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: 80% ;
   margin: 0 auto ;
 }
 .contents-box {
   width: calc(33.33% - 10px); 
   margin: 5px;
 }

 @media screen and (max-width: 768px){
 .header { 
     -webkit-box-orient: vertical; 
     -webkit-box-direction: normal; 
     -webkit-flex-direction: column; 
     -ms-flex-direction: column; 
     flex-direction: column; 
     -webkit-box-align: center; 
     -webkit-align-items: center; 
     -ms-flex-align: center; 
     -ms-grid-row-align: center; 
     align-items: center; 
   } 
 .comment div.inde { 
     width: calc(100% - 10px); 
     margin: 5px; 
   }
 .header ul li {
     align-items: center;
	 margin: 0 .5rem;
	 font-size: .8rem;
 }
 .inde h1 { 
     font-size: 1rem;
 }
 .inde p { 
     font-size: 15px;
 }
 .contents-box {
     width: calc(100% - 10px); 
     margin: 5px;
   }
 .footer {
     font-size: 14px;
 }
}