@charset "utf-8";
/*
Theme Name:エンジニアプラットフォーム
*/
/** ===========================================================================
 * index
 ** ======================================================================== */
.p-top-mainimage {
    height: calc(100vh - 60px);
    position: relative;
}
.p-top-mainimage__heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
    z-index: 3;
    pointer-events: none;
}
.p-top-mainimage__heading span {
  display: block;
  font-size: 60px;
  font-size: 6.0rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.p-top-contents {
    padding-top: 50px;
}
.p-top-card-list {
  position: relative;
}
.p-top-contents-side__section:not(:first-child) {
    margin-top: 30px;
}
.p-top-more {
  position: absolute;
  bottom: calc(100% + 15px);
  right: 0;
}
/** loading */
.loading {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loading-container {
    display: flex;
    flex-direction: column;
    margin: auto;
}
.loading-pre {
    width: 500px;
    min-height: 300px;
    padding: 10px;
    background-color: #091526;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
}
.loading-pre::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    background-color: #fff;
    animation: pre 1.25s linear infinite;
}
.loading-run {
    margin-top: 20px;
    text-align: center;
}
@keyframes pre {
    0% {opacity: 0}
    49% {opacity: 0}
    50% {opacity: 1}
    100% {opacity: 1}
}
/* ============================================================================
 * MEMBERS
 * ========================================================================= */
.p-members {
  margin-top: 30px;
}
.p-members__group {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -20px;
}
.p-members__group-item {
  width: 50%;
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .p-members__group-item {
    width: 100%;
  }
}
/* ============================================================================
 * COMPANY
 * ========================================================================= */
.p-company-table {
  font-size: 16px;
  font-size: 1.6rem;
}
.p-company-table > tbody > tr > th {
  width: 250px;
  padding-right: 20px;
  text-align: left;
  color: #929292;
} 
.p-company-table > tbody > tr:not(:first-child) > * {
  padding-top: 10px;
}
.p-company-table > tbody > tr:not(:last-child) > * {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-company-table, .p-company-table * {
    display: block;
  }
  .p-company-table > tbody > tr:not(:first-child) {
    margin-top: 10px;
  }
  .p-company-table > tbody > tr > * {
    width: 100%;
  }
}
/** ===========================================================================
 * 404
 ** ======================================================================== */
.p-404 {
    position: relative;
    z-index: 2;
}
.p-404 h2 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
}
.p-404 p {
    font-size: 16px;
    font-size: 1.6rem;
}
.p-404 h2 + p {
    margin-top: 2em;
}
.p-404 p + p {
    margin-top: 1em;
}
.js-404-game {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: conic-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    border-radius: 50%;
}