/*■■■■■■■■■■ imgSelectField ■■■■■■■■■■*/
/* 写真選択用コンテナ */
.imgSelectField {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* 自動でカードを並べる */
    gap: 20px; /* section 同士の間隔 */
    padding: 20px;
}

/*■-■-■-■ section */
.imgSelectField > section {
    display: grid;
    grid-template-columns: auto; /* 縦一列 */
    row-gap: 10px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fafafa;
    transition: transform 0.2s ease;
}
.imgSelectField > section:hover {
    transform: translateY(-4px); /* ホバーで少し浮かす */
}

/*■-■-■-■ section > img */
.imgSelectField > section > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/*■-■-■-■ section > button */
.imgSelectField > section > button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background-color: #4caf50;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.imgSelectField > section > button:hover {
    background-color: #45a049;
}













.lease-c {
    /* ピンク色の所 */
    background-color: rgb(238, 174, 144);
    position: relative;
}

.lease-c > .bg {
    display: block;
    margin: auto;
    width: 500px;
    height: auto;
    object-fit: contain;
}

.lease-c > .content_1 {
    position: absolute;
    width: 150px;
    height: auto;
    top: 100px;
    left: calc(50% - 250px);
    object-fit: contain;
    cursor: pointer;
}

.lease-c > .content_2 {
    position: absolute;
    width: 120px;
    height: auto;
    top: 300px;
    left: calc(50% + 50px);
    object-fit: contain;
    cursor: pointer;
}