<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*---------------------------------------------
  HERO AREA
---------------------------------------------*/

#hero-area {
    width: 100%;
    height: 100vh;
    z-index: -999;
    margin: 0px auto;
    position: relative;
}

#videoId {
    display: none;
}

@media screen and (max-width: 767px) {

    #hero-area {
        z-index: auto;
    }

    #hero-area .hero-inner {
        z-index: -9999;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: url(../images/top/sp_bg.gif) no-repeat center center;
        background-size: cover;
    }

}

@media screen and (min-width: 992px) {
    #hero-area .hero-inner h1 {
        display: none;
    }
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #hero-area .hero-inner {
        width: 100%;
        margin-left: 0;
    }

    #hero-area .hero-inner .logo {
        width: 66px;
        position: absolute;
        top: 66px;
        left: 0;
    }

    #hero-area .hero-inner h1 {
        height: calc(100vh - 66px);
        padding-top: 36px;
        margin: 0 auto;
        text-align: center;
    }

    #hero-area .hero-inner h1 img {
        height: 70%;
    }
}


/*---------------------------------------------
  TOP CONTENTS
---------------------------------------------*/

#top-contents {
    width: 100%;
    overflow: hidden;
    clear: both;
    background: -moz-linear-gradient(0deg, rgba(242, 253, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(242, 253, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(0deg, rgba(242, 253, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#top-contents .inner {
    margin-left: 148px;
    overflow: hidden;
    clear: both;
}

#top-contents .inner-m {
    margin: 0 60px 0 148px;
    padding-top: 150px;
    overflow: hidden;
    clear: both;
    border-top: solid 1px #EAEFF4;
}

#top-contents .inner-s {
    padding: 0 0 0 498px;
    clear: both;
}

#top-contents .inner-sns {
    margin: 0 0 0 498px;
    overflow: hidden;
    clear: both;
}

#top-contents h2 {
    width: 10%;
    height: 200px;
    float: left;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

#top-contents .inner-s h2, #top-contents .inner-sns h2 {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    float: none;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
}

#top-contents .inner-box {
    width: 90%;
    float: right;
}

#top-contents h2 {
    font-size: 30px;
    font-family: 'spinweradC', serif;
    letter-spacing: 5px;
}

@media screen and (max-width: 991px) {
    #top-contents h2 {
        font-size: 16px;
        letter-spacing: 3px;
    }
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #top-contents .inner {
        margin-left: 40px;
        overflow: hidden;
        clear: both;
    }

    #top-contents .inner-m {
        margin: 0 30px 0 40px;
        padding-top: 0;
        border-top: none;
    }

    #top-contents .inner-s {
        padding: 0 0 0 80px;
        clear: both;
    }

    #top-contents .inner-sns {
        margin: 0 0 0 80px;
        overflow: hidden;
        clear: both;
    }

    #top-contents .inner-s h2, #top-contents .inner-sns h2 {
        margin-bottom: 30px;
    }

    #top-contents .inner-box {
        width: 90%;
        float: right;
    }
}


/*--------------------
  blur
--------------------*/
#loading .loading-inner, #loading .loading-inner .logo img, #top-contents .btn, #top-contents h2,
#about-us .lead, #about-us .text, #about-us .member li,
#news .news-list,
#schedule .schedule,
#discography .discography,
#video .video,
#sns .sns li {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.blur {
    -webkit-animation-name: Blureffect;
    animation-name: Blureffect;
    opacity: 1;
    transition: .8s;
}

@-webkit-keyframes Blureffect {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes Blureffect {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}


/*--------------------
  Parallax
--------------------*/

#top-contents {
    position: relative;
}

#top-contents .rellax {
    position: absolute;
}


#top-contents .rellax img {
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    touch-callout: none;
    user-select: none;
    pointer-events: none;
}


/****** PC ******/
@media screen and (min-width: 992px) {
    #top-contents .bg1 {
        width: 50%;
        top: 8%;
        left: 0;
    }

    #top-contents .bg2 {
        width: 40%;
        top: 18%;
        right: 0;
    }

    #top-contents .bg3 {
        width: 100%;
        top: 36%;
        left: 0;
    }

    #top-contents .bg4 {
        width: 65%;
        top: 74%;
        right: 0;
    }

    #top-contents .bg5 {
        width: 100%;
        top: 94%;
        left: 0;
    }
}


