@charset "UTF-8";
/* moc_web CSS Document */
/********************************

全体

*********************************/
body, html {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 400;
  color: #000;
}
/*==========タイトルタグ==========*/
h1, h2 {
  font-weight: 500;
}
h1 {
  font-size: 32px;
  line-height: 1.5em;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 24px;
  font-weight: 400;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
/*****画面サイズmd以下の時の設定*****/
@media (max-width: 991px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 21px;
  }
  h3 {
    font-size: 19px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
}
/*==========背景色==========*/
.nk_bg_white {
  background-color: #fff;
}
.nk_bg_black {
  background-color: #000;
}

/*==========フォントカラー==========*/
.nk_fontclr_base {
  color: #000000;
}
.nk_fontclr_white {
  color: #ffffff;
}

/*==========フォントファミリー明朝系==========*/
.nk_font_mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
}
/*==========テキストリンク==========*/
a:link {
  color: #000000;
  text-decoration: none;
}
a:visited {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #666666;
  text-decoration: none;
}
a:active {
  color: #000000;
  text-decoration: none;
}
/*==========行間==========*/
.nk_line_height_20 {
  line-height: 2.0em;
}
.nk_line_height_18 {
  line-height: 1.8em;
}
.nk_line_height_16 {
  line-height: 1.6em;
}

/********************************

ヘッダー

*********************************/
header {
  position: fixed;
  width: 100%;
  z-index: 20;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  inset: 0; /*top, bottom, right, left を同時に指定*/
}
/*=====ナビ=====*/
/*header>nav*/
.nk_navi {
  padding: 0 0 0 0;
  position: relative;
  /*height: 110px;*/
  width: 100%;
  margin: 0 auto;
}
/*=====企業ロゴ=====*/
.nk_logo {
  width: 300px;
  position: absolute;
  top: 30px;
  left: 50px;
}
.nk_logo a img {
  margin-right: 10px;
}
/*******************************
    画面サイズlg以上の時の設定
*******************************/
@media (min-width: 992px) {
  /*ulを囲むdiv：lg以上の時のナビゲーションの位置*/
  .navbar-expand-lg .nk_navi_list {
    margin-top: 85px;
  }
  .navbar-expand-lg .nk_navi_list .nk_navbar-nav {
    position: absolute;
    right: 30px;
  }
  /*リストスタイル*/
  .nk_nav_item {
    padding-top: 0;
    text-align: center;
    width: auto;
    font-weight: 500;
    font-size: 1.1rem;
    margin-right: 30px;
  }
  .nk_nav_item a {
    color: #182987;
  }
  .nk_nav_item a:hover {
    color: #2B8DC8;
  }
  /*各ページのTOPのズレ解消*/
  .nk_margin_pagetop {
    margin-top: -100px;
    padding-top: 100px;
  }
}
/*******************************
    画面サイズmd以下の時の設定
*******************************/
@media (max-width: 991px) {
  header {
    position: fixed;
    top: 0;
    height: 60px;
  }
  /*=====ロゴ=====*/
  .nk_logo {
    width: 280px;
    position: absolute;
    top: 15px;
    left: 10px;
  }
  .nk_logo a img {
    width: 60px;
    height: auto;
  }
  /*=====ナビ=====*/
  .nk_navi {
    margin: 0 auto;
    padding: 0;
  }
  .nk_navi_list {
    background-color: #FCF6EF;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .nk_nav_item {
    list-style: none;
    text-align: center;
    width: 100%;
    margin: auto;
  }
  .nk_nav_item a {
    color: #182987;
    text-decoration: none;
    padding: 20px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: solid 1px #666;
    margin: auto 20px;
    transition: .5s;
  }
  /*ul>li>a*/
  .navbar-light .navbar-nav .nk_nav_link {
    padding-left: 0;
    padding-top: 1.3rem;
    padding-bottom: 1.5rem;
  }
  /*ナビゲーションのリンクカラー*/
  .navbar-light .navbar-nav .nk_fontclr_base {
    color: #182987;
    /*border-bottom: solid 1px #009266;*/
  }
  /*メニューの上線：リスト1番目*/
  .navbar-light .navbar-nav:nth-child(1) {
    border-top: solid 1px #009266;
  }
  /*各ページのTOPのズレ解消*/
  .nk_margin_pagetop {
    margin-top: -60px;
    padding-top: 60px;
  }
  /*アンカーリンク位置のズレ解消
  .nk_margin_pagetop_sp {
    margin-top: -60px;
    padding-top: 60px;
  }*/
  /*menu未使用の為非表示*/
  /*.menu {
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 99;
    cursor: pointer;
  }
  .menu_line {
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu_line_center {
    top: 9px;
  }
  .menu_line_bottom {
    bottom: 0;
  }
  .menu_line_top.active {
    top: 8px;
    transform: rotate(45deg);
  }
  .menu_line_center.active {
    transform: scaleX(0);
  }
  .menu_line_bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
  }*/
}
/********************************

フッター

*********************************/
footer {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #b9ead9;
  margin-top: 100px;
}
.foot-line {
  width: 100%;
  height: 20px;
}
footer ul {
  margin: 0;
  padding: 0;
}
/*ページトップへ*/
#arrow li {
  list-style: none;
  margin: 0 0 0 0;
}
#arrow li a {
  position: fixed;
  bottom: 90px;
  right: 0px;
  z-index: 11; /*レイヤーの最上位にする*/
}
/*円*/
#arrow li a::before {
  background: #01936a;
  border-radius: 50%;
  content: "";
  padding: 25px;
  position: absolute;
  right: 11px;
  top: 10px;
  width: 1px;
}
/*矢印*/
#arrow li a::after {
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  border-radius: 1px;
  content: "";
  margin: 0 0 0 10px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
}
#arrow li a:hover {
  -ms-filter: "alpha( opacity=70 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
