@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "bebas-neue-rounded";
    font-display: swap;
}

@font-face {
    font-family: "hiragino-kaku-gothic-pron";
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Light.woff2") format("woff2"),
        url("../fonts/NotoSansJP-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
        url("../fonts/NotoSansJP-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
        url("../fonts/NotoSansJP-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
        url("../fonts/NotoSansJP-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2"),
        url("../fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

html {
    font-size: 0.81vw;
    height: 100%;
}

html.wf-loading body {
    opacity: 0;
}

html.wf-active body {
    opacity: 1;
    transition: opacity 0.1s ease;
}

body {
    font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 1.5rem;
    color: #505050;
    font-weight: 300;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
    transition: .3s;
}

a:hover {
    opacity: 0.8;
    transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
}

.sp-only {
    display: none;
}

.container {
    width: 108rem;
    margin: auto;
}

.pager {
    margin-top: 3.6rem;
}

.pager ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.pager ul li .page-num {
    color: #fff;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
}

.pager ul li .page-num.next {
    display: flex;
    gap: 1.8rem;
    margin-left: 0.5rem;
}

.pager ul li .page-num.next img {
    width: 2.1rem;
}

.pager ul li .page-num.current {
    color: #EF7677;
}

.select-wrap {
    position: relative;
    display: inline-block;
}

.select-wrap select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #FF5757;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 1.3rem;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding: 0.4rem 2.8rem 0.4rem 3.2rem;
    cursor: pointer;
    line-height: 1.6rem;
}

.select-wrap::after {
    content: "";
    background: #ffffff;
    height: calc(tan(60deg) * 0.7rem / 2);
    width: 0.8rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.select-wrap select option {
    background-color: #fff;
    color: #901F32;
}

/* header */

header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 3.7rem;
    z-index: 99;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 102.9rem;
    margin: auto;
}

header .logo {
    width: 16.2rem;
}

#gnav ul {
    list-style: none;
    display: flex;
    gap: 7.5rem;
}

#gnav ul li a {
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    color: #fff;
    position: relative;
    text-shadow: 0 0 0.4rem #ff4f4b;
    -webkit-text-stroke: 0.01rem #FFC1C1;
    text-stroke: 0.01rem #FFC1C1;
    position: relative;
}

#gnav ul li.active a::before {
    content: attr(data-text);
    position: absolute;
    color: #FF8E8E;
    left: -1px;
    top: 0;
    text-shadow: none;
}

.navi-btn-wrap {
    display: none;
}

/* footer */

footer {
    background-color: #EF7777;
    color: #fff;
}

.footer-wrap {
    width: 104.9rem;
    margin: auto;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .logo {
    width: 27.6rem;
}

footer .info {
    display: flex;
    padding-bottom: 1.7rem;
    font-size: 1.2rem;
    gap: 4.8rem;
    font-family: "verdana", sans-serif;
    font-weight: 400;
}

footer .foot-link a {
    color: #fff;
}

.sub-page {
    padding-top: 12rem;
    padding-bottom: 8rem;
}

.title-area {
    margin-bottom: 1.4rem;
}

.page-title {
    font-size: 3.4rem;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    color: #F7F7F7;
}

.main-frame {
    border-radius: 2rem;
    background-color: rgb(250 145 143 / 60%);
    padding: 3.2rem 4rem;
}

.inner-frame {
    background-color: #fff;
    padding: 4.8rem 8.8rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.back-text {
    color: #F8F2F0;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    padding-right: 4rem;
}

.back-link img {
    width: 2.1rem;
}

/* TOP */

#top .container {
    width: 94.8rem;
}

.kv {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    display: flex;
    align-items: center;
}

.kv .inner {
    width: 108rem;
    margin: auto;
}

.kv h1 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #fff;
    font-weight: 300;
}

.kv h1 img {
    width: 38.4rem;
}

.top-news {
    padding-top: 13.1rem;
    padding-bottom: 11.2rem;
}

.top-news h2 {
    font-size: 3.4rem;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    color: #F7F7F7;
}

/* NEWS */

.news-frame {
    border-radius: 2rem;
    background-color: rgb(250 145 143 / 80%);
    padding: 2.8rem 3rem;
}

.news-head {
    text-align: center;
}

.news-frame .link-wrap {
    margin-top: 2.8rem;
}

.news-frame .more-link {
    color: #F8F2F0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    padding-left: 4rem;
}

.news-frame .more-link img {
    width: 2.1rem;
}

.news-list {
    list-style: none;
}

.news-list li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.news-list li .icon {
    width: 6rem;
    flex-shrink: 0;
}

.news-list li .icon img {
    width: 100%;
}

.news-list li a {
    background-color: #fff;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    color: #901F32;
    gap: 2.5rem;
    padding: 1rem 3.4rem 1rem 1.2rem;
}

.news-list li a .detail {
    width: calc(100% - 8.5rem);
}

.news-list li a .date {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    display: inline-block;
}

.news-list li a .new {
    color: #FD6969;
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-left: 0.8rem;
}

.news-list li a .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2rem;
}

