@charset "UTF-8";
.parts-layout {
  width: 90%;
  max-width: 500px;
  margin: 60px auto 0 auto;
}

.parts-main {
  width: 100%;
}

.parts-section {
  margin-bottom: 40px;
}
.parts-section h3 {
  position: relative;
  background: rgb(245, 248, 251);
  border-top: 1px solid rgb(1, 87, 170);
  padding: 16px 18px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.parts-section h3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: rgb(1, 87, 170);
}
.parts-section .container {
  display: flex;
  flex-direction: column;
}
.parts-section .container .content {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d2;
}
.parts-section .container .content .thumb {
  width: 110px;
  flex-shrink: 0;
  display: block;
}
.parts-section .container .content .thumb img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}
.parts-section .container .content .info {
  flex: 1;
  min-width: 0;
}
.parts-section .container .content .info .tags {
  margin-bottom: 8px;
}
.parts-section .container .content .info .tags .tag {
  display: inline-block;
  background: rgb(1, 87, 170);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 12px;
  margin: 0 5px 5px 0;
}
.parts-section .container .content .info .name {
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid rgb(1, 87, 170);
}
.parts-section .container .content .info .name a {
  color: rgb(1, 87, 170);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}
.parts-section .container .content .info .name a:hover {
  text-decoration: underline;
}
.parts-section .container .content .info .features li {
  position: relative;
  padding-left: 1em;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.parts-section .container .content .info .features li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.parts-sidebar {
  display: none;
  margin-top: 50px;
}
.parts-sidebar .category-list {
  border: 1px solid #dddddd;
  border-top: 2px solid rgb(1, 87, 170);
}
.parts-sidebar .category-list li {
  border-bottom: 1px solid #dddddd;
}
.parts-sidebar .category-list li:last-child {
  border-bottom: none;
}
.parts-sidebar .category-list a {
  display: block;
  padding: 14px 18px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.3s;
}
.parts-sidebar .category-list a:hover {
  background: rgb(245, 248, 251);
  color: rgb(1, 87, 170);
}
.parts-sidebar .category-list li.is-current a {
  background: rgb(245, 248, 251);
  color: rgb(1, 87, 170);
  font-weight: 700;
}

.parts-drawer {
  width: 90%;
  max-width: 500px;
  margin: 40px auto 0 auto;
}
.parts-drawer__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(1, 87, 170);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.parts-drawer__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 12px;
}
.parts-drawer__icon::before, .parts-drawer__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
}
.parts-drawer__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.parts-drawer__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.parts-drawer.is-open .parts-drawer__icon::after {
  opacity: 0;
}
.parts-drawer__list {
  display: none;
  list-style: none;
}
.parts-drawer__list li {
  border-bottom: 1px solid #dcdcdc;
}
.parts-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #efefef;
  color: rgb(1, 87, 170);
  text-decoration: none;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 1.4;
}
.parts-drawer__chev {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgb(1, 87, 170);
  border-bottom: 2px solid rgb(1, 87, 170);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: -4px 0 0 12px;
}

