@charset "UTF-8";

/* ローディング ここから */
.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #027f85;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {

  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes load1 {

  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

/* ローディング ここまで */

*:not(br) {
  line-height: 1.5;
  font-family: 'ＭＳ Ｐゴシック', 'MS PGothic', 'メイリオ', 'Meiryo', sans-serif;
  color: #111;
  font-size: 14px;
}

:root {
  --dark-blue: #164a84;
  --light-blue: #e8ecef;
  --gray: #78828c;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.wrap {
  background: #027f85 url(/img/index/index_bg.png) center/1920px no-repeat;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

nav {
  width: 260px;
  padding: 30px 30px 0;
  display: block;
}

nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul li {
  width: 50%;
  text-align: center;
  margin-bottom: 30px;
}

@media (pointer: fine) {
  nav ul li:hover {
    cursor: pointer;
  }

  footer #startMenu ul li:hover a,
  footer #startMenu ul li:hover .underLine {
    color: #fff;
  }


  footer #startMenu ul li:hover {
    background-color: #296a97;
  }

  footer #taskbar_startBtn:hover {
    cursor: pointer;
  }
}

nav ul li img {
  width: 48px;
}

.menu__title {
  color: #fff;
  font-size: 14px;
}

.banner_wrap {
  position: absolute;
  bottom: 42px;
  right: 4px;
}

.banner_wrap img {
  width: 360px;
}

#startMenu.close {
  display: none;
}

footer #taskbar {
  border-top: 2px solid #b4c3d7;
  background-color: var(--gray);
  height: 38px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

footer #taskbar_startBtn {
  margin-left: 10px;
  z-index: 999;
  position: relative;
  flex-shrink: 0;
  padding-bottom: 6px;
}

footer #taskbar_startBtn>img {
  width: 100px;
}

footer .taskbar_toolArea {
  border-top: 2px solid #3c4146;
  border-left: 2px solid #3c4146;
  border-right: 2px solid #b4c3d7;
  border-bottom: 2px solid #b4c3d7;
  padding: 3px 5px;
  max-width: 130px;
}

footer .taskbar_toolArea img {
  width: 16px;
}

footer #clock {
  font-size: 14px;
}

footer #startMenu {
  position: absolute;
  bottom: 38px;
  width: 248px;
  height: 254px;
  background: url(/img/index/start_base.png) left top no-repeat;
  z-index: -1;
}

footer #startMenu ul li {
  margin: 4px 4px 4px 28px;
}

footer #startMenu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.underLine {
  text-decoration: underline;
}

footer #startMenu .menuInner_img {
  height: 48px;
  margin-right: 5px;
}

/* モーダルウィンドウ 最小化 */
#Rect {
  position: absolute;
  border: 1px dotted #FFF;
}

footer .taskbar_windowArea {
  position: relative;
  width: calc(100% - 20px - 110px - 133px);
  padding-left: 5px;
  height: 25px;
  margin-bottom: 5px;
}

footer .taskbar_windowArea::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  background: linear-gradient(to right, #35393d 0, #35393d 50%, #abbbd1 50%, #abbbd1 100%);
  left: 0;
}

footer .taskbar_window {
  list-style: none;
  display: flex;
  justify-content: flex-start;
}

footer .taskbar_window li {
  display: none;
  max-width: 125px;
  width: 10%;
  border-top: 2px solid #b4c3d7;
  border-left: 2px solid #b4c3d7;
  border-right: 2px solid #3c4146;
  border-bottom: 2px solid #3c4146;
  margin-left: 5px;
  font-size: 88%;
  color: #0c3d5e;
  padding: 3px 5px 2px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  max-height: 25px;
}

.taskbar_window .icon {
  display: flex;
  margin-right: 5px;
  align-items: center;
  flex-shrink: 0;
}

.taskbar_window .icon img {
  width: 16px;
}

.taskbar_window .task_ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* モーダルウィンドウ */
.modal_dialog.close {
  display: none;
}

.modal_dialog.open {
  display: block;
}

.modal_dialog {
  position: absolute;
  left: 16%;
  top: 30px;
  width: 960px;
  margin: 0;
  background-color: var(--gray);
  z-index: 1;
}

.modal_content {
  border-radius: 0;
  border-top: 2px solid #b4c3d7;
  border-left: 2px solid #b4c3d7;
  border-right: 2px solid #3c4146;
  border-bottom: 2px solid #3c4146;
  padding: 5px;
  background-color: var(--gray);
  box-shadow: 0 0 0;
}

