@charset "UTF-8";
/*--------------------------------------------------
Variable
--------------------------------------------------*/
/*---------- Basic ----------*/
/*---------- Font ----------*/
/*---------- Color ----------*/
/*---------- etc ----------*/
/*---------- fade animetion ----------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------
Mixin
--------------------------------------------------*/
/*---------- Responsive ----------*/
/*---------- icon ----------*/
/*--------------------------------------------------
Genesis Custom Blocks - 募集要項
--------------------------------------------------*/
/* モーダル */
.modal_content_ttl {
  font-weight: bold;
  color: #002B4B;
  line-height: 1.4;
  display: grid;
  place-items: center;
}
.modal_content_ttl::after {
  content: "";
  width: 26px;
  height: 5px;
  background-color: #005198;
}
.modal_content_inr {
  margin: 0 auto;
  overflow: auto;
}

@media all and (min-width: 768px) {
  .modal_content_ttl {
    font-size: 36px;
    row-gap: 14px;
    margin-bottom: 40px;
  }
  .modal_content_inr {
    width: 81.6%;
    height: 75%;
  }
}
@media screen and (max-width: 767px) {
  .modal_content_ttl {
    font-size: 24px;
    row-gap: 11px;
    margin-bottom: 32px;
  }
  .modal_content_inr {
    width: 90%;
    height: 85%;
  }
}
/* テーブル */
.table01 {
  border-collapse: collapse;
  width: 95%;
  margin: 0 auto;
}
.table01 tr {
  border-top: 1px solid #E9E8E8;
}
.table01 tr:last-child {
  border-bottom: 1px solid #E9E8E8;
}
.table01 th,
.table01 td {
  vertical-align: middle;
  text-align: left;
}
.table01 th {
  color: #0E3F62;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}
.table01 td {
  font-size: 16px;
  line-height: 1.5;
}

@media all and (min-width: 768px) {
  .table01 {
    border: 1px solid #E9E8E8;
    border-left: 0px;
    border-right: 0px;
  }
  .table01 th,
.table01 td {
    padding: 25px 0;
  }
  .table01 th {
    width: 23%;
  }
}
@media screen and (max-width: 767px) {
  .table01 tr {
    display: flex;
    flex-direction: column;
  }
  .table01 tr:last-of-type {
    border-bottom: 1px solid #E9E8E8;
  }
  .table01 th {
    padding-top: 18px;
    line-height: 1.4;
  }
  .table01 td {
    padding-bottom: 18px;
    line-height: 1.5;
  }
}
/*# sourceMappingURL=block.css.map */