@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　フジタデンキ株式会社　カテゴリー別設定(style.css)ver.1 2025.1.22
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading img {
  margin: auto auto 20px;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing img {
  margin: auto;
  width: 60px;
  height: auto;
}

.animation-box {
  width: 400px;
  height: 4px;
  background: #FFF000;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
      -ms-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
      -ms-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
      -ms-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
      -ms-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #222;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #545454;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #EC6C00;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: #FFF000;
}

.bg-sub {
  background-color: #EC6C00;
}

.bg-ami {
  background-color: #d8dee7;
}

.bg-dark {
  background-color: #222;
  color: #FFF;
}

.contents-in-block {
  padding: 50px 0;
}

.btn-normal {
  display: inline-block;
  padding: 10px 20px;
  background-color: #EEEEFF;
  border: 1px solid #666699;
  border-radius: 6px;
}

/*■■■■■■ HEADER ■■■■■■■*/
.head-img-box {
  margin: 26px 0 40px;
  width: 100%;
  height: 0;
  padding: 40% 0 0 0;
}

.head-img-box-s {
  margin: 26px 0 40px;
  width: 100%;
  height: 0;
  padding: 25% 0 0 0;
}

.bg-head-img {
  background: url(../images/bg-head-img.jpg?20250410) center center no-repeat;
  background-size: cover;
  position: relative;
}

/*■■■■■■ TOP ■■■■■■■*/
.head-mi {
  margin: auto;
  font-size: 3.8rem;
  color: #fff;
  position: absolute;
  display: block;
  height: auto;
  width: 100%;
  text-align: center;
  left: 0;
  top: 25%;
  letter-spacing: 2rem;
}

.top-btn-block {
  padding: 50px 0;
  background-color: #222;
}

.top-btn-box {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.top-btn-box a {
  margin: 0;
  padding: 46% 0 0 0;
  width: 100%;
  height: 0;
  display: block;
  position: relative;
}
.top-btn-box a span {
  margin: 0;
  padding: 6px 15px;
  display: block;
  width: 100%;
  height: auto;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  position: absolute;
  bottom: 0;
  text-align: right;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(255, 240, 0, 0)), to(rgb(255, 240, 0)));
  background-image: linear-gradient(90deg, rgba(255, 240, 0, 0) 30%, rgb(255, 240, 0));
}
.top-btn-box a:link, .top-btn-box a:visited {
  background: rgba(0, 0, 0, 0.15);
}
.top-btn-box a:link apan, .top-btn-box a:visited apan {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(255, 240, 0, 0)), to(rgb(255, 240, 0)));
  background-image: linear-gradient(90deg, rgba(255, 240, 0, 0) 30%, rgb(255, 240, 0));
}
.top-btn-box a:hover, .top-btn-box a:active {
  background: rgba(0, 0, 0, 0);
}
.top-btn-box a:hover span, .top-btn-box a:active span {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 240, 0, 0)), to(rgb(255, 240, 0)));
  background-image: linear-gradient(90deg, rgba(255, 240, 0, 0) 0%, rgb(255, 240, 0));
}

.bg-dummy {
  background-color: #999;
}

.bg-dummy-corpolation {
  background: url(../images/dummy-corpolation.jpg) center center no-repeat;
  background-size: cover;
}

.bg-dummy-achive {
  background: url(../images/dummy-achive.jpg) center center no-repeat;
  background-size: cover;
}

.bg-dummy-recruitment {
  background: url(../images/dummy-recruitment.jpg) center center no-repeat;
  background-size: cover;
}

.bg-kobe {
  background: url(../images/bg-img-kobe.jpg) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.contents-block {
  margin: 50px 0;
}

.contents-name {
  margin: 0;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 2.3rem;
  color: #222;
  letter-spacing: 1rem;
  line-height: 1.2;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 240, 0)), to(rgb(236, 108, 0)));
  background-image: linear-gradient(90deg, rgb(255, 240, 0) 50%, rgb(236, 108, 0));
  -webkit-filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
          filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contents-mi {
  padding: 0 0 20px;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
}

