@charset "utf-8";
/* CSS Document */

a{
  color: #333;
  text-decoration: none;
}

a:hover{
  color: #CCC;
}

nav{
  width: 100%;
  height: 90px;
  position: relative;
  background: #fff;
}

.drawer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 90px;
  padding: 0 1em;
}
.drawer img{
	width: 100%;
}
.navbar_toggle{
  z-index:9999;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #FE6300;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
    top: 0;
}
.navbar_toggle_icon:nth-child(2) {
    margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
    top: 0;
}

.menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:#C9EBFC;
  opacity: 0.95;
  z-index:1000;
  position:relative;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu{
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition:ease .2s;
  transition:ease .2s;
  z-index:1000;
  background:#0086CD;
}

.menu ul li{
  padding: 1em 2em;
  border-bottom: 1px solid #fff;
}
.menu ul li a{
color:#18447A;
font-weight:bolder;
}

/* PCサイト CSS */
@media screen and (min-width: 720px) {
nav{
  display: flex;
  flex-direction: row;
  height:90px;
}
.navbar_toggle{
  display: none;
}
.menu{
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background:#fff;
}
.menu ul{
  height: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.menu ul li{
  padding: 0 1em;
  border-bottom: none;
}
}

@media screen and (max-width: 380px) {
	.drawer a.navbar_brand img{
		width:96%;
	}
}