#news.list .main-frame {
    padding-bottom: 2.5rem;
}

#news.single .main-frame {
    padding: 0;
}

#news.single .title-area {
    margin-bottom: 0;
    padding: 3rem 4.2rem 2rem 4.2rem;
}

#news.single .date {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #898989;
    margin-bottom: 1rem;
}

#news.single .title {
    border-bottom: 1px solid #FDBDBE;
    font-size: 2.4rem;
    line-height: 2.4rem;
    padding-bottom: 1.8rem;
    font-weight: 300;
    margin-bottom: 2.4rem;
}

#news.single .contents {
    word-break: break-word;
    line-height: 2.8rem;
}

#news.single .contents p {
    margin-bottom: 1.6rem;
}

#news.single .frame-bottom {
    padding: 3rem 0;
    text-align: center;
}

/* DISCOGRAFY */

#discography .main-frame {
    padding: 0;
}

#discography .title-area {
    padding: 3rem 4.2rem 2rem 4.2rem;
    margin-bottom: 0;
}

#discography .inner-frame {
    padding: 3.6rem 4.8rem;
}

#discography .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem 4.2rem;
}

#discography .card {
    text-align: center;
}

#discography .card a {
    color: #505050;
}

#discography .card-image {
    border-radius: 0.8rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

#discography .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#discography .card-title {
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 2rem 0 1rem;
}

#discography .card-date {
    font-size: 1.3rem;
    line-height: 2rem;
}

#discography .frame-bottom {
    padding: 3rem 0;
}

#discography .pager {
    margin-top: 0;
}

/* BIOGRAPHY */

#biography .main-frame {
    padding: 0 0 4.2rem 0;
}

#biography .title-area {
    padding: 3rem 4.2rem 2rem 4.2rem;
    margin-bottom: 0;
}

#biography .inner-frame {
    padding: 6.4rem 6.2rem;
}

#biography .content-wrap {
    display: flex;
    gap: 4.8rem;
}

#biography .text-area {
    width: 100%;
    word-break: break-word;
    line-height: 2.6rem;
    font-size: 1.6rem;
}

#biography .img-area {
    flex-shrink: 0;
    width: 44rem;
}

#biography .img-area img {
    border-radius: 0.8rem;
    margin-bottom: 5px;
}

/* MOVIE */

#movie .main-frame {
    padding: 0;
}

#movie .title-area {
    padding: 3rem 4.2rem 2rem 4.2rem;
    margin-bottom: 0;
}

#movie .inner-frame {
    padding: 2.8rem 3.8rem;
}

#movie .movie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6rem 3.2rem;
}

#movie .movie-item {
    background-color: #FFF0F0;
    border-radius: 0.8rem;
    height: 27.4rem;
}

#movie .frame-bottom {
    padding: 3rem 0;
}

#movie .pager {
    margin-top: 0;
}

/* LIVE */

.tab-wrap {
    margin-bottom: 1.6rem;
}

.cat-tab {
    list-style: none;
    display: inline-flex;
    background-color: rgb(255 136 136 / 47%);
    border-radius: 1.3rem;
    border: 1px solid rgb(255 255 255 / 47%);
}

.tab-button {
    border-radius: 1.3rem;
    overflow: hidden;
}

.tab-button a {
    min-width: 8.4rem;
    color: #901F32;
    display: inline-block;
    text-align: center;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding: 0.4rem 1.8rem;
}

.tab-button.active a {
    background-color: #fff;
    pointer-events: none;
}

