*{margin: 0;
 padding: 0; }
/* ↑全体のアキをなくす　*/

/* 画面サイズが1279px以下の時はPC用メニューは非表示 */
@media screen and (max-width: 1279px) {
  .pc-menu {
    display: none;
  }
	//上部部分固定取り消す
div.pc-menu{display:none;}
header{position:static}
#cover{
margin-top:0px !important;
  left: 0;
	}
}
/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 1280px) {
  .jan-menu {
    display: none;
  }
}

#cover{
margin-top:60px !important;
  left: 0;
	}
/* 以下*/
header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background: #eeeeee;
	width:100%;
  height: 60px;
}
.main-menu {
  margin: 0;
  display: flex;
  width: 1280px;
}
.logo {
  text-align: center;
 // padding: 18px;
  font-size: 24px;
  width: 200px;
//  background: #dddddd;
}
/* ロゴの画像 */
.logo img{height:60px !important; width:auto; margin:0;}

.pc-menu {
  width: 100%;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  text-align: center;
  font-size: 16px;
  width: 15%;
}
.pc-menu > ul > li > a {
  display: block;
  text-decoration: none;
  color: #0000cc;
	border-right:dotted 1px #bcc;
  line-height: 60px;
}
.pc-menu > ul > li > a:hover {
  color: red;
  background: #cccccc;
}
.jan-menu_box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #cc3584;
border:solid 1px #cc3584;
border-radius:0 0 0 15px; 
}
.jan-menu_box span,
.jan-menu_box span:before,
.jan-menu_box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
//ハンバーガーの線丸み  border-radius: 3px;
  background: #ffffff;
  position: absolute;
}
.jan-menu_box span:before {
  bottom: 8px;
}
.jan-menu_box span:after {
  top: 8px;
}
#jan-menu_check {
  display: none;
}
#jan-menu_check:checked ~ .jan-menu_box span {
  background: rgba(255, 255, 255, 0);
}
#jan-menu_check:checked ~ .jan-menu_box span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#jan-menu_check:checked ~ .jan-menu_box span::after {
  top: 0;
  transform: rotate(-45deg);
}
#jan-menu_check:checked ~ .jan-menu_content {
  left: 65%;
	//出てきたcontentメニューの位置
}
.jan-menu_content {
  width: 35%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: rgba(204,53,132,0.8);
transition: all 0.5s;　　
//動き
}
.jan-menu_list {
  padding: 70px 10px 0;
}
.jan-menu_item {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
a.jan-menu_link {
  display: block;
  width: 100%;
  font-size: 15px;
	font-weight:600;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}
a.jan-menu_link:hover{color:#006;}

///使ってないリスト//
.nav1{
	width:100%;
	margin:0;
	padding:0;
	text-align:center;
}

ul.nav1-list{
width:100%;
	padding:0;
	margin:0;}
	
li.nav1-item{
    /* border-boxはwidthをpaddingとborderを含めたサイズにする */
		box-sizing: border-box;
    display: inline-block;
	vertical-align: middle;
    border: 1px solid #999;
    width: 16%;
    padding:15px 10px;
	margin:0 -3px;
	font-size:0.9rem;
    background: #eee;
	font-family:"Yu Gothic";
	text-align:center;
	line-height:1;
}

li.nav1-item a{
font-weight:600;
text-decoration:none;
display:block;
}

li.nav1-item a:hover{color:red;}


@media screen and (max-width: 641px) {
ul.nav1-list{
width:100%;}

li.nav1-item{font-size:0.85em;
height:25px;
padding:5px 5px !important;}
}

@media screen and (max-width: 1200px) {
//上部部分固定取り消す
div.pc-menu{display:none;}
header{position:static}
#cover{
margin-top:0px !important;
  left: 0;
	}
}