@charset "UTF-8";
/* CSS Document */
.mv {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: 500px;
}
.mv .img-wrap {
  display: block;
  height: 100%;
}
.mv img {
  height: 100%;
}
.page-ttl {
  color: #ffffff;
  font-size: 4.0rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.page-link {
  padding: 40px 0 60px;
}
.page-link li {
  margin-right: 40px;
}
.page-link li a {
  color: #000000;
  font-size: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-link li a:before {
  content: '';
  background: url(../img/icon-arrow_w.svg) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 8px;
  position: relative;
  display: block;
  margin-right: 15px;
}
.entry:not(:last-of-type) {
  margin-bottom: 90px;
}
.entry-ttl {
  font-size: 3.0rem;
  margin-bottom: 80px;
}
.entry-table {
  border-top: solid 1px #000000;
  display: block;
  border-color: inherit;
  border-collapse: collapse;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.entry-table tbody {
  width: 100%;
  display: block;
}
.entry-table tr {
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  width: 100%;
  display: flex;
  padding: 40px 0;
}
.entry-table th, .entry-table td {
  letter-spacing: 0.1em;
}
.entry-table th {
  width: 27.5%;
  text-align: left;
  flex-shrink: 0;
}
.entry-table td {
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .page-ttl {
    font-size: 2.8rem;
  }
  .page-link {
    padding: 30px 0 40px;
    flex-wrap: wrap;
  }
  .page-link li {
    margin-right: 30px;
  }
  .page-link li a {
    font-size: 1.6rem;
  }
  .page-link li a:before {
    width: 16px;
    height: 8px;
    margin-right: 15px;
  }
  .entry:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .entry-ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .entry-table tr {
    flex-direction: column;
    padding: 20px;
    grid-row-gap: 12px;
  }
  .entry-table th {
    width: 100%;
  }
}