@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

.section-subheading {
    position: relative;
    padding-left: 24px;
    font-size: 32px;
    scroll-margin-top: 120px;
}

.section-subheading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 38px;
    width: 5px;
    background-color: #c23426;

}


.jump-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: #c23426;
    color: #fff;
    border: 1px solid #c23426;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.jump-button:hover {
    background-color: #a52a1f;
    /* 濃い赤 */
}

/* ボタンリスト */
.area_link_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* ボタン間のスペースを広げる */
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.area_link_item {
    flex: 1 1 auto;
    /* 均等＋縮む余地あり */
    min-width: 150px;
    /* 最低幅を確保 */
}

/* ▼アイコン */
.arrow-circle {
    display: inline-block;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    /* 白背景 */
    color: #c23426;
    /* 赤文字 */
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    position: relative;
    top: 0;
}

.seminar_index_box {
    position: relative;
    margin-top: 40px;
    min-height: 80px;
    /* ボタンの高さ＋余白に合わせて調整 */
    /* 例として 80px。実寸に合わせて変更してください */
}

.seminar_index_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* transform: translateY(-50%); */
    /* right: 0px; */
    font-weight: 400;
    font-size: 1.2rem;
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(230, 230, 230);
    border-image: initial;
    padding: 20px;
    border-radius: 10px;
}

/* スマホ版 */
@media screen and (max-width: 768px) {
    .seminar_index_btn {
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
    }
}


/* スマホ版 */
@media screen and (max-width: 768px) {
    .area_link_list {
        flex-direction: column;
    }
}


.sp-feature_pure-g {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    /* liの高さを揃える */
}

.bn_seminar_list {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.bn_seminar-item {
    position: relative;
    display: flex;
    /* block → flex */
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px -10px rgba(0, 0, 0, .3);
    height: auto;
    /* 無理に伸ばさない */
}

.bn_seminar-item img {
    max-width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    /* 画像が潰れないようにする */
}

.bn_seminar-item-text {
    padding: 20px 30px;
    background-color: #fff;
    color: #000;
    text-shadow: none;
    flex-grow: 1;
    /* テキスト部分を伸ばす */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 上揃え */
}


.bn_seminar-item-text .__lead {
    /* color: red; */
}


/* @media screen and (max-width: 1059px) {
    .area_link_btn {
        border-left: none;
        padding-left: 0px;
    }
} */

@media screen and (max-width: 767px) {
    .section-subheading {
        font-size: 24px;
        padding-left: 15px;
        scroll-margin-top: 100px;
    }

    .pure-u-1-2,
    .pure-u-12-24 {
        width: 100%;
    }

    .space-u-20-child {
        padding-top: 6vw;
    }

    .index-column-spBtn {
        display: none;
    }
}