body {
  margin: 0;
//  background-color: var(--base-color-white);
}

header {
  margin: 0;
  padding: 0;
  padding-top: var(--base-spacing-height);
  width: 100%;
  text-align: center;
  background-color: var(--base-color-white);
}

#header_logo {
  //margin-top: var(--base-spacing-height);
  text-align: center;
}

#header_logo:hover {
  opacity: 0.7;
}

#gnav {
  position: relative;
  width: 100%;
  text-align: center;
  padding: var(--base-spacing-height) 0 0 0;
  z-index: 1;
}

#gnav.fixed {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
//  z-index: 1000;
  animation: none;
  opacity: 0.9;
  z-index: 2;
}

#gnav.bounce {
  animation: bounceIn 0.5s ease;
}

#gnav-list {
  width: calc(1140px - calc(var(--base-spacing-width)*2));
  margin: 0 auto;
  padding:
   0
   var(--base-spacing-width);
  height: 75px;
  background-color: var(--base-color-primary);
  border-radius: var(--base-border-radius);
  line-height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gnav-item {
  display: inline-block;
}

.gnav-link {
  display: inline-block;
  height: 1em;
  width: auto;
  margin: 0 0.6em;
  line-height: 1.2em;
  font-style: normal;
  color: var(--base-color-white);
  font-size: calc(var(--base-font-size)*0.85);
  text-decoration: none;
//outline: solid 1px red;
}

.gnav-link:not(.disabled):hover {
  text-decoration: underline;
}

.gnav-link.disabled {
  opacity: 0.3;
}

#gnav-list-case_studies_boshu {
  margin-left: 0.6em;
  padding-left: 0.6em;
  //border-left: dotted 1.5px #fefefe;
  border-left: dotted 2px #fefefe;
}

#page-container {
  padding: calc(var(--base-spacing-height)*3/2) 0;
  width: 100%;
  text-align: center;
  background-color: var(--base-color-white);
}

#page {
  margin: 0 auto;
  width: var(--base-page-width);
}

#page-title {
  font-size: calc(var(--base-font-size)*1.5);
  color: var(--base-color-primary);
}

#page-subtitle {
}

#page-catch {
}

#page-lead {
}

.lnav-item {
  display: inline-block;
}

.lnav-link {
  display: inline-block;
  height: 1em;
  width: auto;
  margin: 0.3em;
  padding: 0;
  padding-top: calc((45px - 1em)/2 - 0.1em);
  padding-bottom: calc((45px - 1em)/2 + 0.1em);
  border: solid 2px var(--base-color-primary);
  border-radius: calc(45px/2 + 2px);
  vertical-align: middle;
  line-height: 1em;
  text-align: center;
  font-style: normal;
  color: var(--base-color-white);
  background: var(--base-color-primary);
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.lnav-link:not(.disabled):hover {
  background: var(--base-color-white);
  color: var(--base-color-primary);
}

.lnav-link.disabled {
  opacity: 0.5;
}
