<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
.menuList {
  height: 99px;
}
.menuList ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 99px;
  padding: 0 30px 0 0;
}
.menuList ul li {
  padding: 0 15px;
}
.menuList ul li a {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #666666;
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  padding: 4px 0;
}
.menuList ul li a span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: #3fbff0;
}
.menuList ul li a.current,
.menuList ul li a:hover {
  color: #333333;
  text-decoration: none;
  margin-bottom: -2px;
  border-bottom: 2px solid #3fbff0;
}
.nav-company a,
.nav-contact a {
  display: block;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  width: 164px;
  height: 99px;
  padding: 30px 15px;
}
.nav-company a {
  background: #036eb8;
}
.nav-company a.current,
.nav-company a:hover {
  background: #00385e;
  text-decoration: none;
}
.nav-contact a {
  background: #7a8a8f;
}
.nav-contact a.current,
.nav-contact a:hover {
  background: #4b5558;
  text-decoration: none;
}
.nav-company a span,
.nav-contact a span {
  display: block;
  font-size: 13px;
  width: 100%;
}
.nav-map a {
  display: block;
  font-size: 40px;
  color: #333333;
  text-align: center;
  line-height: 1;
  width: 99px;
  height: 99px;
  padding: 15px 15px;
  background: #e4f6fd;
}
.nav-map a.current,
.nav-map a:hover {
  background: #afc1c8;
  text-decoration: none;
}
.nav-map a span {
  display: inherit;
  font-size: 15px;
  text-align: center;
  margin-top: 5px;
}
@media only screen and (max-width: 1139px) {
  .menuList {
    display: none;
  }
  #menuOverlay {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    position: fixed;
    z-index: 9997;
  }
  #switchBtnArea {
    background: #ffffff;
    position: relative;
  }
  #switchBtnArea #switchBtn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: block;
    background: #036eb8;
    position: absolute;
    border-radius: 5px;
    z-index: 9998;
  }
  #switchBtnArea #switchBtn span {
    right: 20%;
    width: 60%;
    height: 4px;
    display: block;
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.2s linear;
  }
  #switchBtnArea #switchBtn span:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  #switchBtnArea #switchBtn span:nth-of-type(2) {
    top: 18px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #switchBtnArea #switchBtn span:nth-of-type(3) {
    bottom: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  #switchBtnArea #switchBtn.btnClose {
    background: transparent;
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
    bottom: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #rwdMenuWrap {
    top: 0;
    right: -200px;
    width: 200px;
    height: 100%;
    background: #ffffff;
    overflow: auto;
    position: fixed;
    z-index: 9999;
  }
  #rwdMenuWrap ul {
    width: 100%;
  }
  #rwdMenuWrap ul li {
    width: 100%;
    border-bottom: #aaa 1px solid;
  }
  #rwdMenuWrap ul li a {
    font-size: 14px;
    padding: 15px;
    text-align: left;
    display: block;
    background: #ffffff;
    position: relative;
  }
  #rwdMenuWrap ul li a span {
    display: none;
  }
  #rwdMenuWrap ul li a:after {
    content: "";
    margin-top: -4px;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    color: #888;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 2px solid #b0b0b0;
    border-right: 2px solid #b0b0b0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #contents {
    width: 100%;
  }
  #contents p {
    padding: 0 20px 2em 20px;
  }
  .nav-company a,
  .nav-contact a,
  .nav-map a {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  .nav-company a span,
  .nav-contact a span {
    display: none;
  }
  .nav-map a {
    height: autp;
    padding: 15px;
  }
  .nav-map div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-map div i {
    font-size: 18px;
  }
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
.menuList &gt; ul:before,
.menuList &gt; ul:after {
  content: " ";
  display: table;
}
.menuList &gt; ul:after {
  clear: both;
}
.menuList &gt; ul {
  *zoom: 1;
}
</pre></body></html>