.logo {
  height: 100px;
  width: 100px;
  margin-left: 25px;
}
@media (max-width: 960px) {
  .logo {
    height: 60px;
  width: 60px;
    margin-left: 10px;
  }
}

.logo_01 {
  height: 100PX;
  width: 100px;
  margin-left: 50px;
  margin-top: 50px;
}
@media (max-width: 960px) {
  .logo_01 {
    height: 70PX;
  width: 70px;
    margin-left: 20px;
  }
}


html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  box-sizing: border-box;
  background-color: #F6F6F6;
max-width: 1920px;
  
}

h1  {
  font-family: 'Arvo', serif;
  font-weight: bold;
}

h2 {
  font-family: 'Arvo', serif;
  font-weight: bold;
}

h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #383838;
}

img {
  object-fit: contain;
  background-size: cover;
  background-position: center;
}
li {
  list-style: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  

  .header_nav ul {
  display: flex;
  justify-content: flex-end;
  padding-right: 100px;
  }
  
  .header_nav ul li {
  display: flex;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  white-space: nowrap;
  padding-left: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  }

  .header_nav ul li a:hover {
    color: #EC59BA;
}

  a {
    text-decoration: none;
    color: #fff;
  }

  @media (max-width: 960px) {
    .header_nav {
      display: block;
      width: 100%;
      height: 100%;
      position: fixed;
      background: #159900;
      top: 0;
      left: 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
    }


    .header_nav ul {
      display: block;
    }
    .header_nav ul li {
      display: block;
      text-align: center;
      padding: 50px 50px;
      width: 100%;
    }
  }
  


  .openbtn7 {
    width: 80%;
  }
  @media (max-width: 960px) {
  .openbtn7{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
      width: 50px;
      height:50px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: 20px;
    z-index: 9999;
  }
  
  /*ボタン内側*/
  
  .openbtn7 .openbtn-area{
      transition: all .4s;
  }
  
  .openbtn7 span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
    background: #159900;
      width: 45%;
    }
  
  
  .openbtn7 span:nth-of-type(1) {
    top:15px; 
  }
  
  .openbtn7 span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn7 span:nth-of-type(3) {
    top:31px;
  }
  
  /*activeクラスが付与されると
  線と周りのエリアが回転して×になる*/
  
  .openbtn7.active .openbtn-area{
    transform: rotateY(-360deg);
  }
  
  .openbtn7.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-135deg);
      width: 30%;
      background-color: #fff;
  }
  
  .openbtn7.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn7.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(135deg);
      width: 30%;
      background-color: #fff;
  }
}







 
 

  footer {
    background-color: #000;
  }
  
  .footer {
  display: flex;
  }
  @media (max-width: 700px) {
    .footer {
      display: block;
    }
  }
  
  .footer_box {
    max-width: 1440px;
  }

  .footer_nav {
    width: 20%;
    margin-left: auto;
    margin-right: 130px;
    margin-top: 50px;
  }
  @media (max-width: 700px) {
    .footer_nav {
      width: 100%;
      margin: 0 auto;
    }
  }
  
  .footer_nav ul {
    display: flex;
    padding-top: 25px;
  }
  @media (max-width: 960px) {
    .footer_nav ul {
      justify-content: center;
    }
  }

  
  .footer_nav ul li {
    display: flex;
    color: #fff;
    font-size: 1.5rem;
    white-space: nowrap;
    margin-right: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    }
    @media (max-width: 1030px) {
      .footer_nav ul li {
        margin-right: 20px;
      }
    }

    .footer_nav ul li a:hover {
      color: #EC59BA;
  }
    .sns_logo {
      width: 20%;
      margin-left: auto;
      display: flex;
    justify-content: space-around;
    margin-right: 130px;
    margin-top: 50px;
    margin-bottom: 50px;
    }
    @media (max-width: 1100px) {
      .sns_logo {
        width: 20%;
        margin-right: 50px;
      }
    }
    @media (max-width: 700px) {
      .sns_logo {
        margin-left: 0;
        margin-right: 0;
        margin: 0 auto;
        width: 50%;
        padding-top: 30px;
        padding-bottom: 30px;
      }
    }
    

    .sns_logo_01 {
      width: 20%;
          margin-left: auto;
          display: flex;
        justify-content: space-around;
        margin: 50px auto;
    }

    .instagram_logo {
      height: 40px;
      width: 40px;
    }
    @media (max-width: 700px) {
      .instagram_logo {
        height: 30px;
        width: 30px;
      }
    }
  
    .Facebook_Logo_Primary {
      height: 40px;
      width: 40px;
    }
    @media (max-width: 700px) {
      .Facebook_Logo_Primary {
        height: 30px;
        width: 30px;
      }
    }
  
    small {
      color: #fff;
      display: flex;
    justify-content: center;
    font-size: 1.5rem;
    padding-bottom: 25px;
    font-family: 'Noto Sans JP', sans-serif;
    }




  @media (max-width: 960px) {

 /*ハンバーガーメニュー*/
 /*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
.header_nav.panelactive{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
top: 0;
width:100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
}

/*丸の拡大*/
.header_nav_bg{
 position: fixed;
z-index:3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #159900;
  /*丸のスタート位置と形状*/
transform: scale(0);/*scaleをはじめは0に*/
right:-50px;
  top:-50px;
  transition: all .6s;/*0.6秒かけてアニメーション*/
}

.header_nav_bg.circleactive{
transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
.header_list{
  display: none;/*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.header_nav.panelactive .header_list{
   display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
.header_nav ul {
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
.header_nav.panelactive ul {
  opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
.header_nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

}


.br {
  display: none;
}
@media (max-width: 450px) {
  .br {
    display: block;
  }
}

 
 