@charset "UTF-8";
/* ------------------------------------------------------------
スマホ用グローバルナビ
------------------------------------------------------------ */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  background: #f9d525;
  z-index: 700;
}

.menu-btn:hover {
  background: #f9d525;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 24px;
  background: #ffffff;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

@media print, screen and (min-width: 1200px) {
  .menu-btn {
    display: none;
  }
}

#menu-btn-check {
  display: none;
}

#menu-btn-check:checked ~ .menu-btn span {
  background: rgba(0, 0, 0, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;
}

.menu-content {
  overflow-y: scroll;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 600;
}

.menu-content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  height: 80px;
  margin-right: 75px;
  padding: 0 45px 0 0;
}

.menu-content .logo img {
  max-height: 80px;
}

.menu-content .sp-gnav {
  margin: 0 0 90px;
  background: #ffffff;
}

.menu-content .sp-gnav ul li {
  border-top: 1px solid #cccccc;
}

.menu-content .sp-gnav ul li:nth-child(4) {
  border-top: none;
}

.menu-content .sp-gnav ul li:last-child {
  border-bottom: 1px solid #cccccc;
}

.menu-content .sp-gnav ul li a {
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 1;
  padding: 20px 15px;
}

.menu-content .sp-gnav ul li a i {
  position: absolute;
  right: 15px;
}

.menu-content .sp-gnav ul li a:hover, .menu-content .sp-gnav ul li a.current {
  color: #ffffff;
  background: #053a7c;
  -webkit-transition: .1s;
  transition: .1s;
}

.menu-content .sp-gnav ul li ul li {
  border-top: 1px dashed #cccccc;
}

.menu-content .sp-gnav ul li ul li:nth-child(4) {
  border-top: 1px dashed #cccccc;
}

.menu-content .sp-gnav ul li ul li:last-child {
  border-bottom: none;
}

.menu-content .sp-gnav ul li ul li a {
  font-size: 14px;
  padding: 15px 15px 15px 2em;
}

.menu-content .sp-contact {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding: 15px 0 12px;
  background: #f5f5f5;
}

.menu-content .sp-contact .tel-area {
  font-size: 13px;
}

.menu-content .sp-contact .tel-area span,
.menu-content .sp-contact .tel-area a {
  font-size: 24px;
  color: #000000;
}
/*# sourceMappingURL=nav.css.map */