@charset "UTF-8";

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

/* ---------------------------------------------------------------------------------------- */
/* ボタン追従 */
/* ---------------------------------------------------------------------------------------- */
.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-header {
    cursor: pointer;
    position: relative;
}

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

.icon {
    left: 93%;
    bottom: 50%;
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 4px;
}

.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background-color: #004091;
    width: 70%;
    height: 45%;
    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-item .heading.accordion-header {
    margin: 0 0 10px 0;
}

.accordion-contents > h2.heading,
.accordion-contents > h3.heading {
    margin: 10px 0;
}

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

.accordion-contents .news--target {
    margin: 20px 0 40px 0;
}

.accordion-item .heading.accordion-header .text-area {
    padding-right: 18px;
}

.accordion-header span:first-child {
    width: calc(100% - 25px);
}

/* ---------------------------------------------------------------------------------------- */
/* アイコン */
/* ---------------------------------------------------------------------------------------- */
.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; }


/* ---------------------------------------------------------------------------------------- */
/* ボタン統一 */
/* ---------------------------------------------------------------------------------------- */
.button {
    display: inline-block;
    min-width: 200px;
    padding: 14px 40px;
    background-color: #004091;
    color: #FFF;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 0;
    cursor: pointer;
}