@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 共通設定 */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  background-color: #444;
}

img {
  max-width: 100%;
  /* 親要素より大きくならない設定 */
}








/* ここから自分用 */


/* header */ 

.header-site-menu{
  padding: 20px;
  background-color: #000;
}

.header-site-menu ul{
    display: flex;
    justify-content: space-between;
}
  
  .header-site-menu li{
  font-weight: bold;
  display: inline-block;
  padding: 5px 30px 2px 27px;
  font-size: 24px;
  background: #000;
  line-height: 1.2;
  width: 100%;
  
  }
  header img{
    width: 100%;
  }
  
  
  
  /* footer */
  footer{
      background: #000;
  }
  
  .footer-inner{
      display: flex;
      justify-content: center;
      justify-content: space-between;
      padding: 30px 30px 0;
  }
  
  
  .footer-site-menu{
      font-weight: bold;
      display: inline-block;
      padding: 5px 30px 2px 27px;
      font-size: 24px;
      background: #000;
      line-height: 1.2;
      letter-spacing: 0;
      width: 250px;
  }
  
  .sns-logo{
      display: flex;
      width: 300px;
      justify-content: space-between;
      align-items: center;
  }
  .company-logo{
      display: flex;
      align-items: center;
  }
  
  .copyright{
      display: flex;
      justify-content: center;
  }