@charset "UTF-8";

/* ---------------------------------------------------------------------------------------- */
/* スクロールなめらか */
/* ---------------------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

/* ---------------------------------------------------------------------------------------- */
/* ボタン追従 */
/* ---------------------------------------------------------------------------------------- */
.btn-sticky {
    position: sticky;
    bottom: 40px;
    opacity: 0;
    transition: 0.3s opacity ease;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.btn-sticky.sticky {
    opacity: 1;
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* ---------------------------------------------------------------------------------------- */
/* アコーディオン */
/* ---------------------------------------------------------------------------------------- */
.accordion-item .heading.accordion-header {
    padding: 20px 60px 20px 25px;
    margin: 0 0 10px 0;
    cursor: pointer;
    position: relative;
}

.accordion-contents {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-contents {
    max-height: none;
}

.icon {
    left: 95%;
    bottom: 45%;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 13.723px;
}

.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background-color: #004091;
    width: 100%;
    height: 0.125vw;
    top: 50%;
    left: 0;
    transform: translateY(-11%);
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.icon::before {
    transform: rotate(90deg);
}

.accordion-item.active .icon::before {
    transform: rotate(180deg);
}

.accordion-item.active .icon::after {
    opacity: 0;
}

.accordion-contents .news--target {
    margin: 30px 0 50px 0;
}

.accordion-contents > .heading:first-child {
    margin-top: 10px;
}

/* ---------------------------------------------------------------------------------------- */
/* アイコン */
/* ---------------------------------------------------------------------------------------- */
.c-icon--category {
    margin: 20px 0 50px 4px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.c-icon--category > span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: #ffffff;
}

.c-icon + .c-icon--category > span:first-child {
    font-weight: 700;
    color: initial;
    padding: 0;
}

.c-icon--copy {
    position: relative;
    margin: 0 60px 0 0;
}
.c-icon--copy::before {
    content: '(※一部のみ)';
    width: 60px;
    color: initial;
    position: absolute;
    left: calc(100% + 3px);
    top: 0;
    bottom: 0;
    margin: auto 0;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.--flagship { background-color: #62C8F8; }
.--home { background-color: #F9823B; }
.--park { background-color: #f75239; }
.--joinus { background-color: #9B6698; }
.--online { background-color: #339B66; }
.--other { background-color: #262626; }