html {
    scroll-padding-top: 150px;
}

.camp-list-section {
    background: white;
}
.camp_list_box a {
    text-decoration: none !important;
}

.camp_list_box .list_data {
    visibility: hidden;
}

.camp_list_box .list_data dd,
.camp_list_box .list_data dd:last-child {
    height: auto;
    display: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* カテゴリセクション：縦並び・開閉 */
.camp-category-section {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}
.camp-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #38b6aa;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    border: none;
    width: 100%;
    text-align: left;
}
.camp-category-header:hover {
    opacity: 0.95;
}
/* 矢印アイコン（icon_arrow.svg）：白表示・開=下向き／閉=右向き */
.camp-category-header__icon {
    display: inline-block;
    margin-left: 8px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    filter: brightness(0) invert(1); /* 白で表示 */
    transition: transform 0.25s ease;
    transform: rotate(90deg); /* 開いているときは下向き */
}
.camp-category-section.is-closed .camp-category-header__icon {
    transform: rotate(0deg); /* 閉じているときは右向き */
}
img.camp-category-header__icon {
    width: 40px !important;
    height: 40px;
}

.camp-category-body {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.camp-category-section.is-closed .camp-category-body {
    display: none;
}
.camp-category-body .camp_list_box {
    width: 96%;
    margin: 0 auto 30px;
}
.camp-category-body__coming_soon {
    padding: 40px 20px;
    text-align: center;
    color: #888;
    font-size: 18px;
}
@media (min-width: 1040px) {
    .camp-category-body .camp_list_box {
        width: 33.333%;
        margin: 0 0 30px 0;
        /* padding-bottom: 85px; */
    }
}
@media screen and (max-width: 1040px) {
    .camp-category-body .camp_list_box {
        width: 48%;
        margin: 0 0 30px 0;
    }
}
@media screen and (max-width: 769px) {
    /* SP: カテゴリ内を横スクロール */
    .camp-category-section {
        overflow: visible;
    }
    .camp-category-body {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        margin-top: 12px;
        /* margin-left: -10px; */
        margin-right: -10px;
        padding: 8px 10px 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }
    .camp-category-body .camp_list_box {
        flex: 0 0 auto;
        width: 85%;
        max-width: 320px;
        margin: 0 12px 0 0;
        scroll-snap-align: start;
    }
    .camp-category-body .camp_list_box:last-child {
        margin-right: 10px;
    }
}
.camp_list_box .list_more span {
    position: relative;
    text-align: center;
    padding: 13px 36px 13px 0px;
}
/* 右端に横三角形（右向き） */
.camp_list_box .list_more span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent currentColor;
}
@media (min-width: 1040px) {
    .camp_list_box .list_more span {
        position: absolute;
    }
}
.camp_list_box:hover .list_more span {
    color: #fff;
    border: none;
    padding: 16px 36px 16px 0px; /* 通常時と同じ左右の比率でずれないように */
    background-image: linear-gradient(45deg, #67bbe0 15%, #00dfd5 85%);
}
.camp_list_box:hover .list_more span::after {
    content: '';
    top: 50%;
    right: 17px; /* border なしになる分だけ右にずらして矢印の見た目位置を揃える */
    transform: translateY(-50%);
    border-color: transparent transparent transparent #fff;
}

@media screen and (max-width: 769px) {
    .ec-layoutRole__main {
        padding-top: 80px;
        /* padding-top: 115px; */
    }
    .l-header-navi_list {
        display: none;
    }
    .l-header_rainbow {
        bottom: 0px;
    }
}