.modal_header {
  margin-bottom: 5px;
  background-color: #296a97;
  padding: 4px;
  border-bottom: 1px solid #b4c3d7;
  display: flex;
  justify-content: space-between;
}

.modal_header:active {
  cursor: grab;
}

.modal_header ul {
  display: flex;
  justify-content: space-between;
}

.modal_header ul li+li {
  margin-left: 4px;
}

.modal_title {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.modalttl_name {
  color: #fff;
  margin-left: 7px;
  font-size: 17px;
}

.modal_title img {
  width: 23px;
}

.modal_body {
  background-color: #faf5f0;
  border: 1px solid #3c4146;
  padding: 0;
  height: 800px;
  overflow-x: hidden;
}

.record .modal_body {
  background-color: #E8ECEF;
}

/* ▽スクロールバー ここから▽ */
.modal_body::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}

.modal_body::-webkit-scrollbar-thumb {
  border-radius: 0;
  --bg-opacity: 1;
  background-color: #c1c1c1;
}

.modal_body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* △スクロールバー ここまで△ */

.modal_dialog.news .modal_body {
  overflow: hidden;
  height: 600px;
}

.modal_dialog .modal_body h2 {
  background-color: var(--dark-blue);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: bold;
}


/* index.php 下方バナー */

.banner_wrap_left {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 260px;
    padding: 30px 30px 80px;
}
.banner_wrap_right {
    position: absolute;
    bottom: 80px;
    right: 10px;
    display: flex;
    align-items: center;
}
.banner_wrap_left a {
    display: block;
    text-align: center;
    width: 50%;
}
.banner_wrap_right a {
    display: block;
    text-align: center;
}
a.bnr_otta {
    padding: 10px 20px;
}
a.bnr_balooner {
    padding: 10px 20px;
    border-right: 2px solid #71a1a7;
}
ul.norList li {
  padding-left: 0.8em;
  position: relative;
}

ul.clientList ul {
  padding-left: 12px;
  display: flex;
  flex-wrap: wrap;
}

ul.norList li::after {
  position: absolute;
  content: '・';
  left: 0;
  top: 2px;
}

ul.clientList ul li:not(:last-child)::after {
  content: '／';
}

/* 汎用スタイル */
.flex_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--dark-blue);
  padding-right: 6px;
}

.flex_item {
  display: flex;
  justify-content: space-between;
  width: 50%;
  flex-wrap: wrap;
}

.flex_item div {
  padding: 6px;
  margin-bottom: 4px;
}

.flex_wrap .width9 {
  background-color: var(--light-blue);
}

.modal_dialog.link a.outLink {
  color: var(--dark-blue);
  text-decoration: underline;
}

.t-c{text-align:center;}


p + p {
  margin-top: 10px;
}

/* △link dialogの中 ここまで△ */
@media screen and (min-width:600px) {

  /* モーダル個別設定 */

  .modal_dialog.news {
    top: 60px;
    left: 58%;
    width: 520px;
    height: unset;
  }

  .modal_dialog.mycomputer {
    left: 14%;
    top: 30px;
  }

  .modal_dialog.link {
    left: 15%;
    top: 40px;
  }

  .modal_dialog.twitter {
    left: 16%;
    top: 50px;
  }

  .modal_dialog.performance {
    left: 17%;
    top: 60px;
  }

  .modal_dialog.record {
    left: 18%;
    top: 70px;
    width: 815px;
  }

  .modal_dialog.contact {
    left: 19%;
    top: 80px;
    width: 640px;
  }

  .modal_dialog.recruit {
    left: 20%;
    top: 90px;
  }

  .modal_dialog.trash {
    left: 21%;
    top: 100px;
  }

  .modal_dialog.yamashiron_works {
    left: 22%;
    top: 110px;
    width: 815px;
  }

  .modal_dialog.subwindow {
    left: 10%;
    top: 55%;
    width: 540px;
    height: 350px;
  }

  .modal_dialog.subwindow .modal_body {
    height: 296px;
  }
}

/* ▽contact dialogの中 ここから▽ */
.contact .modal_body iframe {
  width: 100%;
  height: 100%;
}

.contact .modal_body {
  overflow: hidden;
}

.modal_dialog.contact {
  margin: 0;
  background-color: var(--gray);
}

.contact_form {
  background-color: var(--dark-blue);
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}

