@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-newgraduate: #009EED;
  --color-halfway: #F68732;
  --color-chubase: #E23737;
  --color-lexus: #D3B49D;
  --color-hacbase: #495F75;
  --color-gr-garage: #5E5E5E;
  --color-daihatsupark: #FF0101;
  --color-green01: #00A68D;
  --color-green02: #E5F7F5;
  --color-green03: #D2EEE3;
  --color-gray01: #CECECE;
  --color-gray02: #F6F6F6;
  --color-gray03: #CDCDCD;
  --color-gray-gradient: linear-gradient(90deg, rgba(248, 247, 247, 1), rgba(228, 228, 228, 1));
  /*===================== Font =====================*/
  --font-gen-interface: "Gen Interface JP", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-inter: "Inter", sans-serif;
  /*===================== イージング =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*===================== 見出し =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 本文 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 英語 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*===================== マウスオーバー =====================*/
/*===================== ヘッダー 白 =====================*/
.l-page-cont-block {
  margin-top: calc(106 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-page-cont-block {
    margin-top: calc(134 / 1366 * 100vw);
  }
}

section.sec-companyinfo {
  box-sizing: border-box;
  background: #fff;
  margin-bottom: calc(10 / 375 * 100vw);
  padding: calc(35 / 375 * 100vw) calc(25 / 375 * 100vw);
  border-radius: calc(8 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-companyinfo {
    margin-bottom: calc(10 / 1366 * 100vw);
    padding: calc(85 / 1366 * 100vw) calc(75 / 1366 * 100vw);
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-companyinfo div.sec-companyinfo-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-companyinfo div.sec-companyinfo-inner h2 {
  font-weight: 500;
  font-weight: 500;
  font-size: calc(25 / 375 * 100vw);
  line-height: 1.52em;
  letter-spacing: 0;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-companyinfo div.sec-companyinfo-inner h2 {
    writing-mode: vertical-lr;
    width: 10%;
    font-size: calc(35 / 1366 * 100vw);
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  table.company-overview {
    width: 87%;
  }
}
table.company-overview tr {
  border-bottom: solid 1px #333;
  display: block;
  padding: calc(7 / 375 * 100vw) 0 calc(14 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  table.company-overview tr {
    padding: 0;
  }
}
table.company-overview tr:first-child th.company-overview-th {
  padding: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  table.company-overview tr:first-child th.company-overview-th,
  table.company-overview tr:first-child td.company-overview__td {
    padding: 0 0 30px 0;
  }
}
table.company-overview tr:last-child {
  border-bottom: none;
}
table.company-overview th.company-overview-th {
  display: block;
  width: 100%;
  padding: 3% 0 0 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  table.company-overview th.company-overview-th {
    display: table-cell;
    width: 160px;
    padding: 0 0 0 0;
    vertical-align: middle;
  }
}
table.company-overview td.company-overview__td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  table.company-overview td.company-overview__td {
    display: table-cell;
    width: calc(100% - 160px);
    vertical-align: middle;
    padding: 30px 0;
  }
}
table.company-overview td.company-overview__td ul.company-overview__list--ordered {
  counter-reset: number 0;
}
table.company-overview td.company-overview__td ul.company-overview__list--ordered li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}/*# sourceMappingURL=companyinfo.css.map */