/**
 * LiPro Kit フッターロゴ機能スタイル
 */

/* フッター全体のスタイル */
.footer-explanation-wrapper {
  background-color: transparent;
  color: #fff;
  padding: 30px 0;
  width: 100%;
  box-sizing: border-box;
}

/* コンテナのスタイル */
.footer-explanation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* 各アイテム（ロゴ+説明文）のスタイル */
.footer-explanation-item {
  display: flex;
  align-items: center;
  width: 48%;
  margin-bottom: 20px;
}

/* ロゴのスタイル */
.footer-explanation-logo {
  flex: 0 0 70px;
  margin-right: 16px;
}

.footer-explanation-logo img {
  width: 70px;
  height: 70px;
  padding: 5px;
  background-color: #fff;
  display: block;
  box-sizing: border-box;
}

/* 説明文のスタイル */
.footer-explanation-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.footer-explanation-text p {
  margin: 0 0 10px;
}

.footer-explanation-text p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .footer-explanation-container {
    flex-direction: column;
  }
  
  .footer-explanation-item {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .footer-explanation-item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .footer-explanation-item {
    /* 横並びを維持 */
    flex-direction: row;
    align-items: center;
  }
  
  .footer-explanation-logo {
    /* ロゴを小さくして横幅を確保 */
    flex: 0 0 60px;
    margin-right: 10px;
  }
  
  .footer-explanation-logo img {
    width: 50px;
    height: 50px;
  }
  
  .footer-explanation-text {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .footer-explanation-text p {
    margin: 0 0 5px;
  }
}
