.manual .page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  .manual .page__title {
    padding-right: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .manual .page__title {
    padding-right: 2rem;
  }
}
.manual .page__title::before {
  content: "";
  background: url(../images/common/icon_manual.svg) no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 769px) {
  .manual .page__title::before {
    width: 4rem;
    height: 4rem;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (max-width: 768px) {
  .manual .page__title::before {
    width: 3rem;
    height: 3rem;
  }
}

.p-manual__nav {
  margin-top: 2rem;
}
.p-manual__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.p-manual__nav-list li a {
  display: block;
  position: relative;
  border: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  .p-manual__nav-list li a {
    padding: 0.8rem 4rem 0.8rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__nav-list li a {
    padding: 0.5rem 3rem 0.5rem 1.5rem;
    font-size: 1.2rem;
  }
}
.p-manual__nav-list li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin: auto;
  width: 0.6rem;
  height: 0.6rem;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .p-manual__nav-list li a:hover {
    background: #000;
  }
  .p-manual__nav-list li a:hover::before {
    border-left: 1px solid #FABE00;
    border-top: 1px solid #FABE00;
    -webkit-transform: translateY(-49%) rotate(225deg);
            transform: translateY(-49%) rotate(225deg);
  }
}
.p-manual__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-manual__wrapper {
    margin-top: 6rem;
    gap: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__wrapper {
    margin-top: 4rem;
    gap: 6rem;
  }
}
.p-manual__contents .-category {
  background-color: #FABE00;
  text-align: center;
  padding: 1rem;
}
.p-manual__contents .-list {
  display: grid;
}
@media screen and (min-width: 769px) {
  .p-manual__contents .-list {
    margin-top: 3rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5rem 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__contents .-list {
    margin-top: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
.p-manual__contents .-list .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-manual__contents .-list .-item .-img {
  overflow: hidden;
}
.p-manual__contents .-list .-item .-img a {
  display: block;
}
.p-manual__contents .-list .-item .-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-manual__contents .-list .-item .-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 769px) {
  .p-manual__contents .-list .-item .-detail .-num {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__contents .-list .-item .-detail .-num {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .p-manual__contents .-list .-item .-detail .-name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__contents .-list .-item .-detail .-name {
    font-size: 1.4rem;
  }
}
.p-manual__contents .-list .-item .-detail .-model {
  font-weight: bold;
}
.p-manual__contents .-list .-item .-link {
  width: 100%;
  margin-top: 2rem;
}
.p-manual__contents .-list .-item .-link a {
  min-width: 100%;
}
@media screen and (min-width: 769px) {
  .p-manual__contents .-list .-item .-link a {
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-manual__contents .-list .-item .-link a {
    padding: 1rem 1rem;
    text-align: left;
    font-size: 1.2rem;
  }
}