/****** sp ******/
@media screen and (max-width: 991px) {
    #top-contents .bg1 {
        width: 90%;
        top: 6%;
        left: 0;
    }

    #top-contents .bg2 {
        width: 90%;
        top: 20%;
        right: 0;
    }

    #top-contents .bg3 {
        width: 100%;
        top: 40%;
        left: 0;
    }

    #top-contents .bg4 {
        width: 90%;
        top: 79%;
        right: 0;
    }

    #top-contents .bg5 {
        width: 100%;
        top: 96%;
        left: 0;
    }
}


/*--------------------
  BANNER
--------------------*/

#banner .swiper-container {
    margin: 50px 0 0 88px;
}

#banner .swiper-container .swiper-slide .bnr {
    padding-top: 56.25%;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

#banner .swiper-container .swiper-slide .bnr img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}

#banner .swiper-container .swiper-slide a:hover .bnr img {
    width: 110%;
}


/*progressbar*/
#banner .swiper-pagination-progressbar {
    width: auto;
    height: 2px;
    margin: 50px 60px 0;
    position: inherit !important;
    background: #D5DEE8;
}

#banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #B9C2CC;
}


/*--------------------
  PC
--------------------*/
@media screen and (min-width: 992px) {
    #banner .swiper-prev-button, #banner .swiper-next-button {
        position: absolute;
        top: 0;
        width: 28%;
        height: 100%;
        z-index: 999;
        cursor: pointer;
    }

    #banner .swiper-prev-button {
        left: 0;
    }

    #banner .swiper-next-button {
        right: 0;
    }


    /*cursor*/
    #cursor {
        pointer-events: none;
        position: fixed;
        top: -40px;
        left: -40px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        transform: translate(0, 0);
        transition: transform 0.2s;
        transition-timing-function: ease-out;
        z-index: 999;
        display: none;
    }

    #cursor.prev-active {
        display: block;
        background: url("../images/top/prev.svg") no-repeat center center;
        background-size: 100%;
    }

    #cursor.next-active {
        display: block;
        background: url("../images/top/next.svg") no-repeat center center;
        background-size: 100%;
    }

}

/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #banner .swiper-container {
        margin: 50px 0 0 0;
    }

    /*progressbar*/
    #banner .swiper-pagination-progressbar {
        margin: 50px 30px 0;
    }

    /*button*/
    #banner .swiper-prev-button, #banner .swiper-next-button {
        position: absolute;
        top: calc(50% - 50px);
        width: 40px;
        z-index: 999;
        cursor: pointer;
    }

    #banner .swiper-prev-button {
        left: 15%;
    }

    #banner .swiper-next-button {
        right: 15%;
    }
}

/*--------------------
  ABOUT US
--------------------*/

#about-us {
    padding: 100px 0 150px;
    overflow: hidden;
    clear: both;
}

#about-us .about-box .about-us .lead {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 2;
}

#about-us .about-box .about-us .text {
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 2.5;
}

#about-us .about-box .member ul {
    display: flex;
    margin: 0 -1.5%;
}

#about-us .about-box .member li {
    width: 17%;
    margin: 0 1.5%;
}


/*--------------------
  PC
--------------------*/
@media screen and (min-width: 992px) {

    #about-us .about-box .about-us {
        width: 40%;
        float: left;
    }

    #about-us .about-box .member {
        width: 55%;
        float: right;
    }
}

/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #about-us {
        background-size: 80%;
        margin: 30px auto 80px;
        padding: 60px 0 0;
    }

    #about-us .about-box .about-us {
        margin-right: 30px;
    }

    #about-us .about-box .about-us .lead {
        font-size: 22px;
        margin-bottom: 30px;
    }

    #about-us .about-box .about-us .text {
        font-size: 12px;
        margin-bottom: 60px;
    }

    #about-us .about-box .member {
        margin: 60px 0 0 -40px;
        padding-bottom: 15%;
    }
}


/*--------------------
  NEWS
--------------------*/

#news {
    position: relative;
}

#news .news-list dt .thum {
    padding-top: 62.1%;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

#news .news-list dt .thum img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}

#news .news-list li a:hover dt .thum img {
    width: 110%;
}

#news .news-list dd .date {
    font-family: 'Crimson Text', serif;
    color: #999;
    font-size: 11px;
    margin: 16px 0;
}

#news .news-list dd .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

#news .news-list li:first-child dd .title {
    font-size: 30px;
}

