@charset "utf-8";

/* アイテムクレジット専用レイアウト：HTMLの二重書きを不要にするための設定 */
.u-item-credit-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}

.u-item-credit-custom .item-node {
  flex: 1;
  min-width: calc(50% - 10px); /* スマホで2列並びを維持 */
}

.u-item-credit-custom .item-node a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* PC版：左画像・右テキスト、下揃え */
@media screen and (min-width: 768px) {
  .u-item-credit-custom .item-node a {
    display: flex !important;
    align-items: flex-end;
    gap: 12px;
  }
  .u-item-credit-custom .item-node .img-box {
    flex: 0 0 50%;
  }
  .u-item-credit-custom .item-node .text-box {
    flex: 1;
  }
}

/* SP版：画像の下にテキスト */
@media screen and (max-width: 767px) {
  .u-item-credit-custom .item-node a {
    display: block !important;
  }
  .u-item-credit-custom .item-node .text-box {
    margin-top: 10px;
  }
}

/* 共通調整 */
.u-item-credit-custom img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホで要素の順序を逆にする */
@media screen and (max-width: 767px) {
  .c-feature__column--sp-reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}