@charset "utf-8";/* ========================
   エリア全体の設定
======================== */
.ambassador-block {
  max-width: 600px;
  margin: 0 auto 100px auto; /* 60pxから100pxに広げて余裕をもたせました */
}

/* 最後のブロックだけは下の余白を少し控えめ（または同様）にする */
.ambassador-block:last-child {
  margin-bottom: 60px;
}

/* ========================
   H3ヘッダー（画像＋テキスト）
======================== */
.brand-header {
  display: flex;
  align-items: center;
  background-color: #f0f0f0; /* 薄いグレーの背景 */
  padding: 15px 20px;
  margin: 0 0 10px 0; /* 下の画像との隙間 */
  font-size: 14px;
  font-weight: normal;
  border-radius: 4px; /* 角を少し丸める */
}

/* ヘッダー内の丸い画像 */
.brand-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* 画像を綺麗な丸にする */
  object-fit: cover; /* 画像が歪まないようにする */
  background-color: #fff;
  border: 1px solid #ccc;
  margin-right: 15px; /* 右側のテキストとの隙間 */
  flex-shrink: 0;
}

/* ヘッダー内のテキスト */
.brand-name {
  color: #333;
  line-height: 1.5;
}

/* ========================
   横スライドの設定
======================== */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
}
.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  width: 100%; 
}
.carousel-wrapper::-webkit-scrollbar {
  display: none; 
}
.slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
}
.nav-arrow {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0; 
  appearance: none;
  outline: none;
}
.nav-arrow:hover {
  color: #999;
}