@charset "UTF-8";
/* A Modern CSS Reset ------------------- */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  text-align: left;
}

ul[role=list], ol[role=list], ul, ol, li {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ------------------- */
* {
  --contents-width: 1200px;
  --article-width: 900px;
  --side-width: calc(100% - var(--article-width));
  --color1: #CF0707;
  --color2: #6DE1FF;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  width: 100%;
  background: #f5f5f5;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #333;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  position: relative;
  max-width: var(--contents-width);
  padding: 80px 0 120px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    padding: 64px 15px 100px;
  }
}
@media screen and (max-width: 750px) {
  .wrapper {
    padding: 40px 15px 64px;
    margin-top: 45px;
  }
}

@media screen and (max-width: 1080px) {
  .breadcrumbs {
    left: 0;
    padding: 0 15px;
  }
}
@media screen and (max-width: 750px) {
  .breadcrumbs {
    width: 90%;
    padding-bottom: 2px;
    overflow-x: auto;
  }
  .breadcrumbs ul {
    white-space: nowrap;
  }
}

.container {
  display: flex;
  gap: 24px;
}
.container .left {
  max-width: var(--article-width);
}
.container .right {
  max-width: var(--side-width);
}
.container .right .box {
  padding: 16px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 3px;
}
.container .right .box li:not(:last-of-type) {
  margin-bottom: 24px;
}
.container .right .box h2 {
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: solid 1px var(--color1);
  font-size: 16px;
}
.container .right .box .img {
  overflow: hidden;
}
.container .right .box .img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.container .right .box .img:hover img {
  transform: scale(1.05);
}
.container .right .box h3 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container .right .box.shop_search h2 a {
  position: relative;
  display: block;
  width: 100%;
}
.container .right .box.shop_search h2 a::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 20px;
  height: 14px;
  background: url(../img/shop_arrow.svg) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.container .right .box.shop_search h2 a:hover {
  text-decoration: none;
}
.container .right .box.shop_search h2 a:hover::after {
  right: -4px;
}
.container .right .box.shop_search > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.container .right .box.shop_search > ul > li {
  margin-bottom: 0;
}
.container .right .box.shop_search > ul > li h3 {
  padding-left: 12px;
  margin: 0 0 8px 0;
  background: url(../img/icon_map.png) no-repeat left center/8px;
  font-size: 16px;
  font-weight: bold;
}
.container .right .box.shop_search > ul > li ul {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.container .right .box.shop_search > ul > li ul li {
  margin-bottom: 0;
}
.container .right .box.shop_search > ul > li ul li a {
  font-size: 14px;
  color: #1B558C;
  text-decoration: underline;
}
.container .right .box.shop_search > ul > li ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1260px) {
  .container .left {
    max-width: none;
    width: calc(100% - 200px);
  }
  .container .right {
    max-width: none;
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    flex-direction: column;
  }
  .container .left, .container .right {
    width: 100%;
  }
  .container .right .box {
    padding: 24px 16px;
  }
}

