.product-logo span {
    color: #6E7274;
    font-size: 18px;
    font-style: normal;
    display: inline-block;
    margin-left: 1em;
    padding: 0;
    vertical-align: middle;
}
h2.car-model {
    font-weight: 400;
    margin: 0;
    padding: 14px 0 5px 1.2em;
    line-height: 1.5em;
    text-indent: -1.2em;
    font-size: 21px;
}
h2.car-model:before {
    font-family: icomoon;
    content: '\e920';
    margin-right: 8px;
    position: relative;
    color: #d2321e;
}
/* グループごとのセクションの余白 */
.gallery-section {
    margin-bottom: 20px;
}
/* 4枚横並びのグリッド設定 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* 画像リンクの調整 */
.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.gallery-grid a:hover {
    transform: scale(1.03);
}
/* サムネイル画像自体のスタイル（4:3比率で統一） */
.gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
/* PhotoSwipe全体の背景の透明度を変更 */
.pswp__bg {
    opacity: 1 !important;
    background: #111111 !important;
}
.pswp__dynamic-caption {
    color: #eeeff0;
    font-size: 18px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transition: opacity 120ms linear !important;
}
.pswp__dynamic-caption--aside {
    margin-top: 10px;
}
.pswp__counter {
    font-size: 16px;
}
/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}