@charset "UTF-8";

/****************
  common
****************/

body {
  font-size: 15px;
}

a:link,
a:visited {
  color: #2110E7;
}

img.border {
  border: 1px solid #eee;
  border-radius: 3px;
}

/***************
   header
****************/

/* header */

@media all and (max-width:600px) {
nav {
 text-align: center;
}

nav ul {
 margin: 0;
 padding: 0;
}
}

nav li {
 list-style: none;
 display: inline-block;
 width: 10%;
 min-width: 90px;
}

nav li:not(:last-child) {
 border-right: 2px solid #ddd;
}

nav a {
 text-decoration: none;
 color: #333;
} 

nav a.current {
 color: #00B0F0;
 border-bottom: 2px solid #00B0F0;
}

nav a:hover {
 color: #F7CB4D;
 border-bottom: 2px solid #F7CB4D;
}

/* mainImage */

@media screen and (max-width:480px){
header .mainImage {
  height: 440px;
  margin: 0;
  width: 1000px;
}
}
	
header .mainImage .imageScroll {
  border: 1px solid #eee;
  border-radius: 3px;
}

header .mainImage img {
  display: block;
  margin: 7px auto;
  max-height: 400px;
  max-width: 100%;
}

/**************
   footer
***************/

/* footerNavigation */

footer .siteLinks {
  background: #e8e8e8;
  padding: 30px;
}

footer .siteLinks .inner {
  margin: 0 auto;
  overflow: hidden;
  width: 1350px;
}

footer .siteLinks .logo {
  float: right;
  width: 300px;
}

footer .siteLinks .logo img {
  display: block;
  width: 250px;
}

footer .siteLinks .linkList {
  overflow: hidden;
}

footer .siteLinks .linkList dl {
  float: left;
  font-size: 12px;
  width: 190px;
}

footer .siteLinks .linkList dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}

footer .siteLinks .linkList dl dt a {
  text-decoration: none;
}

footer .siteLinks .linkList dl dd {
  margin-bottom: 5px;
  margin-inline-start: 0px;
}

footer .siteLinks .linkList dl dd a {
  color:#444;
  text-decoration: none;
}

footer small {
  background: #222;
  color: #f2f2f2;
  display: block;
  font-size: 11px;
  padding: 10px 0;
  text-align: center;
}