/*!
header, footer, top module
 ______________________________*/

html {
  scroll-padding-top:120px;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 0 0;
  z-index: 100;
  height: 71px;
  transition: .3s;
}
.header.scrolled{
  background-color: rgb(0,0,0,0.4);

}
header h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

header h1 img {
  width: 350px;
  height: 71px;
}

.header_in {
  display: flex;
}

.header_r {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
  display: flex;
  height: 71px;
  align-items: center;
}

.header_r li {}

.header_r li a {
  color: #fff;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  padding: 0 18px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_r li:last-child a {
  padding: 0;
  width: 100%;
}

.header_r li:last-child a img {
  width: 100%;
  height: auto;
}

.header_r li:nth-child(6) a {
  background-color: #006ea7;
  height: 71px;
  line-height: 71px;
  /* 高さと合わせて中央揃え */
  display: block;
  /* 必要であれば */
}
.header_r li:nth-child(7){
  width:71px;
}

body {
  background-color: #333;
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  width: 100%;
  overflow-x: hidden;
}

.hamburger {
    display: block;
    position: fixed;
    z-index: 103;
    right: 0;
    top: 0;
    width: 71px;
    height: 71px;
    cursor: pointer;
    text-align: center;
    background-color: #303030;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 22px;
  background: #bbbbbb;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 24px;
}

.hamburger span:nth-child(2) {
  top: 36px;
}

.hamburger span:nth-child(3) {
  top: 48px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 34px;
    left: 22px;
  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: 34px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenu {
  position: fixed;
  z-index:98;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(71, 70, 73, 0.8);
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

nav.globalMenu.active {
  opacity: 100;
  display: block;
  padding-top: 70px;
  height: 100vh;
}

.menu{
  list-style-type: none;
  margin:0;
  padding:0;
}

.menu li{
  width:100%;
}
.menu li a{
  display: block;
  padding:20px;
  text-align: center;
  color:#fff;
}