.live-list {
    list-style: none;
}

.live-list li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.live-item {
    text-decoration: none;
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 6rem;
    display: flex;
    align-items: center;
    color: #505050;
    padding: 1.6rem 2.2rem;
}

.live-item .date {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-right: 1.2rem;
    flex-shrink: 0;
    width: 8.4rem;
}

.live-item .cat {
    width: 8.4rem;
    color: #fff;
    padding: 0.4rem 0;
    border-radius: 1.3rem;
    font-size: 1.4rem;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    flex-shrink: 0;
}

.live-item .cat.live {
    background-color: #FD6096;
}

.live-item .cat.event {
    background-color: #FF886C;
}

.live-item .title {
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
}

.live-item .title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-break: break-all;
}

#live.single .main-frame {
    padding: 0;
}

#live.single .title-area {
    padding: 3rem 4.2rem 2rem 4.2rem;
    margin-bottom: 0;
}

#live.single .inner-frame {
    padding: 4.2rem;
}

#live.single .live-head {
    display: flex;
    align-items: center;
    margin-bottom: 3.2rem;
}

#live.single .date {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2rem;
}

#live.single .cat {
    margin: 0 3.6rem 0 3rem;
    display: inline-block;
    color: #fff;
    min-width: 8.4rem;
    border-radius: 1.3rem;
    text-align: center;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding: 0.4rem;
}

#live.single .cat.live {
    background-color: #FD6096;
}

#live.single .cat.event {
    background-color: #FF886C;
}

#live.single .time {
    font-size: 1.8rem;
}

#live.single .title {
    font-size: 2.4rem;
    font-weight: 300;
    border-bottom: 1px solid #FDBDBE;
    margin-bottom: 5.4rem;
    padding-bottom: 1.8rem;
    line-height: 2.8rem;
}

#live.single .contents {
    line-height: 2.6rem;
    word-break: break-word;
}

#live.single .contents .thumbnail {
    margin-bottom: 6.4rem;
}

#live.single .contents p {
    margin-bottom: 1.6rem;
}

#live.single .frame-bottom {
    padding: 3rem 0;
    text-align: center;
}

/* MEDIA */

#media .tab-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-list {
    list-style: none;
}

.media-list li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.media-item {
    color: #505050;
    display: flex;
    background-color: #fff;
    border-radius: 4.5rem;
    overflow: hidden;
}

.media-item .cat {
    color: #fff;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    width: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.media-item .cat.radio {
    background-color: #FD61AE;
}

.media-item .cat.web {
    background-color: #FF886C;
}

.media-item .cat.magazine {
    background-color: #FFB06C;
}

.media-item .cat.voice-actor {
    background-color: #FF3939;
}

.media-item .cat.narration {
    background-color: #F26596;
}

.media-item .cat.others {
    background-color: #DD6768;
}

.media-item .cat.tv {
    background-color: #FF6E6E;
}

.media-item .title {
    line-height: 1.8rem;
    padding: 0.6rem 2.6rem 0.6rem 2rem;
    border-right: 1px solid #FAAEAB;
    width: 23.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 1.2rem 0;
    word-break: break-word;
}

.media-item .contents {
    line-height: 1.8rem;
    margin: 1.6rem 0;
    padding: 0.6rem 2rem 0.6rem 2.8rem;
    word-break: break-word;
}

#media .regular {
    margin-top: 5.6rem;
}

#media h2 {
    font-size: 3.4rem;
    font-family: "bebas-neue-rounded", "Arial Rounded MT Bold", "Hiragino Kaku Gothic ProN", "Verdana", sans-serif;
    font-weight: 400;
    color: #F7F7F7;
    margin-bottom: 0.8rem;
}

/* LINK */

.link-list {
    list-style: none;
}

.link-list li:not(:last-child) {
    margin-bottom: 1rem;
}

.link-list li a {
    background-color: #fff;
    border-radius: 4.4rem;
    display: flex;
    align-items: center;
    color: #901F32;
    gap: 2rem;
    padding: 1.2rem 1.6rem;
}

.link-icon {
    width: 6.2rem;
    flex-shrink: 0;
}

/* Error */

.error-message {
    color: #901F32;
    font-size: 1.1em;
}

@media only screen and (min-width: 1240px) {
    html {
        font-size: 10px;
    }
}