@charset "UTF-8";

.moreve-header__logo {
    max-width: 110px;
}
@media (max-width: 768px) {
  .moreve-header__inner {
    flex-direction:row;
    height: 57px;
    min-height: auto;
  }
}
.inner{
  padding-top: 7vw;
}
.panel{
  padding: 0;
}
/* カード全体のスタイル */
.card {
  display: flex; /* 横並びにするためのFlexbox */
  background-color: #ffffff;
  margin-bottom: 40px;
  text-decoration: none;
  color: #333;
  border: 1px solid #e0e0e0;
  align-items: center; /* 垂直方向の中央揃え */
  transition: opacity 0.3s;
}

.card:hover {
  opacity: 0.6;
}

/* 画像エリア（左側） */
.card-image {
  width: 40%; /* 画像の幅比率 */
  flex-shrink: 0;
  min-height: 190px;
  background:url("../images/img_moreve_pc.jpg") no-repeat top center/cover;
}
.card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* プレースホルダー用のスタイル */
.placeholder-box {
  background-color: #f0f0f0;
  height: 250px; /* 高さを指定 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}

/* テキストエリア（右側） */
.card-content {
  padding: 40px;
  width: 60%;
}

.card-content h2 {
  margin: 0 0 15px 0;
  color: #2b2b2b;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.card-content h2 img {
    max-height: 40px;
  }
.card-content p {
  font-size: 16px;
  margin: 0;
  color: #000;
}
.__mice {
  min-height: 280px;
}
.__mice .card-image{
  background:url("../images/img_mice_pc.jpg") no-repeat top center/cover;
  min-height: 280px;
}
/* レスポンシブ対応（スマホ表示） */
@media (max-width: 768px) {
  .card {
    flex-direction: column; /* 縦並びに変更 */
  }
  .card-image {
  min-height: 130px;
  background:url("../images/img_moreve.jpg") no-repeat top center/cover;
}
  .card-image, .card-content {
    width: 100%;
    align-items: center;
  }
  .card-content {
    padding: 30px;
  }
  .card-content h2 img {
    max-height: 25px;
  }
  .__mice{
    height: auto;
  }
  .__mice .card-image{
    background:url("../images/img_mice.jpg") no-repeat top center/cover;
    min-height: 160px;
  }
  .moreve-bottom .inner{
    padding-top: 0;
  }
}