<style>
/*PC用*/
@media screen and (min-width: 680px) {
    #sp {
        display: none;
    }
}
@media screen and (max-width: 680px) {
#pc {
	display:none;
 }
}
#gnav ul {
    list-style: none;
    padding-left: 0;
}
#gnav ul li a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #820184;
}
#gnav ul li a:hover {
    opacity: 0.7;
background-color:#ee91f347;
}
#gnav > ul {
    display: flex;
}
#gnav > ul > li {
    position: relative;
    padding: 10px 0;
}
#gnav > ul > li > a {
    padding: 5px 10px;
}
li.l1{
 width:13%;
 display:block;
 z-index: 10000;
}


/*子階層*/
.gnav_child {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 95%;
    background: #fff;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    border-radius: 5px;
    z-index: 1000;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scaleY(0);
    transform-origin: center top;
    opacity: 0;
}

/*子階層ドロップダウン*/
#gnav > ul > li:hover .gnav_child {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

/*子階層の▲の装飾*/
.gnav_child::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 0px 5px rgba(25, 26, 26, 0.3));
    z-index: -1;
}
.gnav_child li {
    background: #fff;
    width:200px;
}
.gnav_gchild li {
    background: #fff;
    width: 280px;
}

/*子階層の背景の角丸設定*/
.gnav_child > li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.gnav_child > li:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.gnav_child a {
    padding: 10px 5px; 
}

/*孫階層*/
.gnav_gchild {
    visibility: hidden;
    position: absolute;
    left: 100%;
    height:240px;
    top: 0;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    background: #fff;
    border-radius: 5px;
    z-index: 0;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scaleX(0);
    transform-origin: left top;
    opacity: 0;
}

/*孫階層のスライドイン*/
.gnav_child li:hover .gnav_gchild {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}

/*孫階層の◀の装飾*/
.gnav_gchild::before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(0 0px 5px rgba(25, 26, 26, 0.3));
    z-index: -1;
}

/*孫階層の角丸設定*/
.gnav_gchild > li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.gnav_gchild > li:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*グローバルナビメニュー左表示*/
/*子階層*/
.gnav_child2 {
    visibility: hidden;
    position: absolute;
    left: -50px;
    top: 95%;
    background: #fff;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    border-radius: 5px;
    z-index: 1000;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scaleY(0);
    transform-origin: center top;
    opacity: 0;
}

/*子階層ドロップダウン*/
#gnav > ul > li:hover .gnav_child2 {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

/*子階層の▲の装飾*/
.gnav_child2::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 0px 5px rgba(25, 26, 26, 0.3));
    z-index: -1;
}
.gnav_child2 li {
    background: #fff;
    width:200px;
}
.gnav_gchild2 li {
 background: #fff;
 width:280px;
}

/*子階層の背景の角丸設定*/
.gnav_child2 > li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.gnav_child2 > li:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.gnav_child2 a {
    padding: 10px 5px; 
}

/*孫階層左表示*/
.gnav_gchild2 {
    visibility: hidden;
    position: absolute;
    right: 100%;
    top: 0;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    box-shadow: 0px 3px 10px 2px rgba(25, 26, 26, 0.3);
    background: #fff;
    border-radius: 5px;
    z-index: 0;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scaleX(0);
    transform-origin: left top;
    opacity: 0;
}

/*孫階層左表示のスライドイン*/
.gnav_child2 li:hover .gnav_gchild2 {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}

/*孫階層左表示の◀の装飾*/
.gnav_gchild2::before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(0 0px 5px rgba(25, 26, 26, 0.3));
    z-index: -1;
}

/*孫階層左表示の角丸設定*/
.gnav_gchild2 > li:first-child2 {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.gnav_gchild2 > li:last-child2 {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*その他の設定*/
* {
    box-sizing: border-box;
}

/*スマホ用*/
/* Mixin */
/* reset */
* {
  padding: 0;
  margin: 0;
}

nav.sp {
  height: 50px;
  padding: 0 16px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  /* fade in checked menu */
}
nav .m-menu__checkbox {
  display: none;
}
nav label.m-menu__toggle {
  cursor: pointer;
    position: fixed;
    top: 5px;
    right: 5px;

z-index:999;
background-color: #c4b1ff;
    border-radius: 25px;
    padding: 5px 0 0 5px;
    width: 45px;
}
nav .m-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 450px;
  width: calc(100vw - 0px);
  height: 100%;
  -moz-transform: translate3d(-450px, 0, 0);
  -o-transform: translate3d(-450px, 0, 0);
  -ms-transform: translate3d(-450px, 0, 0);
  -webkit-transform: translate3d(-450px, 0, 0);
  transform: translate3d(-450px, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
}
nav .m-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: none;
}
nav .m-menu__header {
  padding: 0 16px;
  height: 80px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
nav .m-menu__header span {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
nav .m-menu .m-menu {
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}
nav .m-menu ul {
  height: 100%;
  overflow-y: auto;
}

nav .m-menu ul li a, nav .m-menu ul li label {
  display: block;
  text-align: center;
  padding: 0 15px;
  line-height: 80px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  font-size: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
nav .m-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
nav .m-menu ul li .-invisible {
  border-bottom: 0;
}
nav .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border: 1px solid;
  padding: 0;
  margin:0 0 15px 10px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

    border: 1px solid;
    border-radius: 25px;
    position: absolute;
    top: 15px;
    width: 40px;
    height: 40px;
    padding: 3px 0 0 3px;
}
nav .m-menu__checkbox:checked ~ .m-menu__overlay {
  display: block;
}
nav .m-menu__checkbox:checked ~ .m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

th.cen{
 text-align:center;
    border-bottom: 1px dotted #e5dcdc;
    padding: 3px;
}

.wrapper {
  width: 100%;
  height: 100%;
position: absolute;
    top: 0px;
    right: 0px;
  margin: 0 auto;
  overflow: hidden;
}

  </style>