.column-list h1 {
    margin-bottom: 2.4rem;
}
.column-list-wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 90%;
    align-items: flex-start;  
}

.column-list-inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 380px));
    gap: 6.4rem 4rem;
    justify-content: start;
    justify-items: center;
}
/* 2コラム */
aside {
    max-width: 300px;
    width: 100%;
    position: sticky;
    top: 160px; 
    align-self: flex-start; /* flexの高さ影響を受けない */
}
.column-list-box {
    border-radius: 10px;
    box-shadow:  0px 4px 20px rgba(0, 0, 0, .1);
    position: relative;
}
.column-list-box .new-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #6285FC;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 24px;
    border-radius: 10px 0 0 0;
    z-index: 10;
}
.column-list-box:hover {
    opacity: 0.7;
}
/* 画像 */
.column-list-box-img img {
    aspect-ratio: 2 / 1;
    width: 100%;       /* 親要素に合わせて縮む */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.column-list-box-text {
    text-align: left;
    padding: 1.6rem 2.4rem;
}
.column-list-box-text .gray-text {
    padding-bottom: 0.8rem;
    color: #555555;
    font-size: 1.6rem;
    font-weight: 500;
}
.column-list-box-text .title-text {
    font-size: 2rem;
}

/*新お問合せ */
/* フォーム全体 */
.form-inner-form.column-form {
    background-color: #F8FAFF;
    padding: 24px 5%;
}
.zcwf_lblLeft {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    font-family: Arial, sans-serif;
}
/* 見出し */
.column-form .heading-wrapper {
    margin-bottom: 1.6rem;
}

/* 項目下の余白 */
.zcwf_lblLeft .zcwf_row {
    margin-bottom: 0.8rem;
}
.zcwf_lblLeft .zcwf_row:last-of-type {
    margin-bottom: 0;
}

/* ラベル */
.zcwf_lblLeft .zcwf_col_lab label {
    font-size: 1.4rem;
    line-height: 2.4;
}

/* テキスト入力・メール・電話番号 */
.zcwf_lblLeft input[type="text"],
.zcwf_lblLeft input[type="email"],
.zcwf_lblLeft input[type="tel"],
.zcwf_lblLeft input[type="password"] {
    width: calc(100% - 18px);
    height: 35px;
    padding: 1px 8px;
    font-size: 1.4rem;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000;
}

/* テキストエリア */
.zcwf_lblLeft textarea {
    width: calc(100% - 18px);
    height: 50px;
    padding: 8px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 1.4rem;
    color: #000;
    line-height: 1.6;
}

/* プレースホルダー */
.column-form .zcwf_lblLeft input::placeholder,
.column-form .zcwf_lblLeft textarea::placeholder {
    color: #ffffff;
    font-size: 1.4rem;
}

/* チェックボックス */
.column-form .zcwf_lblLeft .zcwf_ckbox label {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-top: 8px;
}
.column-form .zcwf_lblLeft .zcwf_ckbox input {
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
}
span.required {
    color: #f91f1f;
}

/* 送信ボタン */
.column-form .formsubmit.zcwf_button {
    display: block;
    width: 200px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background-color: #6285FC;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 0;
    text-align: center;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 1.4rem;
}

/* リセットボタン */
.column-form .zcwf_col_fld {
    text-align: center;
}
.column-form input.zcwf_button {
    border: none;
    background: none;
    color: #000000;
    text-align: center;
    margin-top: 16px;
}
.column-form input.zcwf_button:hover {
color: #2253E6;
}
.column-form .zcwf_lblLeft .formsubmit.zcwf_button:hover {
    background: linear-gradient(120deg, #6A8BFC 0%, #7A9CFF 50%, #6A8BFC 100%);
    background-size: 200% auto;
    animation: shimmer 1.5s linear infinite;
    color: #ffffff;
}

/* ページネーション全体 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.pagination ul.page-numbers {
    display: flex;
}

/* 各ページ番号 */
.pagination li {
    margin: 0;
}

.pagination a, .pagination span {
    display: block;
    padding: 2px 12px;
    color: #6386FC;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.8rem;
}

/* ホバー時 */
.pagination a:hover {
    opacity: 0.7;
}

/* 現在のページ */
.pagination .current {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.8rem;
    background-color: #6386FC;
}

/* 前へ/次へボタン */
.pagination .prev,
.pagination .next {
    font-weight: bold;
}

@media screen and (max-width: 1270px) {
.column-list-inner {
    justify-content: center;
}
}

@media screen and (max-width: 768px) {
.column-list-box-text .title-text {
    font-size: 1.6rem;
}
.column-list-box-text .gray-text {
    font-size: 1.4rem;
}

/* お問合せ */
aside {
    max-width: 100%;
    position: fixed;
    top: unset;
    bottom: 0;
    z-index: 10;
}
.column-form.zcwf_lblLeft {
    max-width: 100%;
}
.column-form.zcwf_lblLeft input,
.column-form.zcwf_lblLeft textarea {
    font-size: 1.4rem;
}
.column-form.zcwf_lblLeft .zcwf_button {
    width: 200px;
    padding: 0.8rem 0;
    font-size: 1.6rem;
}
}