@charset "UTF-8";
.content {
 width:100%;
 margin:0 auto;
 position: relative;
}

#grovalmenu {
  position: fixed;
  background-color: #fff;
  border-bottom: 5px solid #002467;
  position:fixed;
  z-index:9999;
}
#logo {
  width: 40%;
  margin: 0 auto;
  padding: 25px 0 10px 0;
}
/*--------------------------------------
  ハンバーガー・メニュー
--------------------------------------*/
.menu-btn {
  position: absolute;
  top: 25px;
  right: 20px;
  display: flex;
  height: 25px;
  width: 25px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  padding: 5px;
  background: #9fa0a0;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
.menu-btn span:after {
  color: #fff;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
/*--------------------------------------
  ハンバーガー・メニュー・コンテンツ
--------------------------------------*/
.gnavicontent {
  width: 90%;
  margin: 0 auto;
}
.gnavi-footer {
  margin: 0px 0 0 0;
  padding: 10px 0 0 0;
  color: #fff;
  border-top: dashed 1px #fff;
  font-size: .85em;
}
.gnavi-footer li {
  padding: 0 0 5px 0;
}
.gnavi-footer a:link, .gnavi-footer a:visited {
  color: #fff;
}
.sns {
  display: flex;
  flex-wrap: wrap;
  font-size: 3.5em;
}
.menu-content-title {
  font-size:1.5em;
    color: #fff;
    text-align:center;
    margin:30px 0;
}
.menu-content ul {
}
#menu-humberger-navi li {
  font-size: 1em;
  margin:0 0 20px 0;
}
#menu-humberger-navi li:before {
  font-family: "Font Awesome 6 Free";
  content: '\f0da';
  font-weight: 900;
  color: #fff;
  margin:0 5px 0 0;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #002467;
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
/*--------------------------------------
  トップナビメニュー
--------------------------------------*/
.menu-main-navi-container {
  margin: 0;
}
#menu-main-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
#menu-main-navi li {
  width: 27%;
  background: #fff;
  border: #E60013 3px solid;
  border-radius: 8px;
  text-align: center;
  padding: 3% 1.5%;
  font-weight: bold;
  margin: 0 .5% 5% .5%;
  font-size:1em;
}
/*--------------------------------------
  施設メニュー
--------------------------------------*/
#menu-facility-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  align-items: center;
  font-size:1.25em;
}
#menu-facility-navi li {
  width: 100%;
  background: #fff;
  border: #E60013 3px solid;
  border-radius: 8px;
  text-align: center;
  padding: 3% 1.5%;
  font-weight: bold;
  margin: 0 0 5% 0;
}

/*--------------------------------------
  チームメニュー
--------------------------------------*/
#menu-team-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  font-size:1.25em;
}
#menu-team-navi li {
  width: 44%;
  background: #fff;
  border: #E60013 3px solid;
  border-radius: 8px;
  text-align: center;
  padding: 3% 1.5%;
  font-weight: bold;
  margin: 0 0 5% 0;
  line-height: 1.2em;
}