/*========ロゴ部分========*/
.footer_logo {
  width: 200px;
  margin: 15px auto;
}
.footer_logo a img {
  /*width: 100%;*/
}
/*========ナビ部分========*/
#footer_menu {
  margin: 0 auto;
  padding: 0 0 58px 0;
}
#footer_menu li {
  box-sizing: border-box;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  list-style: none;
  border-right: 1px solid #000;
  padding: 0 1.2rem;
  margin: 0.5rem 0 0 0;
}
#footer_menu li:last-child {
  border-right: none;
}
#footer_menu li a {
  text-align: center;
  display: block;
  color: #000;
}
#footer_menu li a:hover {
  color: #666666;
  text-decoration: none;
}
/*========コピーライト部分========*/
#footer_copy {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
/*****画面サイズsm以下の時の設定*****/
@media (max-width: 767px) {
	#footer_menu li {
  border-right: 0px solid #000;
}
}
/********************************

トップページ

*********************************/
main {
  min-height: 80vh;
}
/*メインイメージ*/
.main_image {
  position: relative;
  width: 100%;
  /*padding-top: 75%;*/
  margin: 100px auto 0 auto;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  background-size: cover;
}

.main_image h1 {
  position: absolute;
  top: 30%;
  width: 95%;
  color: #000;
  font-size: 38px;
  text-align: center;
}
/*imgの場合*/
.main_image img {
  width: 100%;
  /*height: 100vh;*/
}
/*****画面サイズmd以下の時の設定*****/
@media (max-width: 991px) {
  .main_image {
    margin: 60px auto 0 auto;
  }
  .main_image h1 {
    position: absolute;
    top: 30%;
    width: 95%;
    color: #fff;
    font-size: calc(1.0em + 1.4vw);
    text-align: center;
  }
  }
table {
  border: none;
}
table tbody tr th, table tbody tr td {
  border: none;
  vertical-align: top;
  padding: 20px;
}
table tbody tr th {
  width: 100px;
}
/********************************

個人情報保護方針ページ

*********************************/
.privacy-cont, .security-cont {
  line-height: 2;
}
.privacy-cont h3 {
  border-bottom: solid 1px #000;
  padding-bottom: 7px;
}
.privacy-cont h4 {
  margin-top: 30px;
}
.privacy-cont p, .security-cont p {
  padding-left: 15px;
}
/********************************

情報セキュリティページ

*********************************/
.security-cont h2 {
  font-size: 20px;
  margin-top: 30px;
}