@media screen and (max-width:480px) {
    .menu-container {
        margin: 0;
    }
    .menu-container .menu {
        border: 1px solid #ccc;
        display: flex;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .menu-container .menu .menu-item {
        flex: 1;
    }
    .menu-container .menu .menu-item a {
        background: #fff;
        border-right: 1px solid #ccc;
        color: #333;
        display: block;
        padding: 0.6em 0.4em;
        text-align: center;
        text-decoration: none;
    }
    .menu-container .menu .menu-item a:hover {
        background: #ccc;
        color: #ffffff;
    }
    .menu-container .menu .menu-item:last-child a {
        border-right: none;
    }
        footer {
        position: absolute;
        bottom: 0;
        width: 100%;
           background: rgba(255,255,255,0.8);
        padding: 20px 0;
    }
        header {
            background: rgba(255,255,255,0.8);
        padding: 10px;
    }
     .wed > a{
    font-size: 20px;
    text-decoration: none;
    color: #222;
    font-family: serif;
    }
}
    @media screen and (max-width: 768px) {
        .menu-container .menu {
            display: none;
            width: 100%;
        }
        .menu-container .menu .menu-item a {
            border-bottom: 1px solid #ccc;
            border-right: none;
        }
        .menu-container .menu .menu-item:last-child a {
            border-bottom: none;
        }
    }


@media screen and (min-width:480px) {
 .wed > a{
    font-size: 30px;
    text-decoration: none;
    color: #222;
    font-family: serif;
    }
    ul {
        padding: 14px 0 0;
        justify-content: flex-end !important;
        display: flex;
        margin-top: -38px;
    }
    ul li {
        padding: 0 20px;
    }
    ul li a {
        text-decoration: none;
        color: black;
        font-size: 14px;
    }
    .header-in {
        width: 980px;
        margin: 0 auto;
    }
    .footer-in {
        width: 980px;
        margin: 0 auto;
        display: flex;
    }
    header {
            background: rgba(255,255,255,0.8);
        padding: 20px 0;
    }
    footer {
        position: absolute;
        bottom: 0;
        width: 100%;
           background: rgba(255,255,255,0.8);
        padding: 20px 0;
    }
}

.logo{padding:  0;margin:0; }
#nav-drawer {
     position: absolute;
    top: 18px;
    right: 3px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: rgba(255,255,255,.9);/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
      padding: 20px 0 20px 20px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
  .pc{display: none;}
  .sp{display: block;}
  #global-nav ul li{margin: 30px 0;}
  #global-nav ul li a{text-decoration: none;color: #222;font-size: 18px;}
@media screen and (min-width:480px) {
  #nav-open {
    display:none;
  }
  .pc{display: block;}
  .sp{display: none;}
}