@charset "utf-8";

/* リセットcss ここから*/
*,
::before,
::after{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* リセットcss ここまで*/

/* リスト行頭アイコン非常時ここから */
ul,
ol{
  list-style: none;
}
/* リスト行頭アイコン非常時ここまで */

/* リンクの文字色と下線の削除ここから */
a{
  color: inherit;
  text-decoration: none;
}
/* リンクの文字色と下線の削除ここまで */

/* ベーススタイル指定ここから */
body{
  font-family: sans-serif;
  font-size: 20px;
  color: black;
  line-height: 1;
  background-color: white;
}
/* ベーススタイル指定ここまで */

/* 画像の最大幅指定ここから */
img{
  max-width: 100%;
}
/* 画像の最大幅指定ここまで */

/* ヘッダーサイズ，位置指定ここから */
.header-inner{
  max-width: 1500px;
  height: 110px;
  margin-top: 30px;
  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: 300px;
  }
.header-logo img{
  width: 200%;
}

.site-menu ul{
/* Googleフォントの指定 */
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  display: flex;
}
.site-menu ul li{
  margin-left: 20px;
  margin-right: 20px;
}
.site-menu ul li:hover{
  color: blue;
}
/* ロゴとナビゲーションのスタイル指定ここまで */

/* フッターサイズ，位置指定ここから */
.footer{
  color: black;
  background-color: white;
  padding-top: 5px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* フッターサイズ，位置指定ここから */

/* ロゴとナビゲーションのスタイル指定ここから */
.footer-logo{
  display: block;
  width: 200px;
  margin-top: 10px;
}
.footer-logo img{
  width: 100%;
}
.footer-name{
  font-size: 15px;
  font-weight: bold;
  margin-top: 28px;
}
.footer-mail{
  font-size: 15px;
  margin-top: 10px;
}
.footer-mail:hover{
  color: blue;
}
.copyright{
  font-size: 15px;
  font-weight: lighter;
  margin-top: 10px;
}
/* ロゴとナビゲーションのスタイル指定ここから */

/* レスポンシブデザイン */
@media (max-width:768px){
  .site-menu ul{
    display: block;
    text-align: center;}
  .site-menu li{
  margin-top: 20px;}
  .header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  .header-inner{
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }
  .header-logo{
    width: 100px;
  }
  .header-site-menu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: black;
    background-color:  rgba(255, 255, 255, 0.9);
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }
  .toggle-menu-button{
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }
  .header-site-menu.is-show{
    display: block;
  }
  .main{
    padding-top: 50px;
  }
  .footer-logo{
    margin-top: 30px;
  }
  .footer-name{
    font-size:20px;
  }
  .copyright{
    margin-top: 10px;
  }
}

