/* scssではないスタイルを充てる */
/* spec　*/
.spec-section .spec-section__container {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(0vw, 2.8vw, 18px);
}
.spec-section .spec-section__container table {
  width: 100%;
  border: 1px solid #136e76;
  border-spacing: 0;
}
.spec-section .spec-section__container table th {
  background-color: #083134;
  border-bottom: 1px solid #000;
  padding: 1em;
  text-align: center;
  width: 7em;
}
.spec-section .spec-section__container table td {
  padding: 1em;
  line-height: 1.4;
  border-bottom: 1px solid #083134;
  background: #00000057;
}
.spec-section .spec-section__container table td + td {
  border-left: 1px solid #083134;
}
.spec-section .spec-section__container dl {
  display: flex;
  margin: 0;
}
.spec-section .spec-section__container dl + dl {
  margin-top: 0.5em;
}
.spec-section .spec-section__container dl dt {
  width: 3.5em;
}
.spec-section .spec-section__container dl dd {
  margin-left: 0;
  width: calc(100% - 3.5em);
}

.spec-section .trouble{border:1px #dd3110 solid; padding: 1em; margin: 1em 0;}
.spec-section .trouble h3{color: #dd3110;}
.spec-section .trouble a{color: #c6d0d4; text-decoration: underline;}

.spec-section .ancher-list {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}
.spec-section .ancher-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
}

.spec-section .ancher-list ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    border: 1px solid #ffff;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.2rem;
    gap: 0.3em;
    transition: all 0.5s;
    cursor: pointer;
}

.spec-section .ancher-list ul li a::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1.4em;
    background: url(https://www.koeitecmoamerica.com/fate-sr/assets/img/common_direct.png) no-repeat;
    background-size: contain;
    transform: rotate(90deg);
}

.spec-section .ancher-list ul li a:hover{background-color:#146269}


@media screen and (max-width: 767px) {
  .spec-section .spec-section__container table {
    width: 100%;
  }
}