@charset "UTF-8";
/* CSS Document */
html {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body {
  color: #333; /* RGB */
  font-family: "ヒラギノ明朝 ProN";
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  width: 1440px; /*全体の幅を指定する*/
  margin-left: auto;/*マージンの指定をする、ブラウザ対策*/
  margin-right: auto;
  padding: 0;
}
header {
  height: 160px;
  width: 1440px;
  margin: 0 auto;
  background-color: #395873;
}
header ul {
  display: flex;
  margin: 50px 200px 0 0;
  float:right;
  align-items: center;
}
header ul li a {
  color: #FFF;
  font-size: 18px;
  padding-left: 30px;
  text-decoration: none;
}
header a img.header-logo {
  float: left;
  width: 200px;
  height: 100px;
  margin: 30px 0 0 200px;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
@media (max-width: 480px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    padding: 10px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open sapn, #nav-open sapn:before, #nav-open sapn:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #FFF;
    display: block;
    content: "";
  }
  #nav-open sapn:before {
    bottom: -8px;
  }
  #nav-open sapn:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 40%;
    height: 100%;
    background-color: #FFF;
    text-align: left;
    padding: 20px 30px 0 0;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0, 25);
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 20px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media(max-width: 480px) {
  body {
    width: 100%;
  }
  header {
    height: 50px;
    width: 375px;
    margin: 0 auto;
  }
  header a img.header-logo {
    width: 120px;
    height: 40px;
    float: left;
    padding-top: 5px;
    margin: 0 25px;
  }
  header ul {
    display: inline-block;
    list-style: none;
    margin: 0;
  }
  header ul li a {
    text-decoration: none;
    font-size: 16px;
    padding: 0;
  }
}
footer {
  height: 250px;
  width: 1440px;
  font-size: 20px;
  color: #FFF;
  background-color: #395873;
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 50px;
  margin: 0 auto;
}
footer a {
  color: #FFF;
  text-decoration: none;
}
.site-map {
  display: flex;
  text-align: left;
  justify-content: space-between;
}
.site-map__main-links {
  margin-left: 280px;
}
.section-contact p {
  list-style: none;
  text-align: right;
  margin-right: 280px;
}
.footer__copyright {
  font-size: 16px;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media(max-width: 480px) {
  footer {
    height: 200px;
    width: 375px;
    padding-top: 30px;
    margin: 0 auto;
    font-size: 12px;
  }
  .footer__container {
    text-align: left;
  }
  .site-map__main-links {
    margin: 0 0 0 25px;
    float: left;
  }
  .section-contact p {
    list-style: none;
    margin: 0 25px 0 0;
  }
  .footer__copyright {
    clear: both;
    display: block;
    text-align: center;
    font-size: 12px;
  }
}