.elementor-1384 .elementor-element.elementor-element-e05223c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1384 .elementor-element.elementor-element-3ab2a4e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1384 .elementor-element.elementor-element-3ab2a4e{--padding-top:0px;--padding-bottom:40px;--padding-left:20px;--padding-right:20px;}}@media(min-width:768px){.elementor-1384 .elementor-element.elementor-element-3ab2a4e{--content-width:1000px;}}/* Start custom CSS for html, class: .elementor-element-a6425a5 *//* 2カラムレイアウト設定 */
.aoyama-image-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* カード基本設定 */
.aoyama-image-card {
    flex: 1 1 calc(50% - 30px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    text-decoration: none;
    color: #333333;
    transition: all 0.4s ease;
    overflow: hidden; /* 画像の角丸対応 */
    border: 1px solid #f0f0f0;
}

.aoyama-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* 画像部分 */
.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f8f9fa;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aoyama-image-card:hover .card-image img {
    transform: scale(1.08);
}

/* コンテンツ部分 */
.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    margin: 0 0 12px 0;
    font-size: 19px;
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
}

.card-desc {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    flex-grow: 1;
}

/* 詳しく見るテキスト */
.card-link-text {
    font-size: 14px;
    font-weight: bold;
    color: #4F5C7F; /* 指定色：ネイビー */
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.card-link-text .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.aoyama-image-card:hover .card-link-text {
    color: #222222;
}

.aoyama-image-card:hover .card-link-text .arrow {
    transform: translateX(5px);
}

/* モバイル対応：1カラム化 & 14px基準 */
@media (max-width: 768px) {
    .aoyama-image-grid {
        gap: 40px;
    }
    
    .aoyama-image-card {
        flex: 1 1 100%;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-desc {
        font-size: 14px; /* モバイル14px */
    }

    .card-link-text {
        font-size: 14px; /* モバイル14px */
    }
}/* End custom CSS */