/* top-style.css */

/* particles.js キャンバスを画面最背面に固定 */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ==== セクション全体の背景を完全に透過 ==== */
.about-section,
.about-section .p-section,
.about-section .p-section__inner {
  background: none !important;
  background-color: transparent !important;
  position: relative;
  z-index: 1;
}

/* 擬似要素に背景がある場合も削除 */
.about-section::before,
.about-section::after {
  background: none !important;
}

/* レイアウト用コンテナ */
.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* 画像部分 */
.about-image {
  flex: 1 1 50%;
  padding: 10px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 右側コンテンツ部分（半透明） */
.about-content {
  flex: 1 1 50%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

/* タグ */
.about-content .section-tag {
  color: #FF5C00;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 見出し風テキスト */
.about-content .section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #222;
  line-height: 1.2;
}

/* メインテキスト */
.about-content .main-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

/* サブテキスト */
.about-content .sub-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* View More リンク */
.about-content .view-more {
  color: #FF5C00;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #FF5C00;
  padding-bottom: 2px;
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-image,
  .about-content {
    flex: 1 1 100%;
  }
  .about-content {
    margin-top: 20px;
  }
}

/* 左右を入れ替え */
.about-section--reverse .about-container {
  flex-direction: row-reverse;
}

/* モバイルでは縦並びに戻す */
@media screen and (max-width: 768px) {
  .about-section--reverse .about-container {
    flex-direction: column;
  }
}

