html {
  overflow-y: scroll;
}

body {
  margin-right: auto;
  margin-left : auto;
  background-color: #FFF;
  color: #000;
  letter-spacing: 1px;
  font-size: 14px;
  font-family:'CI', 'Meiryo', sans-serif;
  line-height: 18px;
  max-width:1200px;
}

@media (max-width: 950px) {
  .brDesktop {
    display: none;
  }
}
@media (min-width: 951px) {
  .brMobile {
    display: none;
  }
}
@media (max-width: 950px) {
  body {
    padding-top: 50px;
  }
}
@media (min-width: 951px) and (max-width: 1199px) {
  body {
    padding-top: 182px;
  }
}
@media (min-width: 1200px) {
  body {
    padding-top: 146px;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
@media (min-width: 951px) {
  .header {
    text-align : center;
    max-width:1200px;
  }
}
@media (max-width: 950px) {
  .header-spmenubg {
    position: fixed;
    z-index: 50;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
    transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
  }
}
@media (max-width: 950px) {
  .header.menu .header-spmenubg {
    visibility: visible;
    opacity: 0.75;
  }
}
@media (max-width: 950px) {
  .header-inner {
    height: 50px;
  }
}
@media (min-width: 951px) {
  .header-inner {
    position: relative;
  }
}
@media (min-width: 1200px) {
  .header-inner {
    margin-right: auto;
    margin-left: auto;
    width: 1200px;
  }
  .header-inner::after {
    display: block;
    clear: both;
    content: "";
  }
}
@media (min-width: 951px) and (max-width: 1199px) {
  .header-column {
    margin-left: 24px;
    height: 96px;
  }
  .header-column::after {
    display: block;
    clear: both;
    content: "";
  }
}
@media (min-width: 1200px) {
  .header-column {
    float: left;
    margin-left: 29px;
  }
}
@media (max-width: 950px) {
  .header-logo {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 12px;
    padding-top: 9px;
  }
  .header-logo a {
    display: inline-block;
  }
  .header-logo img {
    display: block;
    width: auto;
    height: 32px;
  }
}
@media (min-width: 951px) {
  .header-logo {
    float: left;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .header-logo img {
    display: block;
  }
}
@media (max-width: 950px) {
  .header-language {
    display: none;
  }
}
@media (min-width: 951px) {
  .header-language {
    float: left;
    margin-top: 64px;
    margin-bottom: 0;
    margin-left: 20px;
  }
  .header-language img {
    display: block;
  }
}
.header-drawer-button {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 500;
  height: 20px;
}
@media (min-width: 951px) {
  .header-drawer-button {
    display: none;
  }
}
.header-drawer-button a,
.header-drawer-button a span {
  display: inline-block;
  box-sizing: border-box;
}
.header-drawer-button a {
  position: relative;
  width: 26px;
  height: 20px;
}
.header-drawer-button a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ccc;
}
.header-drawer-button a span:nth-of-type(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
.header.menu .header-drawer-button a span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.header-drawer-button a span:nth-of-type(2) {
  top: 8px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.header.menu .header-drawer-button a span:nth-of-type(2) {
  opacity: 0;
}
.header-drawer-button a span:nth-of-type(3) {
  bottom: 0;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
.header.menu .header-drawer-button a span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}
@media (max-width: 950px) {
  .header-nav {
    position: fixed;
    top: 0;
    z-index: 300;
    visibility: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 50px 50px 0;
    max-height: 100%;
    width: 100%;
    list-style-type: none;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
    transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
  }
  .header.menu .header-nav {
    visibility: visible;
    opacity: 1;
  }
  .header-nav > li:last-child {
    padding-bottom: 50px;
  }
  .header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 38px;
  }
}
@media (min-width: 951px) {
  .header-nav {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    font-size: 14px;
    line-height: 18px;
  }
  .header-nav::after {
    display: block;
    clear: both;
    content: "";
  }
  .header-nav li {
    float: left;
  }
  .header-nav li.englishLink {
    display: none;
  }
  .header-nav a {
    position: relative;
    display: table-cell;
    padding: 0 12px;
    color: #000;
    text-decoration: none;
  }
  .header-nav a:hover {
    color: #1968b3;
  }
}
@media (min-width: 1200px) {
  .header-nav {
    float: right;
    margin-right: 26px;
  }
}
@media (min-width: 951px) and (max-width: 1199px) {
  .header-nav a {
    height: 36px;
  }
}
@media (min-width: 1200px) {
  .header-nav a {
    height: 96px;
    vertical-align: middle;
  }
}
@media (max-width: 950px) {
  .header-nav-sub {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 32px;
    list-style-type: none;
  }
}
@media (min-width: 951px) {
  .header-nav-sub {
    display: none;
  }
}

.submenu {
  max-width:1200px;
  height: 50px;
  background-color: #7a7a7a;
  text-align: center;
  font-size: 14px;
  line-height: 50px;
}
@media (max-width: 950px) {
  .submenu {
    display: none;
  }
}
@media (min-width: 951px) and (max-width: 1199px) {
  .submenu {
    top: 132px;
  }
}
@media (min-width: 1200px) {
  .submenu {
    top: 96px;
  }
}
.submenu-list {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
.submenu-list::after {
  display: block;
  clear: both;
  content: "";
}
@media (min-width: 1200px) {
  .submenu-list {
    max-width: 1200px;
  }
}
.submenu-list li {
  float: left;
}
.submenu-list li a {
  color: #FFF;
  border-radius: 100vh;
  text-decoration: none;
  padding:3px 5px;
}
.submenu-list li + li {
  margin-left: 3em;
}

.content {
  padding-bottom: 80px;
  background-color: #fff;
}
.content-header {
  position: relative;
  text-align: center;
}
@media (max-width: 950px) {
  .content-header {
    height: 100px;
    background-size: auto 100px;
    line-height: 100px;
  }
}
@media (min-width: 951px) {
  .content-header {
    display:none;
  }
}
.content-header h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.content-header img {
  vertical-align: middle;
}
@media (max-width: 950px) {
  .content-header img {
    width: auto;
    height: 22px;
  }
}
.content-header::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/img/ami.png) left top repeat;
  content: "";
}
@media (max-width: 950px) {
  .content-body {
    margin-right: 12px;
    margin-left: 12px;
  }
}
@media (min-width: 951px) and (max-width: 1199px) {
  .content-body {
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 48px;
    padding-left: 48px;
    max-width: 1116px;
  }
}
@media (min-width: 1200px) {
  .content-body {
    margin-right: auto;
    margin-left: auto;
    width: 1020px;
  }
}

.footer {
  padding-top: 49px;
  padding-bottom: 47px;
  background: #fff url(/img/footer-line.png) left top repeat-x;
  text-align: center;
}
.footer-logo {
  margin-bottom: 13px;
}
.footer-logo img {
  vertical-align: bottom;
}
.footer-address {
  margin-bottom: 30px;
  color: #000;
  line-height: 18px;
}
@media (max-width: 950px) {
  .footer-address {
    font-size: 10px;
  }
}
@media (min-width: 951px) {
  .footer-address {
    font-size: 13px;
  }
  .footer-address span ~ span {
    margin-left: 2em;
  }
}
.footer-copyright {
  color: #999;
  font-size: 10px;
  line-height: 18px;
}
@media (min-width: 951px) {
  .footer-copyright span ~ span {
    margin-left: 1em;
  }
}


@media (max-width: 950px) {
  .content-pan {
    display:none;
  }
}
@media (min-width: 951px) {
  .content-pan {
    padding:10px;
  }
  .content-pan a {
    text-decoration:none;
  }
}