@charset "UTF-8";
/* CSS Document */

/* Navigation Menu */

/* Mobile Menu */
/*@media screen and (max-width: 1024px) {*/
#navArea {
display: block;
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 60px;
background:rgba(73, 58, 173, 0.5);
z-index: 100;
}
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: #fff;/*メニューリスト背景色*/
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 102;
  opacity: 0;
}

.open nav {
  right: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 0 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #483b8e;
}
nav .inner ul li a {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight:bold;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  color: #483b8f;
  font-weight:bold;
  background: #fff;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 103;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 101;
  cursor: pointer;
}
/*}/* Mobile Menu end */

/* スマホ 開くメニューの幅*/
@media screen and (max-width: 768px) {
nav {
right: -280px;
width: 280px;
}
#navArea {
display: block;
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 40px;
background:rgba(73, 58, 173, 0.5);
z-index: 100;
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 8px;
  right: 15px;
  width: 24px;
  height: 24px;
  transition: all .5s;
  cursor: pointer;
  z-index: 103;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 3px;
}
.toggle_btn span:nth-child(2) {
  top: 11px;
}
.toggle_btn span:nth-child(3) {
  bottom: 3px;
}
.open .toggle_btn span {
  background-color: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(-315deg);
  transform: translateY(7px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}
}/* スマホ end */
