/* ============================================================
   AO（所属機関）ページ
============================================================ */

body {
  background-color: #fff;
}

.page-ao {
  background: #fff;
  padding-top: 72px;
  /* fixed header分 */
}

/* ============================================================
   FV（ファーストビュー）
============================================================ */

.ao-fv {
  margin: 0 20px;
  border-radius: 10px;
  background: url(../img/ao/bg.jpg) center / cover no-repeat;
  background: linear-gradient(153.24deg, #0781a8 19.418%, #7ac4dc 55.953%);
}

/* ============================================================
   実績セクション
============================================================ */


.ao-stats {
  background: #fff;
  padding: 80px 0 20px;
}


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

.ao-about {
  background: #fff;
  padding: 100px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* ---- 課題バブル ---- */
.ao-about__problems {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.ao-about__problem {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.ao-about__problem+.ao-about__problem {
  margin-left: -18px;
}

/* アイコン */
.ao-about__problem-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ao-about__problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
  background: #f1f7f9;
}

.ao-about__problem-title {
  font-weight: 700;
  font-size: 18px;
  color: #2a2d2a;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
}

.ao-about__problem-detail {
  font-size: 13px;
  color: #2a2d2a;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
}

/* ---- 矢印 ---- */
.ao-about__arrow {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* ---- ダイアグラムセクション ---- */
.ao-about__diagram-section {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- コーナー写真 ---- */
.ao-about__photo {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.ao-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ao-about__photo--tl {
  top: 0;
  left: 0;
}

.ao-about__photo--tr {
  top: 0;
  right: 0;
}

.ao-about__photo--bl {
  bottom: 0;
  left: 0;
}

.ao-about__photo--br {
  bottom: 0;
  right: 0;
}


/* ---- ダイアグラム画像 ---- */
.ao-about__diagram {
  flex-shrink: 0;
}

.ao-about__diagram img {
  display: block;
  width: 700px;
  height: auto;
}

/* ============================================================
   サービスセクション
============================================================ */

.ao-service {
  background: #fff;
  padding: 100px 0 120px;
}

/* ---- カテゴリグループ ---- */
.ao-service__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ao-service__group-title {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-dark);
  letter-spacing: 0.05em;
  margin: 0;
  text-align: center;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   導入事例セクション
============================================================ */

.ao-case {
  background: #fff;
  padding: 100px 0 80px;
}

/* ============================================================
   トライアルCTA
============================================================ */

.ao-trial {
  padding: 40px 0;
}

/* ============================================================
   選ばれる理由セクション
============================================================ */

.ao-reason {
  background: url('../img/ao/reason_bg.jpg') center / cover no-repeat;
  background: url(../img/ao/bg.jpg) center / cover no-repeat;
  background-color: #0781a8;
  padding: 0 20px 80px;
}

/* ============================================================
   セミナー情報セクション
============================================================ */

.ao-seminar {
  background: #fff;
  padding: 100px 0 80px;
}

/* ============================================================
   FAQ
============================================================ */

.ao-faq {
  padding: 100px 0;
  background: #fff;
}

/* ============================================================
   フッター（AO）
============================================================ */

.site-footer--ao {
  background: #e4eef0;
}

/* ============================================================
   CTA
============================================================ */

.ao-cta {
  padding: 80px 0 100px;
  background: #fff;
}


/* ============================================================
   ページ固有スタイル（共通 biz- クラスの上書き）
============================================================ */

/* 選ばれる理由：カードの背景色・ぼかし */
.biz-reason__card {
  background: rgba(26, 132, 164, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* トライアル：背景画像 */
.biz-trial__card {
  background: url('../img/ao/ao_tiral_bg.png') center / cover no-repeat;
}

/* CTA：グラデーション背景 */
.biz-cta__download,
.biz-cta__col {
  background: linear-gradient(170deg, #0095bd 24%, #007796 98%);
}

/* ============================================================
   Tablet  (max-width: 1199px)
============================================================ */
@media (max-width: 1199px) {
  .ao-about__problem {
    width: 240px;
    height: 240px;
  }

  .ao-about__problem-icon {
    width: 80px;
    height: 80px;
  }

  .ao-about__problem-title {
    font-size: 15px;
  }

  .ao-about__problem-detail {
    font-size: 12px;
  }

  .ao-about__diagram-section {
    overflow: hidden;
  }

  .ao-about__diagram img {
    width: 100%;
    max-width: 600px;
  }

  .ao-about__photo {
    width: 150px;
    height: 150px;
  }
}

/* ============================================================
   Mobile  (max-width: 767px)
============================================================ */
@media (max-width: 767px) {

  .ao-fv {
    margin: 0 10px;
    border-radius: 8px;
  }

  /* About */
  .ao-about {
    padding: 60px 0;
    gap: 40px;
  }

  .ao-about__problems {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .ao-about__problem {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-height: auto;
    margin-left: 0 !important;
    box-sizing: border-box;
  }

  .ao-about__problem-icon {
    position: static;
    transform: none;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .ao-about__problem-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .ao-about__problem-title {
    margin: 0;
    text-align: left;
    font-size: 15px;
  }

  .ao-about__problem-detail {
    text-align: left;
    font-size: 12px;
  }

  .ao-service__group {
    gap: 20px;
  }

  .ao-service__group-title {
    font-size: 20px;
  }

  .ao-about__diagram-section {
    overflow: hidden;
  }

  .ao-about__photo {
    display: none;
  }

  .ao-about__diagram {
    width: 100%;
  }

  .ao-about__diagram img {
    width: 100%;
  }

  /* Stats */
  .ao-stats {
    padding: 60px 0;
  }

  /* Service */
  .ao-service {
    padding: 60px 0;
  }


  /* Case */
  .ao-case {
    padding: 60px 0;
  }

  /* Reason */
  .ao-reason {
    padding: 0;
  }

  /* Seminar */
  .ao-seminar {
    padding: 60px 0;
  }

  /* FAQ */
  .ao-faq {
    padding: 60px 0;
  }

  /* CTA */
  .ao-cta {
    padding: 60px 0;
  }

  .ao-cta>.container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

}