/* common */

.btn_drawer {
  display: none;
}

@media screen and (max-width: 768px) {
  .btn_drawer {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    background: #13378A;
    z-index: 999;
    cursor: pointer;
  }
  .btn_drawer span {
    position: absolute;
    left: 10px;
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #FCF001;
    transition: .25s;
  }
  .btn_drawer span:first-of-type {
    top: 13px;
  }
  .btn_drawer span:nth-of-type(2) {
    top: 24px;
  }
  .btn_drawer span:last-of-type {
    top: 36px;
  }
  .btn_drawer.open span:first-of-type {
    top: 24px;
    transform: rotate(225deg);
  }
  .btn_drawer.open span:nth-of-type(2) {
    width: 0;
  }
  .btn_drawer.open span:last-of-type {
    top: 24px;
    transform: rotate(-225deg);
  }
}

.pullNav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 40px;
	background: #fff;
	transition: 0.25s;
	z-index: 9;
}
.pullNav.pulled {
	top: 60px;
}
.pullNav a {
	display: inline-block;
	height: 12px;
	margin: 10px 1.25em;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  color: #13378A;
}
.pullNav a:first-of-type {
	margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .pullNav {
    display: none;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #13378A;
  transition: .25s;
  z-index: 10;
}
.header_nav {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: nowrap;
  height: 40px;
}
.header_nav_item {
  height: 100%;
  padding: 0 15px;
}
.header_nav_item_text {
  font-family: 'Bebas Neue', cursive;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  line-height: 40px;
}
.header_nav_item:hover .header_nav_item_text {
  color: #FCF001;
}
.sp_sub_nav {
  display: none;
}
.header_sns {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
}
.header_sns .sns__item__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: .25s;
}
.header_sns .sns__item__link:hover {
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
  .header {
    top: 0;
    left: 101%;
    width: 100%;
    height: 100vh;
    padding: 60px 30px;
    box-sizing: border-box;
    background: #13378A;
  }
  .header.open {
    left: 0;
  }
  .header_nav {
    position: relative;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    height: auto;
  }
  .header_nav_item {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    text-align: center;
  }
  .header_nav_item_text {
    font-size: 30px;
  }
  .sp_sub_nav {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sp_sub_nav a {
    display: block;
    width: 100%;
    margin: 0 0 15px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fff;
  }
  .sp_sub_nav a:hover {
    color: #FCF001;
  }
}

/* mainContents */
.mainContents {
  width: 100%;
  min-width: 320px;
  padding-top: 59px;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .mainContents {
    padding-top: 0;
  }  
}