/* stylelint-disable no-descending-specificity */
/* stylelint-disable-next-line at-rule-no-unknown */
/* stylelint-disable-next-line scss/double-slash-comment-empty-line-before */
/* $accent-color: #194569; */
/* $link-color: #194569; */
.page-title-03 {
  background-image: url("../images/service/main_img_01_sp.jpg");
}

@media (min-width: 769px) {
  .page-title-03 {
    background-image: url("../images/service/main_img_01_pc.jpg");
  }
}
/* archive */
.service-list {
  margin-bottom: 2em;
}

.service-item {
  margin-bottom: 1em;
  background-color: #fff;
}
.service-item a {
  display: block;
  padding: 1em 4% 1.5em;
  color: #333;
  pointer-events: none;
}

.service-item-img {
  overflow: hidden;
  margin-bottom: 1.5em;
}
.service-item-img img {
  aspect-ratio: 1.75/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* .service-item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-item-title {
  flex: 1;
  padding-right: 1em;
  @include sm-fz-vw(28);
} */
.service-item-title {
  font-size: 4.2666666667vw;
  margin-bottom: 1em;
  font-weight: 500;
}

.service-item-text {
  text-align: justify;
}

@media (min-width: 769px) {
  .service-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .service-item:nth-of-type(1) {
    margin-right: 2%;
    width: 49%;
  }
  .service-item:nth-of-type(2) {
    width: 49%;
  }
  .service-item:nth-of-type(n + 3) {
    margin-right: 2%;
    width: 32%;
  }
  .service-item:nth-of-type(3n + 5) {
    margin-right: 0;
  }
  .service-item a {
    flex-grow: 1;
    padding: 25px 25px 30px;
  }
  .service-item a.pcmo:hover {
    background-color: #fff;
    color: #333;
  }
  .service-item a.pcmo:hover .service-item-img img {
    opacity: 1;
    transform: scale(1.05);
  }
  .service-item a.pcmo:hover .service-item-arrow .arrow.first {
    opacity: 0;
    transform: translateX(16px);
  }
  .service-item a.pcmo:hover .service-item-arrow .arrow.second {
    opacity: 1;
    transform: translateX(0);
  }
  .service-item-img {
    margin-bottom: 30px;
  }
  .service-item-img img {
    transition: transform 0.3s ease;
  }
  .service-item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
/* single */
.post-body {
  overflow-x: hidden;
  margin-bottom: 2em;
  padding: 2em 5%;
  background-color: #fff;
}

.post-header {
  margin-bottom: 2em;
}
.post-header.bg-img {
  position: relative;
  margin: -2em -6% 2em;
}

.post-title {
  margin-bottom: 0.3em;
  font-size: 4.5333333333vw;
  font-weight: 700;
}

.post-date {
  font-size: 3.2vw;
}

.post-main-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.5/1;
}
.post-main-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 80%);
}
.post-main-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.post-header-content {
  position: absolute;
  z-index: 2;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 5%;
  width: 100%;
  color: #fff;
}

.post-content {
  padding-bottom: 3em;
}
.post-content h2 {
  margin-bottom: 1.5em;
  padding: 0.5em 0;
  border-bottom: 2px solid #ccc;
  font-size: 4.5333333333vw;
  font-weight: 700;
}
.post-content h3 {
  margin-bottom: 1em;
  padding: 0 0 0 3%;
  border-left: 5px solid #282828;
  font-size: 4vw;
  font-weight: 700;
}
.post-content h4 {
  margin-bottom: 1em;
  font-size: 3.7333333333vw;
  font-weight: 700;
}
.post-content p {
  margin-bottom: 1em;
}
.post-content img {
  margin-bottom: 1em;
}
.post-content a {
  text-decoration: underline;
}
.post-content ul {
  margin-bottom: 1em;
}
.post-content ul li {
  list-style: disc inside;
}
.post-content ol {
  margin-bottom: 1em;
}
.post-content ol li {
  list-style: decimal inside;
}

.single-page-nav {
  padding-top: 2em;
  border-top: 1px solid #ccc;
}
.single-page-nav .next a,
.single-page-nav .prev a {
  display: block;
  position: relative;
}
.single-page-nav .next a::before,
.single-page-nav .prev a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 3%;
  aspect-ratio: 1/1;
}
.single-page-nav .prev {
  margin-bottom: 1.5em;
}
.single-page-nav .prev a {
  padding-left: 20px;
}
.single-page-nav .prev a::before {
  left: 0;
  border-bottom: 1px solid #282828;
  border-left: 1px solid #282828;
}
.single-page-nav .next {
  margin-bottom: 1.5em;
}
.single-page-nav .next a {
  padding-right: 20px;
  text-align: right;
}
.single-page-nav .next a::before {
  right: 0;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
}
.single-page-nav .btn {
  text-align: center;
}/*# sourceMappingURL=service.css.map */