/*■■■■■■ 会社概要 ■■■■■■■*/
/*理念*/
.company-vision {
  padding: 40px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 子要素を上下に均等配置 */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 高さを親と合わせる */
  background-color: #FFF;
  border: 2px solid #999;
  border-radius: 10px;
  -webkit-filter: drop-shadow(#DDD 0.3rem 0.3rem 0.3rem);
          filter: drop-shadow(#DDD 0.3rem 0.3rem 0.3rem);
}
.company-vision img {
  margin: auto auto 15px;
  width: 100px;
  height: auto;
}

.title-vision {
  margin: auto auto 15px;
  font-size: 3.4rem;
  font-weight: 600;
}

.text-vision {
  font-size: 1.6rem;
}

/*社長あいさつ*/
.text-greeting {
  margin: 0 0 20px;
  font-size: 1.7rem;
  line-height: 1.6;
}

.img-photo {
  border: 10px solid #FFF;
  -webkit-filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
          filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
}

.company-prof {
  margin: 0 auto;
  width: 60%;
  border-top: 1px solid #666;
  border-collapse: collapse;
}
.company-prof th, .company-prof td {
  padding: 10px 40px 11px;
}
.company-prof th {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: #354458;
  color: #FFF;
  font-weight: 500;
  border-bottom: 1px solid #d8dee7;
}
.company-prof td {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: #FFF;
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
}
.company-prof table {
  border-collapse: collapse;
}
.company-prof table th {
  background-color: #FFF;
  color: #222;
  font-weight: 400;
  text-align: right;
}
.company-prof table tr th, .company-prof table tr td {
  padding: 1px 15px 2px 0;
  border: 0;
}

.history {
  margin: 0 auto;
  width: auto;
  border-top: 1px solid #666;
  border-collapse: collapse;
}
.history thead td {
  background-color: #354458;
  color: #fff;
  vertical-align: middle;
}
.history th, .history td {
  padding: 20px;
  width: 50%;
}
.history th {
  text-align: right;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 800;
  color: #354458;
  white-space: nowrap;
  vertical-align: middle;
  border-right: 1px solid #666;
}
.history td {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}

/*■■■■■■　事業内容　■■■■■■*/
.text-read {
  margin: 20px 0 20px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.business-img-box {
  margin: 15px auto 15px;
  display: block;
  position: relative;
}
.business-img-box img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-img-box span {
  margin: 0 auto;
  padding: 10px 20px;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0.5)), to(rgb(0, 0, 0)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 50%, rgb(0, 0, 0));
  color: #FFF;
}

.bus-contents {
  margin: 30px auto 0;
  width: auto;
  display: inline-block;
}
.bus-contents li {
  margin: 10px;
  padding: 10px 15px 5px 0;
  text-align: left;
  font-size: 1.8rem;
  border-bottom: 1px solid #FFF;
  display: inline-block;
}
.bus-contents li:before {
  margin: 0 5px 0 0;
  content: "● ";
  color: #FFF000;
}

.cons-history {
  margin: 0 auto;
  width: auto;
  border-top: 1px solid #666;
  border-collapse: collapse;
}
.cons-history thead td {
  background-color: #354458;
  color: #fff;
  vertical-align: middle;
}
.cons-history th, .cons-history td {
  padding: 10px 20px 11px;
  border-bottom: 1px solid #666;
}
.cons-history th span, .cons-history td span {
  display: inline-block;
}
.cons-history th {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: middle;
}
.cons-history td {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
}
.cons-history tr:nth-child(3) td {
  white-space: nowrap;
}
.cons-history tr:nth-child(odd) {
  background-color: #d8dee7;
}

/*■■■■■■ tab menu ■■■■■■■*/
ul.tab-list {
  list-style-type: none;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-btween;
      -ms-flex-pack: space-btween;
          justify-content: space-btween;
}

.tab-list-item {
  margin: 0 auto;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #d8dee7;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
}

.tab-list-item.active {
  background-color: #354458;
  color: #FFF;
  font-size: 1.8rem;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tab-list-item:after {
  margin-top: 7px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 3px 3px 0 0;
  border-color: #354458;
  border-style: solid;
  position: absolute;
  left: 20px;
  top: 10px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg); /* 初期状態で45度 */
  z-index: 30;
}

.tab-list-item.active:after {
  margin-top: 7px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 3px 3px 0 0;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  left: 20px;
  top: 10px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg); /* 初期状態で45度 */
  z-index: 30;
}