.contact_form th,
.contact_form th span {
  padding: 3px;
  color: #fff;
  font-weight: bold;
  width: 25%;
  vertical-align: middle;
}

.contact_form td {
  background-color: #faf5f0;
  padding: 5px;
}

.contact_form td * {
  border: 1px solid #767676;
  width: 100%;
}

.contact_form .contact_content textarea {
  height: 10em;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  height: 25px;
  margin-bottom: 5px;
  padding: 4px;
}

.submit_btn {
  margin: 10px 0 20px;
  text-align: center;
}

input[type="submit"] {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
  padding: 10px;
  border-radius: 5px;
}

@media (pointer: fine) {
  input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.content_wrap {
  padding: 0 10px;
}

.contact_ttl {
  background-color: var(--dark-blue);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: bold;
}

.contact_subttl {
  border: none;
  padding: 0;
  margin: 30px 0 10px;
  font-size: 128.6%;
  color: #333;
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
}

.privacy_wrap {
  border: 3px solid var(--dark-blue);
  padding: 10px;
}

.privacy_wrap p:first-of-type {
  margin-bottom: 20px;
}

.privacy_wrap .contact_subttl {
  margin-top: 0;
}

.privacyPage {
  position: absolute;
  top: 0;
  background-color: #faf5f0;
}

.privacyPage.close {
  transition: 0.3s;
  left: -100%;
}

.privacyPage.open {
  transition: 0.3s;
  left: 0;
}

.privacy:hover {
  cursor: pointer;
  opacity: 0.7;
}

.privacy {
  text-decoration: underline;
}

.contactPage {
  position: relative;
  overflow: hidden;
}

.privacyPage {
  max-width: 607px;
}

.return_contact {
  padding: 10px 5px;
  display: inline-block;
  text-decoration: underline;
}

@media (pointer: fine) {
  .return_contact:hover {
    text-decoration: none;
    cursor: pointer;
  }
}

/* △contact dialogの中 ここまで△ */

/* ▽recruit dialogの中 ここから▽ */

.table_view {
  background-color: var(--dark-blue);
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}

.table_view th {
  padding: 5px;
  color: #fff;
}

.table_view td {
  background-color: #e8ecef;
  padding: 5px;
}

/* △recruit dialogの中 ここまで△ */
.modal_dialog.trash .flex_wrap {
  padding-bottom: 4px;
}

.modal_dialog.trash .width3 {
  padding: 0 6px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal_dialog.trash .width9 {
  padding: 6px;
}

.pc_hidden {
  display: none;
}

@media screen and (max-width:599px) {
  .pc_hidden {
    display: block;
  }

  .sp_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gray);
    padding: 12px 7px 11px;
  }

  .wrap {
    height: calc(var(--height));
  }

  h1 img {
    height: 24px;
  }

  h1 {
    margin: 0 auto;
  }

  nav {
    width: 225px;
  }

  nav ul li {
    margin-bottom: 15px;
    line-height: 1;
    max-width: 70px;
  }

  nav ul li#trash img {
    width: 45px;
  }

  .wrap {
    background-size: 230vw;
  }

  .banner_wrap {
    bottom: 4%;
    text-align: right;
    z-index: 0;
  }

  .banner_wrap img {
    width: 70%;
    max-width: 360px;
  }

  .modal_dialog {
    left: 0;
    top: 49px;
    width: 100%;
    height: var(--height);
  }

  .modal_body {
    height: calc(var(--height) - 108px);
  }

  .flex_wrap {
    flex-direction: column;
  }

  .modal_dialog.trash .width3,
  .modal_dialog.trash .width9 {
    width: 100%;
  }

  .flex_item {
    width: 100%;
  }

  .privacyPage.close {
    left: -200%;
  }

  .contact_form tr:first-child th {
    padding: 0 0 3px;
  }

  .contact_form th {
    width: 100%;
    padding: 16px 0 3px;
  }

  .table_view {
    width: 1000px;
  }
  .table_heading1{width:8%;}
.table_heading2{width:35%;}
.table_heading3{width:29%;}
.table_heading4{width:8%;}
.table_heading5{width:9%;}
.table_heading6{width:11%;}

.banner_wrap_left {
    position: inherit;
    width: 225px;
    padding: 20px;
}

.banner_wrap_right {
    width: 100%;
    padding: 10px;
    right: unset;
    bottom: 0;
}
.banner_wrap_right a {
    width: 50%;
    padding: 10px;
}
a.bnr_balooner {
    padding: 40px;
    border-right:none;
}
}