﻿
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ベース設定 */
.l-container-wrap {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic",
    "Yu Gothic UI", "Yu Gothic Medium", "Meiryo", sans-serif;
  line-height: 1.8;
  color: #333;
}

/* 明朝体クラス */
.mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho",
    "YuMincho", "Times New Roman", serif;
}

/* 共通レイアウト */
.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 共通要素 */
img {
  width: 100%;
  height: auto;
}

/* パンくずリスト */
.breadcrumb-container {
  margin: 20px 0;
}

.breadcrumb {
  font-size: 12px;
  color: #666;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* セクションタイトル */
.section-title {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

/* サブタイトル */
.subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 10px;
}

/* 説明文 */
.description {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* 区切り線 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 60px 0 40px;
}

/* ヒーローセクション */
.hero-section {
  margin-bottom: 60px;
}

.hero-image img {
  margin-bottom: 40px;
}

.hero-text {
  text-align: center;
}

.hero-text .description {
  text-align: center;
  margin: 0 auto;
}

/* コンテンツ画像 */
.content-image {
  margin: 40px 0;
}

/* テキストセクション */
.text-section {
  margin: 60px 0;
}

/* 余白の設定 */
.target-div {
  padding-top: 0;
  padding-bottom: 5rem;
}

/* mobile対応 */
@media (max-width: 768px) {
  .hero-text .description {
    text-align: left;
  }
}
