@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  line-height: 1;
  background-color: #FFFFFF;
}

img {
  max-width: 100%;
}

/*　PC　header記述　*/

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(14,43,74,1),rgba(14,43,74,0));
  height: 150px;
  z-index: 10;
  color: #fff;
  text-shadow: 2px 2px 3px #152634;
}

.header-inner {
  max-width: 1500px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 350px;
}
.header-logo-pre {
  display: block;
  margin-left: 40px;
  width: 100px;
}

.site-menu ul {
  display: flex;
  text-align: center;
}

.site-menu ul li {
  margin-left: 15px;
  margin-right: 15px;
}

.site-menu ul li p {
  font-size: 12px;
  margin-top: 5px;
}

.site-menu ul li a {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
}

/*　PC　footer記述　*/

.footer {
  height: 300px;
  padding: 60px 0 30px;
  background-color: #0e2b4a;
  color: #fff;
  font-size: 12px;
}
.footer a {
  color: #FFF;
  text-decoration: none;
}
.footer__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.fotter__inner__sub {
  display: flex;
  justify-content: space-between;
}
.footer__left {
  margin-right: 60px;
}
.footer__left ,.footer__center {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 20px;
}
.footer__left p ,.footer__center p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 5px;
}
.footer__left span ,.footer__center span {
  font-size: 11px;
  line-height: 18px;
  margin-top: 10px;
}
.copyright {
  font-size: 14px;
  font-weight: normal;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 800px) {
  
  /*　スマホ　header記述　*/
  
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(21,38,48,1),rgba(21,38,48,0));
    height: 80px;
    z-index: 10;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    width: 250px;
  }

  .header-site-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    background-color: rgba(21,38,48,0.9);
    padding-top: 50px;
    padding-bottom: 70px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 59px;
    height: 48px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  /*　スマホ　main記述　*/
  
  .main {
    padding-top: 50px;
  }

  /*　スマホ　footer記述　*/
  
  .footer__inner {
  max-width: 90%;
  margin: 0 auto;
    }
  .footer__left {
  margin-right: 20px;
}
  .footer__left img {
    width: 180px;
  }
  .footer__center img {
    width: 140px;
  }
  
  .footer__left span ,.footer__center span {
  font-size: 10px;
  line-height: 15px;
}
  .copyright {
    margin-top: 50px;
  }
}