/* 画面サイズが1279px以下の時はPC用メニューは非表示 */




header {
  display: flex;
  background: #eeeeee;
  height: 80px;
  padding-top: 10px;
}

.main-menu {
  z-index: 100;
  width: 100%;
  position: -webkit-sticky;
position: sticky;
top: 0;
}
.pc-menu {
  min-height: 50px;
  width: 100%;
background: #4682b4;
  position: -webkit-sticky;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
  position: -webkit-sticky;
}
.pc-menu > ul > li {
  text-align: center;
  font-size: 18px;
  width: 25%;
}
.pc-menu > ul > li > a {
  display: block;
  color: #fff;
  font-weight: bold;  
  text-align: center;
  text-decoration: none;
  border-left: 1px solid #ffffffff;
  border-right: 1px solid #ffffffff;
  line-height: 30px;
  padding: 12px 0 2px;
}
.pc-menu > ul > li > a:hover {
  background: #165e83;
}
#red{
  color : #dc143c; 
}
.sp-menu__box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 70px;
  width: 80px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #3584bb;
}
.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  position: absolute;
}
.sp-menu__box span:before {
  bottom: 8px;
}
.sp-menu__box span:after {
  top: 8px;
}
#sp-menu__check {
  display: none;
}
#sp-menu__check:checked ~ .sp-menu__box span {
  background: rgba(255, 255, 255, 0);
}
#sp-menu__check:checked ~ .sp-menu__box span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#sp-menu__check:checked ~ .sp-menu__box span::after {
  top: 0;
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .sp-menu__content {
  left: 0;
}
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #3584bb;
  transition: all 0.5s;
}
.sp-menu__list {
  padding: 70px 10px 0;
}
.sp-menu__item {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.sp-menu__link {
  font-weight: bold;  
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}

body{
  background: #eeeeee;
}

* { 
  margin: 0px; 
  padding: 0px; 
}

.logo{
  float: left;
  padding-top: 0px;
  width: 300PX;
}

.Google{ 
  padding-top: 15px;
  width: 300px;
  height: 30px;
  margin-left: auto;
}

@media screen and (min-width: 771px) {
  .sp-menu {
    display: none;
  }
}

@media screen and (max-width: 770px) {
  .pc-menu {
    display: none;
  }
header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: solid 5px #4682b4;
  background: #eeeeee;
  margin:  auto;
  width: 100%;
  max-width: 1000px;
  height:60px;
  padding-top: 10px;
}
.Google{ 
  display: none;
}
.logo img{
  float: left;
  padding-top: 0px;
  height:60px;
}
.logo{
  float: left;
  padding-top: 0px;
}
}