@charset "UTF-8";

/*==========▼▼▼フォント▼▼▼==========*/
@font-face {
	font-family: "NotoSansJP";
	src: url("../font/NotoSansJP-Regular.ttf") ;
}

body {
  font-family: "NotoSansJP", sans-serif;
}

/*==========▼▼▼メニューPC▼▼▼==========*/
header {
  height: 125px;
}

.header_container {
  width: 975px;
  margin: 0 auto;
}

/*インスタ用
.header_logo {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_h1 {
  width: 86%;
}


.logo_insta {
  padding-right: 8px;
  width: 60px;
}

.logo_insta img {
  width: 95%;
}
*/

.header_logo {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_h1 {
  width: 80px;
}

.logo_h1 img {
  width: 80px;
}

.header_ul_pc {
  height: 45px;
  display: flex;
  justify-content: center;
  background-color: rgba(194,161,68,0.6);
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

.header_ul_sp {
  display: none;
}

.header_li {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: solid 2px #FFFFFF;
}

.header_li:last-child {
  border-right: solid 2px #FFFFFF;
}

.header_li a {
  color: #FFFFFF;
}

.header_li a:hover {
  color: rgb(31,47,84);
}

/*==========▼▼▼フッター▼▼▼==========*/
footer {
  margin-top: 60px;
  border-top: solid 1px rgb(194,161,68);
  height: 190px;
}

.footer_container {
  width: 975px;
  margin: 0 auto;
}

.footer_img {
  width: 80px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer_img img {
  width: 100%;
}

.copyright {
  text-align: center;
  padding-bottom: 35px;
}

.footer_ul {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_li {
  padding-right: 20px;
  padding-left: 20px;
}

.footer_li:not(:last-child) {
  border-right: solid 1px #000000;
}

.footer_li a {
  color: #000000;
}

.footer_li a:hover {
  color: rgb(194,161,68);
}

.f_insta img {
  width: 60px;
}

.f_insta {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 300px;
  border: solid 1px rgb(194,161,68);
  padding: 12px 13px;
}

.f_insta P {
  font-size: 16px;
  width: 155px;
  text-align: center;
  color: rgb(194,161,68);
  font-weight: bold;
  padding-bottom: 0px;
}

.f_insta_container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
/*==========▼▼▼メニューtab、SP▼▼▼==========*/
@media screen and (max-width: 991px) {
  
  header {
    height: 80px;
    border-bottom: solid 2px rgba(194,161,68);
  }
  
  .header_container {
    width: 80%;
    margin: 0 auto;
  }
  
  .header_ul_pc {
    display: none;
  }
  
  .header_ul_sp {
    display: block;
  }
  
  
  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 2%;
    top   : 20px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : rgba(194,161,68);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #fff;
    background: rgba( 194,161,68,0.8 );
    text-align: center;
    width: 100%;
    transform: translateX(-100%);
    transition: all 0.6s;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  }
  
  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
     transform: translateX(0%);
  }
  
/*==========▼▼▼フッター▼▼▼==========*/
  footer {
    margin-top: 50px;
    border-top: solid 1px rgb(194,161,68);
    height: 190px;
  }
  
  .footer_container {
    width: 90%;
    margin: 0 auto;
  }
  
  .footer_img {
    width: 80px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  .footer_img img {
    width: 100%;
  }
  
  .copyright {
    text-align: center;
    padding-bottom: 25px;
  }
  
  .footer_ul {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer_li {
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .footer_li:not(:last-child) {
    border-right: solid 1px #000000;
  }
  
  .footer_li a {
    color: #000000;
    font-size: 14px;
  }
  
  .footer_li a:hover {
    color: rgb(194,161,68);
  }
  
  .f_insta_container {
    display: flex;
    flex-direction: column;
    height: 200px;
  }
  
  .f_insta img {
    width: 50px;
  }
  
  .f_insta p {
    font-size: 14px;
    width: 130px;
  }
  
  .f_insta {
    margin: 0 auto;
    width: 250px;
    padding: 9px 5px;
  }
}



/*==========▼▼▼インスタサイズSP▼▼▼==========*/
/*
@media screen and (max-width: 767px) {
  .logo_h1 {
    width: 76%;
  }
  
  .logo_insta {
    width: 55px;
  }
}

@media screen and (max-width: 470px) {
  .logo_h1 {
    width: 63%;
  }
  
  .logo_insta {
    width: 45px;
  }
  
  .logo_insta {
    padding-right: 15px;
  }
}
*/
