/* --- ベース設定 --- */
#deo-category.plus {
  margin: 0;
  padding: 0;
  color: #09383a;
  line-height: 1.8;
  background-color: #fff;
}

/* --- メインビジュアルセクション (#main-vs) --- */
#main-vs {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* キャッチコピーのスタイル */
#main-vs p {
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  padding: 3rem 0 2rem;
  letter-spacing: 0.05em;
  font-size: 2.2rem;
}

/* 画像の基本設定 */
#main-vs picture img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 1500px;
  height: auto;
  vertical-align: bottom;
}

/* --- Aboutセクション (#about) --- */
#about {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#about h2 {
  font-size: 1.8rem;
  color: #00796b; /* 清潔感のあるグリーン（アロマのイメージ） */
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* 見出しの下線アクセント */
#about h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #00796b;
}

#about p {
  margin: 0 auto;
  display: inline-block;
  text-align: left; /* 長文は左寄せが見やすい */
}

#about span {
  font-size: 1.05rem;
  color: #555;
}

/* --- レスポンシブ (スマホ向け) --- */
@media (max-width: 767px) {
    #main-vs p {
    font-size: 1.6rem;
    top: 10px;
    padding: 8px 15px;
  }

  #about {
    padding: 50px 20px;
  }

  #about h2 {
    font-size: 1.4rem;
  }

  #about span {
    font-size: 0.95rem;
  }
}