@charset "utf-8";

body {
  font-family: "Sawarabi Gothic", serif;
  font-weight: 400;
  font-style: normal;
    font-size: 16px;
    color: #000;
    line-height: 1;
}

.drawer input, .drawer_input {
  display: none;
}

img {
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: rgb(244, 242, 242);
   }

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

.header-logo {
  display: block;
  width: 200px;
}

.drawer-content ul {
  display: flex;
  width: 600px;
  margin-right: 50px;
  font-weight: bold;
  font-size: 16px;
  height: 100px;
 border-right: 1px solid rgb(136, 131, 131);
}

.drawer-content li {
  width: 100%;
  text-align: center;
  padding: 45px 0;
  border-left: 1px solid rgb(136, 131, 131);
 display: block;
}

.drawer-content li:hover {
  color: rgb(246, 50, 50);
}

.footer {
  background-color: #0095d9;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-site-menu {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


.footer-site-menu ul {
  display: flex;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  height: 30px;
  border-right: 1px solid #fff;
}

.footer-site-menu ul li {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 8px 0;
  border-left: 1px solid #fff;
 display: block;
 cursor: pointer;
}

.footer-site-menu ul li:hover {
  color: rgb(246, 50, 50);
}

.footer-hr {
  height: 2px;
  background-color: #fff;
  border: none;
  margin-top: 30px;
  width: 100%;
  }

.footer-ts {
  display: flex;
  max-width: 100%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 200px;
}

.footer-logo img {
  display: block;
  max-width: 400px;
  width: 100%;
}

.footer-Date {
  max-width: 100%;
  width: 100%;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  margin-left: 90px;
  margin-top: 50px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}


@media screen and (max-width:800px) {

  .drawer-content ul {
    display: block;
    text-align: center;
  }

  .drawer-content ul li {
    padding-top: 50px;
    max-width: 100%;
    width: 50%;
    font-size: 25px;
    color: #fff;
    margin-top: 20px;
  }

  .header {
    height: 80px;
    z-index: 10;
    display: flex;
   }

   .header-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    height: 100%;
   }

   .header-logo img {
    width: 250px;
    margin-left: 15px;
      }

   /*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
  margin-right: 2px;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #0095d9;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

.footer-site-menu ,.footer-hr {
  display: none;
}

.footer-ts {
  display: block;
  padding-top: 0;
  padding-bottom: 20px;
  padding-left: 0;
}

.footer-logo img {
  display: block;
  max-width: 75%;
  width: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.footer-Date {
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  margin-left: 0;
  margin-top: 30px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

 






































}