@media (min-width: 768px) {
  .parts-layout {
    width: 80%;
    max-width: 1240px;
    margin-top: 80px;
  }
  .parts-section {
    margin-bottom: 70px;
  }
  .parts-section h3 {
    padding: 22px 30px;
    font-size: 26px;
    margin-bottom: 40px;
  }
  .parts-section h3::before {
    width: 160px;
    height: 4px;
  }
  .parts-section .container .content {
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .parts-section .container .content .thumb {
    width: 200px;
  }
  .parts-section .container .content .info .tags {
    margin-bottom: 12px;
  }
  .parts-section .container .content .info .tags .tag {
    font-size: 13px;
    padding: 6px 16px;
  }
  .parts-section .container .content .info .name {
    margin-bottom: 10px;
    padding-left: 12px;
  }
  .parts-section .container .content .info .name a {
    font-size: 17px;
  }
  .parts-section .container .content .info .features li {
    font-size: 14px;
  }
  .parts-drawer {
    width: 80%;
    max-width: 1240px;
  }
}
.parts-layout--detail ~ .parts-drawer {
  display: none;
}
@media (min-width: 1200px) {
  .parts-drawer {
    display: none;
  }
  .parts-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
  .parts-main {
    flex: 1;
    min-width: 0;
  }
  .parts-section .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .parts-section .container .content {
    width: 48.5%;
    margin-bottom: 40px;
  }
  .parts-section .container::after {
    content: "";
    display: block;
    width: 48.5%;
  }
  .parts-sidebar {
    display: block;
    width: 285px;
    max-width: none;
    flex-shrink: 0;
    margin-top: 0;
  }
}
.parts-note {
  width: 90%;
  max-width: 500px;
  margin: 40px auto 0 auto;
}
.parts-note p {
  font-size: 13px;
  line-height: 1.9;
  color: #333;
}

.breadcrumb {
  border-top: 1px solid #d2d2d2;
  margin-top: 40px;
}
.breadcrumb .breadcrumb-inner {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 16px 0;
  font-size: 12px;
  line-height: 1.6;
}
.breadcrumb a {
  color: rgb(1, 87, 170);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  margin: 0 8px;
  color: rgb(1, 87, 170);
}
.breadcrumb .current {
  color: #000;
}

@media (min-width: 768px) {
  .parts-note {
    width: 80%;
    max-width: 1240px;
    margin-top: 60px;
  }
  .parts-note p {
    font-size: 14px;
    line-height: 2;
  }
  .breadcrumb {
    margin-top: 60px;
  }
  .breadcrumb .breadcrumb-inner {
    width: 80%;
    max-width: 1240px;
    padding: 22px 0;
    font-size: 13px;
  }
}
.contact-section {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .contact-section {
    margin-top: 40px;
  }
}
.parts-layout--detail {
  margin-top: 0;
  padding-top: 90px;
}

.product-head {
  position: relative;
  background: #eeeeee;
  border-top: 1px solid rgb(1, 87, 170);
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.product-head::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: rgb(1, 87, 170);
}
.product-head__cat {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.product-head__name {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  margin-top: 6px;
}

.product-thumb {
  max-width: 500px;
  margin: 0 auto 30px auto;
}
.product-thumb img {
  width: 100%;
  height: auto;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content .spec-table,
.post-content .wp-block-table {
  scroll-margin-top: 90px;
}
.post-content h2,
.post-content h3 {
  background: rgb(1, 87, 170);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px 18px;
  margin: 40px 0 24px;
}
.post-content h4 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  padding-top: 16px;
  margin: 36px 0 16px;
  border-top: 1px solid rgb(1, 87, 170);
}
.post-content h4::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: rgb(1, 87, 170);
}
.post-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 4px solid rgb(1, 87, 170);
  margin: 28px 0 14px;
}
.post-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
}
.post-content img {
  height: auto;
  margin: 0 0 16px;
}
.post-content a {
  color: rgb(1, 87, 170);
}
.post-content ul,
.post-content ol {
  margin: 0 0 16px 1.2em;
}
.post-content ul li,
.post-content ol li {
  font-size: 14px;
  line-height: 1.9;
}
.post-content figure {
  margin: 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 30px;
  font-size: 14px;
}
.post-content table th,
.post-content table td {
  border: 1px solid #d2d2d2;
  padding: 14px 18px;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
  background: #fff;
}
.post-content table thead th {
  background: #666;
  color: #fff;
  font-weight: 500;
}
.post-content table tbody th {
  background: #eeeeee;
  color: #1a1a1a;
  font-weight: 500;
  white-space: nowrap;
}
.post-content table tbody tr td:first-child {
  background: #eeeeee;
  color: #1a1a1a;
  font-weight: 500;
}
.post-content .spec-table td:first-child {
  background: #eeeeee;
  color: #1a1a1a;
  font-weight: 500;
  white-space: nowrap;
}
.post-content .wp-block-table thead {
  border-bottom: none;
}

.post-content .product-anchors-wrap {
  margin: 0 0 30px;
}

.product-anchors-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(1, 87, 170);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.product-anchors-toggle__label {
  flex: 1;
}
.product-anchors-toggle__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 12px;
}
.product-anchors-toggle__icon::before,
.product-anchors-toggle__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
}
.product-anchors-toggle__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.product-anchors-toggle__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.product-anchors-wrap.is-open .product-anchors-toggle__icon::after {
  opacity: 0;
}

.post-content .product-anchors {
  background: #eeeeee;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
}
.post-content .product-anchors li {
  border-bottom: 1px solid #dcdcdc;
}
.post-content .product-anchors li:last-child {
  border-bottom: none;
}
.post-content .product-anchors a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(1, 87, 170);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  padding: 14px 20px;
}
.post-content .product-anchors a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid rgb(1, 87, 170);
  border-bottom: 2px solid rgb(1, 87, 170);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: -4px 0 0 12px;
}

@media (min-width: 1200px) {
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content .spec-table,
  .post-content .wp-block-table {
    scroll-margin-top: 120px;
  }
  .product-anchors-toggle {
    display: none;
  }
  .post-content .product-anchors {
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding: 56px 20px 20px;
  }
  .post-content .product-anchors::before {
    content: "目次";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(1, 87, 170);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 24px;
  }
  .post-content .product-anchors li {
    border-bottom: none;
  }
  .post-content .product-anchors a {
    padding: 0;
  }
  .post-content .product-anchors a::after {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 10px;
  }
}

@media (min-width: 768px) {
  .product-head {
    padding: 24px 30px;
    margin-bottom: 40px;
  }
  .product-head::before {
    width: 160px;
    height: 4px;
  }
  .product-head__cat {
    font-size: 30px;
  }
  .product-head__name {
    font-size: 16px;
    margin-top: 8px;
  }
  .product-thumb {
    margin-bottom: 40px;
  }
  .post-content h2,
  .post-content h3 {
    font-size: 24px;
    padding: 22px 30px;
    margin: 50px 0 30px;
  }
  .post-content h4 {
    font-size: 22px;
    padding-top: 20px;
    margin: 44px 0 20px;
  }
  .post-content h4::before {
    width: 160px;
    height: 4px;
  }
  .post-content h5 {
    font-size: 18px;
  }
  .post-content p,
  .post-content ul li,
  .post-content ol li {
    font-size: 16px;
    line-height: 2;
  }
  .post-content table {
    font-size: 16px;
  }
  .post-content table th,
  .post-content table td {
    padding: 18px 24px;
  }
}
@media (min-width: 1200px) {
  .parts-layout--detail {
    padding-top: 130px;
  }
}

/*# sourceMappingURL=parts.css.map */