#news .news-list li a:hover .title {
    text-decoration: underline;
}

/*--------------------
  PC
--------------------*/
@media screen and (min-width: 992px) {

    #news .news-list ul {
        overflow: hidden;
        clear: both;
        margin: 0 -1.5%;
    }

    #news .news-list li {
        width: 26%;
        float: left;
        margin: 0 1.5%;
    }

    #news .news-list li:first-child {
        width: 39%;
    }

    #news .news-list .btn {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #news .news-list li {
        border-bottom: solid 1px #EAEFF4;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    #news .news-list dl {
        overflow: hidden;
        clear: both;
    }

    #news .news-list dt {
        width: 40%;
        float: left;
    }

    #news .news-list dd {
        width: 55%;
        float: right;
    }

    #news .news-list dd .title {
        font-size: 12px;
    }

    #news .news-list li:first-child dt, #news .news-list li:first-child dd {
        width: 100%;
        float: none;
    }

    #news .news-list li:first-child dd .title {
        font-size: 22px;
    }

    #news .news-list li:nth-child(n+2) dd .date {
        margin: 0 auto 8px;
    }
}


/*--------------------
  SCHEDULE
--------------------*/

#schedule {
    margin: 150px auto;
}

#schedule .btn {
    text-align: right;
}

/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #schedule {
        margin: 80px auto;
    }
}


/*--------------------
  DISCOGRAPHY
--------------------*/

#discography .swiper-slide dd .release {
    margin: 16px auto;
    font-size: 16px;
    font-family: 'Crimson Text', serif;
}

#discography .swiper-slide dd .subtitle {
    font-size: 16px;
    font-family: 'Crimson Text', serif;
}

#discography .swiper-slide dd .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
}

/*pagination*/
#discography .pagination {
    display: flex;
    align-items: center;
}

#discography .pagination .pagination-btn {
    width: 70px;
    margin: 30px 0 0 40px;
    display: flex;
}

#discography .pagination .disco-prev-button, #discography .pagination .disco-next-button {
    width: 50%;
    cursor: pointer;
}

#discography .pagination .disco-prev-button {
    text-align: left;
}

#discography .pagination .disco-next-button {
    text-align: right;
}

#discography .pagination .pagination-btn .swiper-button-disabled {
    opacity: 0.4;
}

#discography .pagination img {
    height: 14px;
}

/*progressbar*/
#discography .swiper-pagination-progressbar {
    flex: 1;
    height: 2px;
    margin-top: 30px;
    position: inherit !important;
    background: #D5DEE8;
}

#discography .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #B9C2CC;
}


#discography .btn {
    text-align: right;
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #discography .swiper-slide dd .release {
        font-size: 12px;
    }

    /*pagination*/
    #discography .pagination .pagination-btn {
        width: 48px;
        margin: 30px 0 0 25px;
    }
}


/*--------------------
  VIDEO
--------------------*/

#video {
    padding: 150px 0 100px;
}

#video .swiper-container {
    overflow: inherit;
}

#video .swiper-container .swiper-slide dt {
    padding-top: 56.25%;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

#video .swiper-container .swiper-slide dt img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}

#video .swiper-container .swiper-slide a:hover dt img {
    width: 110%;
}

#video .video dd .date {
    font-family: 'Crimson Text', serif;
    color: #999;
    font-size: 11px;
    margin: 16px 0;
}

#video .video dd .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
}

#video .video a:hover .title {
    text-decoration: underline;
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #video {
        padding-top: 100px;
    }

    #video .video dd .title {
        font-size: 16px;
    }
}

/*--------------------
  SNS
--------------------*/

#sns {
    background: url("../images/top/bg-sns.svg") no-repeat top center;
    background-size: 100%;
    padding: 7% 0;
}

#sns .inner-sns {
    border-left: solid 1px #D5DEE8;
    padding-left: 40px;
}

#sns li {
    font-size: 18px;
    margin-bottom: 1em;
    display: inline-block;
    min-width: 200px;
}

#sns li a {
    text-decoration: underline;
    text-decoration-color: #D5DEE8;
}

#sns li a:hover {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: #42464E;
}

/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #sns {
        background: url("../images/top/bg-sns-sp.svg") no-repeat top center;
        background-size: 100%;
        padding: 7% 0;
    }

    #sns li {
        font-size: 16px;
        width: 40%;
        min-width: inherit;
        margin-right: 10%;
        float: left;
    }
}




</pre></body></html>