@charset "UTF-8";
.single-page {
  background-color: var(--black);
}

/* 記事タイトル・画像 */
.single-hero {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  width: 57vw;
  margin: auto;
}
.single-hero h2 {
  color: #fff;
}

.single-img .thumbnail-image {
  margin: 20px auto;
  aspect-ratio: 2.4/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 記事本文 */
.single-content {
  margin: 20px auto;
  text-align: left;
  line-height: 1.8;
}

/* サロンメニューに戻るボタン */
.single-button {
  text-align: center;
  margin-top: 30px;
}
.single-button .btn-more {
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  /* 記事タイトル・画像 */
  .single-hero {
    padding: 40px 50px;
    width: 100%;
  }
  .single-hero h2 {
    font-size: 24px;
  }
  /* 記事本文 */
  .single-content {
    margin: 20px auto;
    text-align: left;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  /* 記事タイトル・画像 */
  .single-hero {
    padding: 40px 20px;
  }
}/*# sourceMappingURL=single.css.map */