* {
  font-size: 14px;
  font-family: 'Meriyo';
  color: #000;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.container {
  width: 100%;
  display: flex;
}

/* ヘッダー */
header {
  width: 100%;
  height: 45px;
  background-color: #18428C;
}
.header-container {
  width: 100%;
  height: 45px;
  min-width: 1770px;
  padding: 0 83px;
  display: flex;
  align-items: center;
  margin: auto;
}
.header-left, .header-right {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-left {
  width: 790px;
  justify-content: flex-start;
}
.header-right {
  width: calc(100% - 790px);
  justify-content: flex-end;
}
header .title {
  width: 370px;
  height: 32px;
  margin: 0;
}
header .title span {
  color: #FFF;
  font-size: 22px;
  text-decoration: none;
}
header .title span:hover,
header .title img:hover {
  cursor: pointer;
}
header .separater {
  font-size: 16px;
  color: #FFFFFF;
}
header .infoKind {
  width: 100px;
  height: 100%;
  border-left: 1px solid #FFFFFF;
}
header .infoKind:last-child {
  border-right: 1px solid #FFFFFF;
}

header .infoKind span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #18428C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 45px;
  text-decoration: none;
}
header .infoKind span:hover {
  cursor: pointer;
  color: #18428C;
  background-color: #FFFFFF;
}
header .infoKind span.active {
  color: #18428C;
  background-color: #FFFFFF;
}

header .link {
  width: fit-content;
  height: 100%;
  margin-left: 10px;
}
header .link span {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 45px;
  text-decoration: none;
  white-space: nowrap;
}
header .link span:hover {
  cursor: pointer;
  color: #FF0000;
}


header #spsite,
header #mail {
  width: 235px;
  height: 26px;
  line-height: 26px;
  margin-right: 15px;
  padding: 1px 0px 1px 10px;
  border-radius: 5px;
  background-color: #FFF;
}
header #spsite,
header #mail {
  font-size: 16px;
}
header #mail {
  width: 215px;
}

/* リンク */
a {
  color: #0000FF;
}
a:active {
  color: #FF0000;
}
a:hover {
  cursor: pointer;
}
#spsite a,
#mail a {
  color: #18428C;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}
#lgsite a {
  color: #FFF;
  font-weight: bold;
}
#lgsite a:hover {
  color: #87CEEB;
}
#spsite a:hover,
#mail a:hover {
  color: #FF0000;
}

/* 画像 */
img {
  vertical-align:middle;
}

/* アイコン */
.icon-arrowR-blue::before {
  content: url(../../img/common/icon/arrowRight-blue.png);
  vertical-align: middle;
  padding-right: 10px;
}
.icon-arrowR-blue-2::after {
  content: url(../../img/common/icon/arrowRight-blue.png);
  position: relative;
  top: 1px;
  right: -13px;
}
.icon-arrowR-white::before {
  content: url(../../img/common/icon/arrowRight-white.png);
  vertical-align: middle;
  padding-right: 10px;
}
.icon-info::before {
  content: url(../../img/common/icon/info.png);
  position: relative;
  top: 3px;
  right: 10px;
}
.icon-external::after {
  content: url(../../img/common/icon/external.png);
  vertical-align: super;
  padding-left: 5px;
}
.icon-arrowR-black::before {
  content: url(../../img/common/icon/arrowRight-black.png);
  vertical-align: middle;
  padding-right: 5px;
}