.tab-contents-item {
  display: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tab-contents-item.show {
  display: block;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/*■■■■■■　採用情報　■■■■■■*/
.application-block {
  margin: 20px auto 20px;
  display: inline-block;
  background-color: #FFF;
  -webkit-filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
          filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
}

.application-table {
  margin: 20px;
  padding: 40px;
  background-color: #FFF;
  border-collapse: collapse;
}
.application-table th, .application-table td {
  border: 1px solid #666;
  padding: 5px 15px;
}
.application-table th {
  text-align: center;
  vertical-align: middle;
  font-size: 1.6rem;
}
.application-table td {
  text-align: left;
  font-size: 1.6rem;
}
.application-table thead th {
  background-color: #354458;
  color: #FFF;
}

.application-btn {
  margin: 0 0 50px;
  text-align: center;
}
.application-btn a {
  margin: 0 auto;
  padding: 15px 40px;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #222;
  font-weight: 700;
  -webkit-filter: drop-shadow(#232E3B 0.2rem 0.2rem 0.3rem);
          filter: drop-shadow(#232E3B 0.2rem 0.2rem 0.3rem);
}
.application-btn a:link, .application-btn a:visited {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 240, 0)), to(rgb(236, 108, 0)));
  background-image: linear-gradient(90deg, rgb(255, 240, 0) 0%, rgb(236, 108, 0));
  color: #222;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.application-btn a:hover, .application-btn a:active {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 240, 0)), to(rgb(236, 108, 0)));
  background-image: linear-gradient(90deg, rgb(255, 240, 0) 50%, rgb(236, 108, 0));
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ フォーム系 ■■■■■■■*/
.mfp_rows {
  clear: both;
}

.mfp_rows:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.mfp_rows input[type=text],
.mfp_rows input[type=email],
.mfp_rows input[type=tel],
.mfp_rows input[type=number],
.mfp_rows input[type=date],
.mfp_rows input[type=file],
.mfp_rows select,
.mfp_rows button,
form#mailformpro .mfp_rows label {
  width: 100%;
  min-width: 100%;
  word-break: break-all;
  white-space: normal;
}

.mfp_rows textarea {
  width: 100%;
  min-width: 100%;
}

.mfp_rows .mfp_col1, .mfp_rows .mfp_col2, .mfp_rows .mfp_col3, .mfp_rows .mfp_col4, .mfp_rows .mfp_col5, .mfp_rows .mfp_col6, .mfp_rows .mfp_col7, .mfp_rows .mfp_col8, .mfp_rows .mfp_col9, .mfp_rows .mfp_col10, .mfp_rows .mfp_col25 {
  float: left;
  padding: 0 1.5%;
}

.mfp_rows .mfp_col1 {
  width: 10%;
}

.mfp_rows .mfp_col2 {
  width: 20%;
}

.mfp_rows .mfp_col3 {
  width: 30%;
}

.mfp_rows .mfp_col4 {
  width: 40%;
}

.mfp_rows .mfp_col5 {
  width: 50%;
}

.mfp_rows .mfp_col6 {
  width: 60%;
}

.mfp_rows .mfp_col7 {
  width: 70%;
}

.mfp_rows .mfp_col8 {
  width: 80%;
}

.mfp_rows .mfp_col9 {
  width: 90%;
}

.mfp_rows .mfp_col10 {
  width: 100%;
}

.mfp_rows .mfp_col25 {
  width: 25%;
}

/*■■■■■■ プライバシーポリシー ■■■■■■■*/
.pp-box {
  margin: 20px 0;
}
.pp-box dt {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  border-bottom: 6px solid #FFF000;
  display: inline-block;
}
.pp-box dd {
  padding: 0 0 15px;
  margin: 0 0 15px 0;
  border-bottom: 1px dotted #333;
}
.pp-box dd ul {
  margin: 10px 0 0 2rem;
  list-style-type: disc;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*TOP*/
  .head-img-box {
    margin: 26px 0 40px;
    width: 100%;
    height: 0;
    padding: 100% 0 0 0;
  }
  .head-mi {
    font-size: 7vw;
    left: 0;
    top: 15%;
    letter-spacing: 1rem;
  }
  .top-btn-block {
    padding: 50px 0 30px;
  }
  .top-btn-box {
    margin: 0 0 20px;
  }
  /*CONTENTS*/
  .top-read {
    text-align: left;
  }
  /*company-profile(XS)*/
  .flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gap-15 {
    gap: 30px 0; /* 行と列の間に隙間を作る */
  }
  /*理念*/
  .company-vision {
    padding: 20px;
  }
  .company-vision img {
    margin: auto auto 10px;
    width: 80px;
    height: auto;
  }
  .company-prof {
    margin: 0 auto;
    width: auto;
    border-top: 1px solid #666;
    border-collapse: collapse;
  }
  .company-prof th, .company-prof td {
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .company-prof th {
    padding: 10px 20px 11px;
  }
  .company-prof td {
    padding: 10px 20px 30px;
    border-right: 0px;
  }
  .company-prof table {
    margin: 10px auto 0;
  }
  .company-prof table tr th {
    white-space: nowrap;
  }
  .company-prof table th {
    text-align: center;
  }
  .company-prof table td {
    text-align: center;
  }
  .company-prof table tr th, .company-prof table tr td {
    padding: 2px 15px 1px 0;
    border: 0;
    display: inline-blockl;
    width: auto;
  }
  .history th, .history td {
    width: auto;
  }
  .cons-history th, .cons-history td {
    display: block;
    width: 100%;
    padding: 2px 20px;
    border: 0;
  }
  .cons-history th {
    padding: 15px 20px 0 20px;
    font-size: 1.6rem;
  }
  .cons-history td:nth-child(5) {
    padding: 0 20px 15px 20px;
    border-bottom: 1px solid #666;
  }
  .cons-history thead tr {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  .cons-history thead td {
    padding: 10px 20px;
    border-bottom: 1px solid #d8dee7;
    font-size: 1.6rem;
    display: block;
    width: 100%;
  }
  .cons-history thead td:nth-child(5) {
    padding: 10px 20px;
  }
  /*採用情報（XS）*/
  .tab-list-item {
    margin: 0 auto 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
  }
  .application-table {
    margin: 20px;
    padding: 40px;
    background-color: #FFF;
    border-collapse: collapse;
  }
  .application-table th, .application-table td {
    border: 0px solid #666;
    padding: 5px 15px;
    display: block;
    width: 100%;
  }
  .application-table th {
    margin: 10px 0 0 0;
    background-color: #d8dee7;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*TOP*/
  .head-img-box {
    margin: 26px 0 40px;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
  }
  .head-mi {
    font-size: 3.4rem;
    left: 0;
    top: 15%;
    letter-spacing: 1rem;
  }
  .top-btn-block {
    padding: 50px 0 30px;
  }
  .top-btn-box {
    margin: 0 0 20px;
  }
  .top-btn-box a {
    padding: 35% 0 0 0;
  }
  /*company-profile(SM)*/
  .flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-read {
    text-align: left;
  }
  .gap-15 {
    gap: 30px 0; /* 行と列の間に隙間を作る */
  }
  /*理念*/
  .company-vision {
    padding: 20px;
  }
  .company-vision img {
    margin: auto auto 10px;
    width: 80px;
    height: auto;
  }
  .company-prof {
    margin: 0 auto;
    width: 90%;
    border-top: 1px solid #666;
    border-collapse: collapse;
  }
  .company-prof th, .company-prof td {
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .company-prof th {
    padding: 10px 20px 11px;
  }
  .company-prof td {
    padding: 10px 20px 30px;
    border-right: 0px;
  }
  .company-prof table {
    margin: auto;
  }
  .company-prof table tr th {
    white-space: nowrap;
  }
  .company-prof table th {
    text-align: right;
  }
  .company-prof table td {
    text-align: left;
  }
  .company-prof table tr th, .company-prof table tr td {
    padding: 3px 15px 4px 0;
    border: 0;
    display: table-cell;
    width: auto;
  }
  .history th, .history td {
    width: auto;
  }
  .cons-history th, .cons-history td {
    display: block;
    width: 100%;
    padding: 2px 20px;
    border: 0;
  }
  .cons-history th {
    padding: 15px 20px 0 20px;
    font-size: 1.6rem;
  }
  .cons-history td:nth-child(5) {
    padding: 0 20px 15px 20px;
    border-bottom: 1px solid #666;
  }
  .cons-history thead tr {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  .cons-history thead td {
    padding: 10px 20px;
    border-bottom: 1px solid #d8dee7;
    font-size: 1.6rem;
    display: block;
    width: 100%;
  }
  .cons-history thead td:nth-child(5) {
    padding: 10px 20px;
  }
  /*採用情報（SM）*/
  .tab-list-item {
    margin: 0 auto 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*TOP*/
  .head-img-box {
    margin: 26px 0 40px;
    width: 100%;
    height: 0;
    padding: 40% 0 0 0;
  }
  .head-mi {
    left: 0;
    top: 25%;
    letter-spacing: 1rem;
  }
  .top-btn-box {
    margin: 0;
  }
  .top-btn-box a {
    padding: 75% 0 0 0;
  }
  .top-read {
    text-align: left;
  }
  /*理念*/
  .company-vision {
    padding: 30px 10px;
  }
  .company-vision img {
    margin: auto auto 15px;
    width: 90px;
    height: auto;
  }
  .title-vision {
    margin: auto auto 15px;
    font-size: 2.8rem;
    font-weight: 600;
  }
  .company-prof {
    margin: 0 auto;
    width: auto;
  }
  .cons-history th, .cons-history td {
    display: block;
    width: 100%;
    padding: 2px 20px;
    border: 0;
  }
  .cons-history th {
    padding: 15px 20px 0 20px;
    font-size: 1.6rem;
  }
  .cons-history td:nth-child(5) {
    padding: 0 20px 15px 20px;
    border-bottom: 1px solid #666;
  }
  .cons-history thead tr {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  .cons-history thead td {
    padding: 10px 20px;
    border-bottom: 1px solid #d8dee7;
    font-size: 1.6rem;
    display: block;
    width: 100%;
  }
  .cons-history thead td:nth-child(5) {
    padding: 10px 20px;
  }
}
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .hamburger {
    display: none;
  }
  .top-btn-box a {
    padding: 56.25% 0 0 0;
  }
  .top-read {
    text-align: left;
  }
  /*理念*/
  .company-vision {
    padding: 30px 10px;
  }
  .company-vision img {
    margin: auto auto 15px;
    width: 90px;
    height: auto;
  }
  .title-vision {
    margin: auto auto 15px;
    font-size: 3rem;
    font-weight: 600;
  }
}
/*------------(XL)------------*/
@media (min-width: 1216px) {
  .hamburger {
    display: none;
  }
  .top-btn-box a {
    padding: 60% 0 0 0;
  }
}