.article-wrap {
  padding: 48px 64px 100px;
  background: #fff;
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  .article-wrap {
    padding: 32px 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .article-wrap {
    padding: 32px 16px 64px;
  }
}

article {
  margin-bottom: 100px;
}
article .top .date {
  font-size: 14px;
}
article .top h1 {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.3;
}
article .top .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article .top .category {
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 12px;
}
article .top .share-buttons {
  display: flex;
  gap: 10px;
}
article .top .share-buttons .share-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
article .top .share-buttons .share-button i {
  font-size: 16px;
}
article .top .thum {
  margin-top: 48px;
}
article p {
  line-height: 1.75;
}
article p:not(:last-of-type) {
  margin-bottom: 16px;
}
article .lead {
  margin-top: 40px;
}
article .toc {
  padding: 24px 40px;
  margin-top: 40px;
  border: solid 1px #dedede;
  border-radius: 3px;
}
article .toc > div {
  display: inline-block;
  margin-right: 16px;
}
article .toc > div + span {
  padding: 4px 10px;
  border: solid 1px #dedede;
  border-radius: 3px;
  font-size: 10px;
  vertical-align: middle;
  cursor: pointer;
}
article .toc > ul {
  margin-top: 16px;
}
article .toc > ul > li:not(:last-of-type) {
  margin-bottom: 12px;
}
article .toc > ul > li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: var(--color1);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
}
article .toc > ul > li a {
  vertical-align: middle;
}
article .toc > ul > li a:hover {
  text-decoration: underline;
}
article .toc > ul > li ul {
  margin: 12px 0 0 28px;
}
article .toc > ul > li ul li {
  position: relative;
  padding-left: 13px;
}
article .toc > ul > li ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
article .toc > ul > li ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color1);
  transform: translateY(-50%);
}
article .toc #toc-content {
  max-height: auto;
  transition: all 0.3s ease, opacity 0.1s ease;
}
article .toc #toc-content.close {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
}
article .article-section {
  margin-top: 64px;
}
article .article-section h2 {
  padding: 10px 8px 10px 24px;
  margin-bottom: 24px;
  background: #f5f5f5;
  border-left: solid 5px var(--color1);
  font-size: 24px;
  color: var(--color1);
}
article .article-section h3 {
  position: relative;
  padding-bottom: 6px;
  margin: 48px 0 16px;
  font-size: 18px;
}
article .article-section h3::before, article .article-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}
article .article-section h3::before {
  width: 100%;
  background: #dedede;
}
article .article-section h3::after {
  width: 100px;
  background: var(--color1);
}
article .article-section .bold {
  font-weight: bold;
}
article .article-section .marker {
  background: linear-gradient(to bottom, #6DE1FF 0%, #6DE1FF 100%);
  background-size: 100% 1.2em;
  background-repeat: no-repeat;
  background-position: 0 0.75em;
}
article .article-section ul li {
  margin: 32px 0;
}
article .article-section ul li .subhead {
  margin-bottom: 10px;
  font-weight: bold;
}
article .article-section ul li .subhead.md {
  position: relative;
  padding-left: 13px;
}
article .article-section ul li .subhead.md::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color1);
  transform: translateY(-50%);
}
article .article-section ul li p + img {
  margin-top: 16px;
}
article .article-section ul.list1 {
  margin: 16px 0;
}
article .article-section ul.list1 li {
  position: relative;
  padding-left: 16px;
  margin: 10px 0;
}
article .article-section ul.list1 li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color1);
}
article .article-section .summary {
  padding: 24px 24px 16px;
  margin-top: 48px;
  background: #f8f8f8;
  border-radius: 5px;
}
article .article-section .summary-h {
  margin: -36px 0 8px;
  color: var(--color1);
  font-weight: bold;
}
article .article-section .showcase-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
article .article-section a:has(+ .showcase-img) {
  display: block;
  margin-bottom: 16px;
  color: #005C94;
  word-break: break-all;
}
article .article-section a.link {
  display: inline-block;
  padding-left: 20px;
  margin-top: 16px;
  background: url(../img/link.svg) no-repeat left center/16px 16px;
  color: #005C94;
  word-break: break-all;
}
article .article-section a.link:link, article .article-section a.link:visited {
  color: #005C94;
}
article .article-section a.link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  article {
    margin-bottom: 64px;
  }
  article p {
    font-size: 14px;
  }
  article p:not(:last-of-type) {
    margin-bottom: 14px;
  }
  article .top h1 {
    font-size: 24px;
  }
  article .top .category {
    padding: 4px 10px;
    font-size: 10px;
  }
  article .article-section h2 {
    padding: 10px 8px 10px 16px;
    font-size: 18px;
  }
  article .article-section h3 {
    margin: 32px 0 16px;
    font-size: 16px;
  }
  article .article-section ul li {
    margin: 24px 0;
  }
  article .article-section .showcase-img {
    gap: 12px;
  }
  article .article-section a:has(+ .showcase-img),
  article .article-section a.link {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  article .top h1 {
    font-size: 20px;
  }
  article .toc {
    padding: 24px;
  }
  article .toc > ul > li {
    position: relative;
    padding-left: 28px;
  }
  article .toc > ul > li span {
    position: absolute;
    top: 0;
    left: 0;
  }
  article .toc > ul > li a {
    font-size: 14px;
  }
  article .toc > ul > li ul {
    margin: 12px 0 0;
  }
  article .toc > ul > li ul li::before {
    top: 9px;
    transform: none;
  }
  article .article-section h2 {
    padding: 10px 8px 10px 12px;
  }
  article .article-section ul.list1 li {
    font-size: 14px;
  }
}

.bnrArea {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .bnrArea {
    margin-bottom: 40px;
  }
}

.btn {
  display: flex;
  gap: 16px;
}
.btn a {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 50%;
  padding: 16px 24px;
  background: #f5f5f5;
  border-radius: 3px;
  font-weight: bold;
  transition: all 0.15s ease-in-out;
}
.btn a:nth-of-type(2) {
  justify-content: end;
  flex-direction: row-reverse;
}
.btn a:nth-of-type(2) img {
  transform: rotate(180deg);
}
.btn a:hover {
  background: #d5d5d5;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 16px 12px;
  }
}

.relation {
  margin-top: 80px;
}
.relation h2 {
  margin-bottom: 24px;
  font-size: 24px;
  text-align: center;
}
.relation ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.relation ul li {
  overflow: hidden;
}
.relation ul li .img {
  overflow: hidden;
}
.relation ul li .img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.relation ul li .img:hover img {
  transform: scale(1.05);
}
.relation ul li .img_bottom {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.relation ul li .img_bottom .date {
  font-size: 14px;
}
.relation ul li .img_bottom span {
  display: block;
  padding: 4px 16px;
  background: #f5f5f5;
  font-size: 10px;
}
.relation ul li h3 {
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1080px) {
  .relation ul {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}

.bnr {
  display: block;
  transition: all 0.2s ease-in-out;
}
.bnr:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.parts_contact02_inner .contactText {
  font-size: 14px;
}

.parts_contact02_inner .contactTel span {
  font-size: 20px;
}

.parts_contact02_inner .contactTime {
  font-size: 10px;
}

.header, .footer {
  font-size: 80%;
}

.header ul,
.header li {
  text-align: center;
}/*# sourceMappingURL=article.css.map */