@charset "utf-8";
/*共通*/
.pagevisual {
  background: url("../img/mv.png")no-repeat center;
  background-size: cover;
}
.company .sec_title,
.access .sec_title,
.history .sec_title {
  color: #000;
}

/*description*/
.description {
  width: 100%;
  max-width: 90%;
  margin: 80px auto;
  margin-left: 0;
  padding: 80px 10% 0;
  background: url("../img/description.png")no-repeat center;
  background-size: cover;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.description div {
  position: relative;
  width: 100%;
  max-width: 896px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
.description div::after {
  content: '';
  position: absolute;
  background: url("../img/employee.png")no-repeat center;
  background-size: cover;
  width: 292px;
  height: 304px;
  bottom: 0;
  right: -3em;
}
.description h2 {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  margin-bottom: 32px;
}
.description p {
  line-height: 1.8;
}
.description ul {
  position: relative;
  width: 100%;
  max-width: 175px;
  margin: 135px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 30em;
}

/*anchor_flex*/
.anchor_flex {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.anchor_flex li {
  width: 100%;
  max-width: 328px;
}
.anchor_flex a {
  background: #0073BD;
  color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.anchor_flex a:hover {
  background: #fff;
  color: #0073BD;
  border: 1px solid #0073BD;
  opacity: 1;
}

/*access*/
.access {
  padding-top: 50px;
  margin-top: 30px;
}
.access_flex {
  width: 100%;
  max-width: 1024px;
  margin: 64px auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.access_flex li {
  width: 100%;
  max-width: 502px;
  border: 1px solid #000;
  padding: 28px;
}
.access_flex h3 {
  font-size: 1.6rem;
  font-weight: normal;
  color: #fff;
  background: #000;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.access_flex iframe {
  width: 100%;
  height: 300px;
}

/*table関係*/
table {
  width: 100%;
  max-width: 1024px;
  margin: 64px auto 0;
  border-top: 1px solid #000;
}
th {
  background: #000;
  color: #fff;
  width: 205px;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid #fff;
}
tr:first-child th {
  border-top: none;
}
th.left {
  text-align: left;
}
th.left span {
  position: relative;
  left: 3.5em;
}
td {
  border-top: 1px solid #000;
  padding: 1em 0;
  padding-left: 3em;
}
td iframe {
  margin-top: 1em;
}
tr:last-child th,
tr:last-child td {
  border-bottom: 1px solid #000;
}
.history {
  padding-top: 64px;
}

@media screen and (max-width: 1200px) {}

/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and ( max-width: 767px ){
  /*description*/
  .description {
    margin: 48px auto;
    width: 100%;
    max-width: 95%;
    padding: 40px 5% 0;
    height: auto;
  }
  .description div::after {
    right: 0;
    left: 0;
    margin: auto;
  }
  .description h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .description ul {
    margin: 32px 0 320px;
    left: auto;
  }

  /*anchor_flex*/
  .anchor_flex {
    flex-wrap: wrap;
    gap: 16px 0;
    margin-bottom: 48px;
  }
  .anchor_flex li {
    max-width: 70%;
    margin: auto;
  }
  .anchor_flex a {
    height: 48px;
  }

  /*access*/
  .access {
    padding-top: 34px;
  }
  .access_flex {
    max-width: 90%;
    flex-direction: column;
    margin-top: 56px;
  }
  .access_flex li {
    padding: 28px 5%;
  }

  /*table関係*/
  table {
    max-width: 90%;
    margin-top: 56px;
    margin-bottom: 0;
  }
  tr {
    display: flex;
    flex-direction: column;
  }
  th {
    width: 100%;
    padding: 8px 5%;
  }
  th.left {
    text-align: center;
  }
  th.left span {
    left: inherit;
  }
  td {
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    padding: 8px 5%;
  }
  td iframe {
    width: 90%;
    height: 300px;
  }
}