body {
  font-family: ;
  }
.roboto-mono li{
  font-family: "roboto-mono", monospace "Arial", "メイリオ";
  font-weight: 300;
  font-style: normal;
  }

/* 調整用スタイル */



a {
    text-decoration: none;
  }
  
  ul,
  li {
    list-style: none;
  }
  
  /* ヘッダー hover時メニューの色変更(始まり)*/
  .hover-red a:hover{
    color: #CC0000!important;
  }

 /* ヘッダー hover時メニューの色変更(終)*/
 
  .main {background-image: url("../img/Top_5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    text-decoration: none;
  }



  .footer {
    background-color: #f6f6f6;
    height: 200px;
    display: flex;
  }
  
  .footer div {
    margin: auto;
  }
  
  
  /* ヘッダー */
  .header {
    background-color: #fff;
    z-index: 999;
    height: 69px;
  }

  @media screen and (min-width: 960px) {
  .header {
    background-color:  transparent;
    width: 100%;
    height: 69px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  }
  .header__inner {
    padding: 0 20px;
    display: block;
    align-items: center;
  padding-left:50px;
    height: inherit;
    position: relative;
  }

  @media screen and (min-width: 960px) {
  .header {
    
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .header__inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
  padding-left:50px;
    height: inherit;
    position: relative;
  }
  .header__title {
    width: 80px;
  
  }
}
  
  /* ヘッダーのロゴ部分 */

    .header__title {
      position: absolute;
      top: 20px;
      left: 41%;
      width: 80px;
      margin: 0 auto;
      z-index: 10;
    }


  @media screen and (min-width: 960px) {
  .header__title {
    position: absolute;
    top: 21px;
    left:40px;
    width: 80px;
    margin-right: 100px;
    
  }
}
  
  @media screen and (min-width: 960px) {
    .header__title {
      width: 120px;
    }
  }
  
  .header__title img {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  /* ヘッダーのナビ部分 */
  
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-100%);
    background-color: #fff;
    transition: ease .4s;
  }
  
  
  @media screen and (min-width: 960px) {
    .header__nav {
      position: static;
      transform: initial;
      background-color: inherit;
      height: inherit;
      display: flex;
      justify-content: end;
      width: 50%;
      margin-left: 100px;
    }
  }
  
  
  @media screen and (min-width: 960px) {
    .nav__items {
      width: 100%;
      display: flex;
      align-items: center;
      height: initial;
      justify-content: space-between;
    }
  }
  
  .nav-items {
    text-align: left;
    margin-top: 69px!important;

    padding: 0;
    width: 76%;
    margin: 0 auto;
  }
  
  
  @media screen and (min-width: 960px) {
    .nav-items {
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);
      margin-top: 0px!important;
    }
  }
  
  /* ナビのリンク */
  .nav-items__item a {
    color: #000;
    width: 100%;
    display: block;
    text-align: left;
    font-size: 13px;
    margin-bottom: 11px;
  
  }
  @media screen and (min-width: 960px) {
    .nav-items__item a {
      color: #000;
      width: 100%;
      display: block;
      text-align: center;
      font-size: 13px;
      margin-bottom: 24px;
    }
  }
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }
  .navmargin{
    border-bottom: rgb(220, 220, 227) 1px solid;
    padding-bottom: 7px;
    padding-top: 16px;
    text-align: left;
  }
  .navmargin2{
    border-bottom:none;
  }

  @media screen and (min-width: 960px) {
    .navmargin{
      border-bottom:none;
      padding-top: 8px;
    }
  }
  @media screen and (min-width: 960px) {
    .nav-items__item a {
      margin-bottom: 0;
    }
  }
  
  
  /* ハンバーガーメニュー */
  
  .header__hamburger {
    width: 32px;
    height: 11px;
    position: absolute;
    top: 29px;
    left: 12%;
  }
  
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  
  @media screen and (min-width: 960px) {
    .hamburger {
      display: none;
    }
  }
  
  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    margin: 4px 0;
  }
  
  .hamburger span:nth-child(3) {
    top: 0;
  }
  
  
  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    transform: translateX(0);
  }
  
  .hamburger.active span:nth-child(1) {
    top: 4px;
    transform: rotate(45deg);
    background-color: #ff0000;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  
  }
  
  .hamburger.active span:nth-child(3) {
    top: -6px;
    transform: rotate(-45deg);
    background-color: #ff0000;
  }



  /* フッター
  ------------------------------- */
  footer {
    background: rgb(240, 241, 239);
    text-align: left;
    padding: 50px;
    margin-top: 50px;
}
footer p {
    color: #3e3a39;
    font-size: 0.875rem;
    text-align: center;
    padding-top: 35px;
    letter-spacing: 0.05em;

}
.footer-li-wrapper{
    max-width: 900px;
    margin: 0 auto;
}
.footer-link a {
    color: #3e3a39!important;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-align: left;
}
.footer-link a:hover {
    color: rgba(68,51,34,0.5)!important;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-align: left;
}

.footer-link li {
    
    padding: 8px;
}