/* ====== About HANEANT 共通 ====== */

#about-haneant {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 15px 80px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.8;
}

#about-haneant img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 見出し */

#about-haneant .about-title {
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

#about-haneant .about-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

#about-haneant .about-heading {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

#about-haneant .about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 6px;
  background-color: #333;
}

/* 段落・リスト */

#about-haneant p {
  margin-bottom: 12px;
}

#about-haneant ul {
  margin: 0 0 12px 20px;
  padding: 0;
}

#about-haneant li {
  margin-bottom: 4px;
}

/* ====== ヒーローエリア ====== */

#about-haneant .about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

#about-haneant .about-hero__text {
  flex: 1 1 50%;
}

#about-haneant .about-hero__image {
  flex: 1 1 50%;
}

/* ====== 各セクション ====== */

#about-haneant .about-section {
  margin-bottom: 50px;
}

#about-haneant .about-section__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

#about-haneant .about-section__text {
  flex: 1 1 50%;
}

#about-haneant .about-section__image {
  flex: 1 1 50%;
}

/* セクションごとの微調整 */

#about-haneant .about-story .about-section__inner,
#about-haneant .about-designer .about-section__inner {
  flex-direction: row-reverse;
}

/* ====== 3つのこだわり ====== */

#about-haneant .about-commitment__item {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fafafa;
}

#about-haneant .about-commitment__title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

#about-haneant .about-commitment__image {
  margin-top: 10px;
}

/* アトリエ＆メッセージのセクションはflexではなく縦並びにする */
#about-haneant .about-message .about-section__inner {
  display: block;
}


	/* 3つのこだわりセクションは縦並びにする */
#about-haneant .about-commitment .about-section__inner {
  display: block;
}

/* 念のため、各ボックスは1列表示に固定 */
#about-haneant .about-commitment__item {
  width: 100%;
  box-sizing: border-box;
}

/* ====== アトリエ写真（ギャラリー） ====== */

/* ====== アトリエ写真（1列表示に変更） ====== */

#about-haneant .about-atelier-images {
  display: block;
  margin: 20px 0 25px;
	padding: 0;
}

#about-haneant .about-atelier-images__item {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px;
}

/* アトリエ写真：左右のずれをなくす */
#about-haneant .about-atelier-images__item {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 12px 0;  /* ← 左右の余白を0にリセット */
}

#about-haneant .about-atelier-images__item:last-child {
  margin-bottom: 0;
}

/* ====== ボタン ====== */

#about-haneant .about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

#about-haneant .about-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  text-align: center;
  min-width: 180px;
}

#about-haneant .about-btn.sub {
  background-color: #fff;
  color: #333;
}

/* ====== レスポンシブ対応 ====== */

@media (max-width: 767px) {
  #about-haneant {
    padding: 30px 10px 60px;
  }

  #about-haneant .about-title {
    font-size: 22px;
  }

  #about-haneant .about-subtitle {
    font-size: 14px;
  }

  #about-haneant .about-heading {
    font-size: 18px;
  }

  #about-haneant .about-hero,
  #about-haneant .about-section__inner {
    flex-direction: column;
  }

  #about-haneant .about-hero__image,
  #about-haneant .about-section__image {
    order: 2;
  }

  #about-haneant .about-hero__text,
  #about-haneant .about-section__text {
    order: 1;
  }

  #about-haneant .about-commitment__item {
    padding: 15px;
  }

  #about-haneant .about-atelier-images__item {
    flex: 1 1 100%;
  }

  #about-haneant .about-links {
    flex-direction: column;
  }

  #about-haneant .about-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {

  /* はじまりのストーリー：スマホでは縦1列にする */
  #about-haneant .about-story .about-section__inner {
    display: block;              /* flex を解除して縦並び */
  }

  #about-haneant .about-story .about-section__text,
  #about-haneant .about-story .about-section__image {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  /* 念のため、画像下に少し余白をつけてもOK */
  #about-haneant .about-story .about-section__image {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {

  /* デザイナー紹介：スマホでは縦1列にする */
  #about-haneant .about-designer .about-section__inner {
    display: block;              /* flex を解除して縦並び */
  }

  #about-haneant .about-designer .about-section__text,
  #about-haneant .about-designer .about-section__image {
    width: 100%;
    max-width: 100%;
    flex: none;                  /* 念のため flex の影響を消す */
  }

  #about-haneant .about-designer .about-section__image {
    margin-top: 15px;            /* 画像の上に少し余白 */
  }
}
