@charset "UTF-8";

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 カスタムプロパティ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
:root {
    --cl-main: #D5EDF7;
    --cl-accent: #D4BA45;
    --cl-bg1: rgba(213, 237, 247, 0.35);
    --cl-bg2: rgba(247, 213, 240, 0.35);
    --cl-text-ttl: #A0A0A0;
    --cl-text-main: #595959;
    --cl-text-sub: #fff;

    --fz-h1: 2.5rem;
    --fz-h2: 1.5rem;
    --fz-h3: 1.25rem;
    --fz-p: 1rem;
    --fz-sm: 0.625rem;

    --dur: 10s;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 基本設定 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
html {
    font-size: 100%;
    scroll-padding-top: 7.6vh;
}

body {
    font-family: "Zen Old Mincho", "sans-serif";
    color: var(--cl-text-main);
    line-height: 2;
    overflow-x: hidden;
}


h1 {
    color: var(--cl-text-sub);
    font-weight: normal;
}

#index h2 {
    color: var(--cl-text-ttl);
    margin-bottom: 120px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

ul,
li {
    list-style-type: none;
}

#index section {
    padding: 160px 5% 100px;
    /* overflow-x: hidden; */
}

.inner,
.ig,
.youtube {
    max-width: 480px;
    margin: 0 auto;
}


#index section:not(#mv) {
    overflow-x: hidden;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 ハンバーガー 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
.header_logo {
    width: 150px;
}

.header_insta {
    width: 20px;
}

.ham_icon {
    width: 32px;
}

/* ハンバーガー */
.ham-button {
    width: 32px;
    margin-top: 10px;
}

.ham-button-line {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.ham-button-line::before,
.ham-button-line::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    transition: inherit;
}

/* 上の線 */
.ham-button-line::before {
    right: -26px;
    border-radius: 50%;
}

/* 下の線 */
.ham-button-line::after {
    right: -13px;
    border-radius: 50%;
}

.ham_menu {
    position: absolute;
    bottom: -27px;
    left: -2px;
    color: #000;
}

.ham_menu:last-of-type {
    display: none;
}

.header_big_box {
    width: 100%;
    height: 100vh;
    position: fixed;
    translate: 100%;
    right: 0;
    top: 0;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.header_box {
    background-color: rgba(54, 106, 166, 0.77);
    width: 80%;
    max-width: 500px;
    height: 100vh;
    margin-left: auto;
    color: var(--cl-text-sub);
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

header {
    position: fixed;
    width: 90%;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-left: 5%;
    top: 15px;
    gap: 20px;
    z-index: 9999;
}

.header_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_ham a::after {
    content: attr(data-en);
    display: block;
    font-size: clamp(8px, 6.592px + 0.376vw, 12px);
    width: 100%;
}

.nav_ham li {
    margin-bottom: 1rem;
    transition: 0.3s;
}

.nav_ham li:hover {
    transform: translateY(-4px);
}

.nav_ham li:last-child {
    margin-bottom: 0;
}

.nav_ham a {
    font-size: clamp(20px, 18.592px + 0.376vw, 24px);
}

.ham_icon {
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
}

.ham_icon a {
    width: 32px;
    flex-shrink: 0;
}

.text-icon {
    display: flex;
    flex-wrap: wrap;
    width: 160px;
    justify-content: space-between;
}

.ham_name {
    font-size: 24px;
    font-family: "Alex Brush";
    transition: 0.3s;
}

.ham_name:hover {
    transform: translateY(-4px);
}

.open .ham-button-line {
    background-color: transparent;
}

.open .ham-button-line::before {
    rotate: 20deg;
    border-radius: 0;
    height: 1px;
    width: 35px;
    top: 0;
    background-color: #000;
}

.open .ham-button-line::after {
    rotate: -20deg;
    left: -4px;
    border-radius: 0;
    height: 1px;
    width: 35px;
    top: 0;
    background-color: #000;
}

.open .ham_menu:first-of-type {
    display: none;
}

.open .ham_menu:last-of-type {
    display: block;
}

.open .header_big_box {
    translate: 0;
    opacity: 1;
}

.open .header_insta {
    display: none;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 トップ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 MV〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#index h1 {
    font-size: var(--fz-h1);
    font-family: "Alex Brush", cursive;
    position: absolute;
    top: 75%;
    left: 50%;
    translate: -50%;
    z-index: 1;
    white-space: nowrap;
    width: fit-content;
    /* overflow-x: hidden; */
}

/* 背景レイヤー（Splide）を後ろへ */
.mv .mv-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* テキストは前面に固定 */
.mv .mv-text {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

/* スライド共通（背景を全画面に） */
.mv-slide {
    height: 100vh;
    background-size: cover;
    background-position: 60% 50%;
    /* ご指定の位置 */
    background-repeat: no-repeat;
}

/* ここで各スライドの bgi をCSSに置く */
.mv-slide:nth-child(1) {
    background-image: url("../img/mv1.webp");
}

.mv-slide:nth-child(2) {
    background-image: url("../img/mv2.webp");
}

.mv-slide:nth-child(3) {
    background-image: url("../img/mv3.webp");
}

/* 画質荒い */
.mv-slide:nth-child(4) {
    background-image: url("../img/mv4.webp");
    background-position: 40% 0;
}

.mv-slide:nth-child(5) {
    background-image: url("../img/mv5.webp");
}

/* スクロール */
#index .scroll {
    position: absolute;
    right: 50%;
    top: 90%;
    translate: 50%;
    color: var(--cl-accent);
    font-size: 0.75rem;
    z-index: 10;
}

/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: var(--cl-accent);
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 2px;
    z-index: 10;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.pc {
    display: none;
}

#index #mv {
    position: relative;
    background-image: url(../img/mv1.webp);
    background-size: cover;
    height: 100vh;
    background-position: 60% 50%;
    padding: 0;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜トップに戻るボタン〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
/* main{
    position: relative;
} */
.btn_top {
    position: fixed;
    bottom: 3vh;
    right: 0;
    width: 20vw;
    max-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.btn_top.show {
    opacity: 1;
    visibility: visible;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜#index背景文字〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#index .section_ttl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#index .section_ttl::after {
    content: attr(data-en);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Birthstone Bounce", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;
    color: var(--cl-main);
    z-index: -5;
    white-space: nowrap;
    line-height: 1;
}



/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜グラデーション背景〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#live,
#online {
    background-image: linear-gradient(180deg, #fff, var(--cl-bg1), var(--cl-bg2), #fff);
    padding: 100px 5%;
}


/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 プロフィール〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#index .profile_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#index .profile_content img {
    width: 54%;
}

#index .profile_text h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    position: relative;
    font-weight: normal;
}

#index .profile_text h3::after {
    content: attr(data-en);
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.9rem;
}

#index .profile_text p {
    margin-top: 3rem;
}

#index .profile_content .btn {
    margin-right: auto;
}

#index .profile_slides {
    width: 80%;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 プロフィールスライド 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#profile_swiper {
    height: 100%;
    overflow-x: hidden;
}

#profile_swiper .splide__slide {
    max-width: 300px;
    margin-right: 1rem;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 ライブ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
.live_content img {
    width: 100%;
    display: block;
    padding-top: 100px;
}

/*〜〜〜View moreボタン〜〜〜*/
.btn {
    display: flex;
    justify-content: flex-end;
    margin-right: 1.5rem;
    margin-top: 4rem;
}

.btn_view_profile,
.btn_back_home {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    color: var(--cl-accent);
    position: relative;
}

.btn_view_profile .circle,
.btn_back_home .circle {
    width: 3.25rem;
    height: 3.25rem;
    border: 0.0625rem solid var(--cl-accent);
    border-radius: 50%;
    position: relative;
    margin-right: -0.9375rem;
}

.btn_view_profile .cutter,
.btn_back_home .cutter {
    position: absolute;
    width: 3.25rem;
    height: 3.25rem;
    background-color: white;
    clip-path: polygon(70% 0%, 70% 30%, 0% 20%, 30% 0%);
    rotate: 110deg;
}

/* View Profile: 右方向に伸びる */
.btn_view_profile .circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2.1875rem;
    width: 3.125rem;
    height: 0.0625rem;
    background: var(--cl-accent);
    transform: translateY(-50%) scaleX(1);
    transform-origin: left center;
}

.btn_view_profile:hover .circle::before,
.btn_back_home:hover .circle::before {
    transform: translateY(-50%) scaleX(1);
    animation: hover .5s 1;
}

/* Back Home: 左方向に伸びる */
.btn_back_home .circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2.1875rem;
    width: 3.125rem;
    height: 0.0625rem;
    background: var(--cl-accent);
    transform: translateY(-50%) scaleX(1);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

@keyframes hover {
    0% {
        transform: translateY(-50%) scaleX(0);
    }

    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

.btn_view_profile .text,
.btn_back_home .text {
    color: var(--cl-accent);
    z-index: 1;
}

.btn_back_home {
    margin-left: 2.1875rem;
    margin-right: auto;
}

/*〜〜〜その他ボタン〜〜〜*/
.btn_others {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    color: var(--cl-accent);
    position: relative;
}

.btn_others .circle {
    width: 3.25rem;
    height: 3.25rem;
    border: 0.0625rem solid var(--cl-accent);
    border-radius: 50%;
    position: relative;
    margin-left: -0.8125rem;
}

#live .btn_others .circle,
#media .btn_others .circle,
#online .btn_others .circle {
    background-image: url(../img/btn_circle.svg);
    background-size: contain;
    border: none;
    border-radius: 0;
}

/*〜〜〜ボタン横棒〜〜〜*/
/* ホバー前の線 */
.btn_others .circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.7rem;
    width: 3.125rem;
    /*横棒の長さ*/
    height: 0.0625rem;
    background: var(--cl-accent);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* ホバー後の線 */
.btn_others:hover .circle::before {
    width: 5.125rem;
    /*横棒の長さ*/
    height: 0.0625rem;
}

.btn_others .text {
    color: var(--cl-accent);
    z-index: 1;
}

/*〜〜〜矢印の先端〜〜〜*/
.btn_others .circle::after {
    content: "";
    background: var(--cl-accent);
    height: 0.0625rem;
    width: 0.7rem;
    rotate: -135deg;
    transform-origin: left bottom;
    position: absolute;
    top: 48%;
    right: 0;
    left: 150%;
    transition: all 0.3s ease;
}

/* ホバー後の矢印の先端 */
.btn_others:hover .circle::after {
    left: 212%;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 メディア 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
.ig {
    padding-bottom: 100px;
}

.ig h3,
.youtube h3 {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 2.5rem;
    font-weight: 700;
    color: var(--cl-text-ttl);
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 ONL shop〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
.online_content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.online_illust {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.online_illust img:first-child {
    display: block;
    width: 60%;
    margin-top: 1rem;
}

.online_illust img:last-child {
    display: block;
    width: 40%;
    position: relative;
}

.online_illust img:last-child.play {
    animation: fadeinout 4s infinite ease-in-out;
}

@keyframes fadeinout {
    0% {
        bottom: 0;
        left: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        bottom: 80px;
        left: 80px;
        opacity: 0;
    }
}

.music,
.online_text {
    width: 100%;
}

/* .online_text{
    padding: 3rem 0 3rem;
} */

audio {
    width: 100%;
    max-width: 600px;
    margin: 4rem 0 4rem;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 お問い合わせ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#contact p {
    padding-bottom: 4rem
}

.contact_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
}

.form_group {
    display: flex;
    flex-direction: column;
}

.form_group span {
    color: #FF0000;
}

input,
textarea {
    border: 0.5px solid var(--cl-text-ttl);
    border-radius: 0.125rem;
}

textarea {
    height: 10rem;
}

input[type="submit"] {
    border: 0.5px solid var(--cl-accent);
    border-radius: 2rem;
    padding: 0.875rem 2.8rem;
    width: fit-content;
    margin: auto;
    margin-top: 3.75rem;
    color: var(--cl-accent);
    transition: 0.5s;
}

input[type="submit"]:hover {
    background: var(--cl-accent);
    color: var(--cl-text-sub);
    transform: translateY(5px);
    /* animation: pulsation .7s alternate infinite; */
}

/* @keyframes pulsation {
  0% { transform: scale(1); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1.1); }
} */
::placeholder {
    color: rgba(0, 0, 0, 0.35);
    padding-left: 0.5rem;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 プロフィールページ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#profile-page h1 {
    width: 60%;
    height: 80vh;
    margin-left: auto;
    margin-right: 5%;
}

#profile-page h1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#profile-page h2::before {
    content: attr(data-en);
    font-family: "Birthstone Bounce";
    text-transform: capitalize;
    color: var(--cl-main);
    font-size: clamp(190px, 116.056px + 19.718vw, 400px);
    font-weight: normal;
    writing-mode: vertical-lr;
    position: absolute;
    z-index: -2;
    white-space: nowrap;
    top: -530px;
    left: -50%;
}

#profile-page h2::after {
    content: attr(data-en);
    position: absolute;
    top: 2.7em;
    left: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

#profile-page h2 {
    position: relative;
}

.profile_page_box {
    top: 555px;
    margin: 87px 10%;
}

.profile_page_list {
    margin: 50px 0;
}

.profile_page_list div {
    display: flex;
    gap: 48px;
    margin-bottom: 8px;
}

.profile_page_list div:last-child {
    margin-bottom: 0;
}

.profile_page_list dt {
    width: 65px;
}

/* モーダル */
#profile-page .modal_text {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#profile-page .modal_text div {
    position: fixed;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    background-color: var(--cl-text-sub);
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
    line-height: 200%;
    letter-spacing: 0.03em;
}

#profile-page .js_modal_close {
    position: fixed;
    bottom: calc(10vh - 1px);
    left: 50%;
    translate: -50%;
    color: var(--cl-accent);
    text-transform: capitalize;
    background-color: var(--cl-text-sub);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
    width: calc(90% - 2rem);
    max-width: 600px;
    text-align: right;
    z-index: 9999;
    /* border-right: 1px solid #8a8a8a; */
}

#profile-page .js_modal_close span {
    position: relative;
}

#profile-page .js_modal_close span::after {
    content: '';
    display: block;
    background-color: var(--cl-accent);
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: calc(100% + 6px);
}

#profile-page .read_open {
    opacity: 1;
    visibility: visible;
}

body:has(.read_open) {
    overflow: hidden;
}

#profile-page .modal_before_text {
    line-height: 280%;
    letter-spacing: 3%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#profile-page .modal_in_text {
    padding-bottom: 50px;
    line-height: 230%;
}

#profile-page .modal_before_text button {
    color: var(--cl-accent);
    align-self: flex-end;
    position: relative;
    padding-right: 35px;
    margin-top: 24px;
    text-transform: capitalize;
}

#profile-page .modal_before_text button::before,
#profile-page .modal_before_text button::after {
    content: '';
    display: block;
    width: 15px;
    height: 1px;
    background-color: var(--cl-accent);
    position: absolute;
}

#profile-page .modal_before_text button::before {
    rotate: 90deg;
    transform-origin: left top;
    top: 17px;
    left: 90px;
}

#profile-page .modal_before_text button::after {
    top: 24px;
    left: 82px;
}

/* -----------gallery--------------- */
#gallery-page h3 {
    color: var(--cl-main);
    font-family: "Birthstone Bounce";
    text-transform: capitalize;
    font-size: clamp(100px, 20.775px + 21.127vw, 325px);
    font-weight: normal;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 2%;
    text-align: right;
    translate: 0 -50%;
}

#profile-page #profile_swiper .splide__slide {
    max-width: 100%;
}

.slide-group {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin: 120px 0;
}

#profile-page .slide-group div:first-child,
#profile-page .slide-group div:nth-child(3),
#profile-page .slide-group div:nth-child(4) {
    width: 64%;
    max-width: 450px;
}

#profile-page .slide-group div:first-child {
    margin-left: 10%;
}

#profile-page .slide-group div:nth-child(2) {
    position: relative;
    width: 75%;
    max-width: 800px;
    margin-left: auto;
}

#profile-page .slide-group h3 {
    color: var(--cl-main);
    font-family: "Birthstone Bounce";
    text-transform: capitalize;
    font-size: clamp(100px, 20.775px + 21.127vw, 325px);
    font-weight: normal;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 2%;
    text-align: right;
    translate: 0 -50%;
}

#profile-page .slide-group div:nth-child(3) {
    margin-right: auto;
}

#profile-page .slide-group div:nth-child(4) {
    margin-left: auto;
    margin-right: 10%;
}




/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 サンクスページ 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
#thanks {
    height: 100vh;
    display: flex;
    align-items: center;
}

#thanks h1 {
    font-size: 1.5rem;
    color: var(--cl-text-ttl);
    font-family: "Zen Old Mincho", serif;
    padding-bottom: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

#thanks h1::after {
    content: attr(data-en);
    position: absolute;
    top: 0;
    width: min-content;
    left: 50%;
    text-indent: -12rem;
    /* padding-left: 12rem; */
    line-height: 0.5;
    /* translate: -50% 0%; */
    font-family: "Birthstone Bounce", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(100px, 20.775px + 21.127vw, 325px);
    color: var(--cl-main);
    z-index: -1;
}

.thanks_content {
    padding: 0 5%;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#thanks img {
    position: absolute;
    right: 0;
    bottom: 10%;
    width: 32%;
    padding-right: 5%;
}

/* 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 フッター 〜〜〜〜〜〜〜〜〜〜〜〜〜〜 */
footer {
    background-image: url(../img/footer.webp);
    background-size: cover;
    background-position: 30% 0;
    color: var(--cl-text-sub);
    position: relative;
    z-index: 1;
}



footer::before {
    content: '';
    display: inline-block;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5rem;
    padding: 5rem 0;
    width: 80%;
}

footer .footer_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2.5rem;
}

footer .footer_menu img {
    padding-left: 1rem;
}

.logo {
    color: var(--cl-text-sub);
    padding-right: 8%;
    margin: 0 auto;
    width: 100%;
}

.logo svg {
    fill: var(--cl-text-sub);
}

.footer_sns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_sns img {
    width: 2rem;
    display: block;
}

.footer_sns .x {
    width: 1.8rem;
}

small {
    text-align: center;
}

.ig_post iframe {
    min-width: initial !important;
}

@media screen and (min-width: 767px) {
    #thanks h1 {
        display: block;
        font-size: var(--fz-h2);
        margin: auto;
        translate: 0 0;
        padding-bottom: 5vh;
    }

    #thanks h1::after {
        font-size: clamp(6rem, 0.857rem + 21.942vw, 27.188rem);
        top: -50%;
        right: 100%;
        width: max-content;
        max-width: 100vw;
        translate: 0 0;
        translate: -60%;
        padding-left: 0;
    }

    .thanks_inner {
        width: max-content;
        margin: auto;
        /* padding-top: 40%; */
    }

    #thanks .thanks_content {
        display: flex;
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    #thanks .thanks_content>p {
        padding: 0;
        z-index: 1;
    }


}

@media screen and (min-width: 1025px) {
    #index .pc {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
    }

    #index section:not(#mv) {
        overflow-x: clip;
    }

    /* スクロール */
    #index .scroll {
        font-size: 1.25rem;
    }

    /* セクションタイトル背景文字 */
    #index .section_ttl::after {
        font-size: clamp(6rem, 0.857rem + 21.942vw, 27.188rem);
    }

    #index #profile .section_ttl::after,
    #index #media .section_ttl::after,
    #index #contact .section_ttl::after {
        top: 0;
        left: -5%;
        transform: translate(0, -50%);
    }

    #index #live .section_ttl::after {
        top: 0;
        left: initial;
        right: -5%;
        transform: translate(0, -50%);
    }

    #index #online .section_ttl::after {
        top: 0;
        left: initial;
        right: -5%;
        transform: translate(0, -50%);
        font-size: clamp(6rem, 0.857rem + 21.942vw, 22rem);
    }

    /* トップページ */
    #index .pc {
        display: block;
        background-image: linear-gradient(rgba(89, 89, 89, 0), rgba(89, 89, 89, 0.5));
        width: 100vw;
        padding: 8rem 0;
        z-index: 1;
    }

    /* mv */
    .mv-slide:nth-child(4) {
        background-image: url("../img/mv4.webp");
        background-position: 0 80%;
    }

    .mv-slide:nth-child(5) {
        background-image: url("../img/mv5.webp");
        background-position: 0 60%;
    }



    /* mv */
    #index #mv {
        /* height: 100vh; */
        width: 100%;
        /* aspect-ratio: 16 / 9; */
    }

    .splide__track {
        height: 100%;
    }

    .mv-slide {
        height: 100% !important;
        aspect-ratio: 16 / 9;
    }

    /* スライド */
    #profile_swiper .splide__slide {
        max-width: 560px;
        margin-right: 1rem;
    }


    #index .pc ul {
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        color: var(--cl-text-sub);
        font-size: 1.5rem;
        white-space: nowrap;
        margin: 0 auto;
    }

    #index .pc ul li a {
        transition: color .5s;
        z-index: 10;
    }

    #index .pc ul li a:hover {
        color: var(--cl-accent);
    }

    #index .pc ul img {
        width: 20px;
    }

    #index h1 {
        font-size: 6.25rem;
        display: flex;
        flex-direction: column;
        top: 40%;
        left: 10%;
        line-height: 0.9;
        translate: 0;
    }

    #index h1 span {
        padding-left: 1em;
    }

    #index section {
        padding: 240px 5% 160px;
    }

    h1 {
        font-size: 6.25rem;
    }

    #index h2 {
        margin-bottom: 12rem;
        font-size: var(--fz-h1);
        z-index: 1;
    }

    /* #index #live h2 {
        width: fit-content;
        margin: auto;
        margin-bottom: 12rem;
    } */

    /* コンテンツ幅 */
    #index .inner,
    .ig,
    .youtube {
        max-width: 1000px;
        margin: 0 auto;
    }

    #index .profile_content,
    .live_content,
    .ig_post,
    .online_content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
    }

    #index .profile_content {
        align-items: start;
    }

    #index .profile_content img {
        width: 26%;
    }

    #index .profile_text {
        width: 64%;
        z-index: 2;
    }

    .live_content .live_text,
    .live_content img,
    .music,
    .online_text {
        width: 46%;
    }

    .ig,
    .youtube,
    #contact .inner {
        max-width: 800px;
    }

    .live_content img {
        padding-top: 0;
    }

    #online p {
        border-left: 0.5px solid var(--cl-text-ttl);
        padding-left: 3rem;
    }

    /* サンクスページ */
    #thanks h1 {
        font-size: var(--fz-h1);
    }

    #thanks h1::after {
        top: -100%;
    }

    #thanks_inner {
        /* padding-top: 20%; */
    }

    #thanks img {
        width: 24em;
        right: 5%;
    }

    /* フッター */
    #index footer,
    #thanks footer {
        background-image: url(../img/footer_pc.webp);
    }

    #index footer .inner,
    #thanks footer .inner {
        /* margin-left: auto;  */
        /* フッターを右寄せにしたい */
        margin-right: 15vw;
        align-items: flex-end;
        text-align: right;
        gap: 0;
        max-width: initial;
    }

    #index footer .inner .logo,
    #thanks footer .inner .logo {
        display: block;
        padding-right: 0;
        max-width: 334px;
        margin: 0 0 0 auto;
    }

    #index .footer_content,
    #thanks .footer_content {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 5rem;
        margin-top: 77px;
    }

    #index footer .footer_menu,
    #thanks footer .footer_menu {
        padding-bottom: 0;
        width: 50%;
    }

    #index .footer_sns,
    #thanks .footer_sns {
        width: 50%;
        gap: 2.5rem;
    }

    #index small,
    #thanks small {
        margin-top: 40px;
    }

    /* プロフィールページ */
    #profile-page h2::before {
        left: -30%;
    }

    .sp {
        display: none;
    }

    #profile-page .pc {
        display: block;
    }

    .profile_inner {
        display: flex;
        flex-direction: row;
        margin: 0 10%;
        gap: 8%;
    }

    .profile_imgs {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 36%;
    }

    #profile-page h1 {
        width: 100%;
        height: 90vw;
        max-height: 100vh;
    }

    #profile-page h1 img {
        margin-right: 0;
        z-index: -10;
        position: relative;
    }

    #profile-page h2::before {
        display: block;
        content: "risa\Anagata";
        white-space: pre-line;
        writing-mode: horizontal-tb;
        position: absolute;
        bottom: 0;
        left: -20%;
        line-height: 0.9;
        text-indent: -1.6ch;
        font-size: clamp(190px, 19.718vw, 400px);
    }

    #profile-page .profile_img {
        margin: 0 10% 20rem -10vw;
    }

    .profile_page_box {
        top: 555px;
        margin: 40rem 0 0;
        width: 56%;
    }

    #profile-page .modal_before_text {
        display: none;
    }

    #profile-page .modal_text {
        position: initial;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
    }

    #profile-page .modal_text div {
        position: initial;
        translate: 0 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0;
        background-color: transparent;
        line-height: 2;
    }

    #profile-page .modal_in_text {
        line-height: 280%;
    }

    #profile-page .js_modal_close {
        display: none;
    }

    /* ギャラリー */
    .slide-group {
        gap: 0;
    }

    #profile-page .slide-group h3 {
        font-size: clamp(100px, 20.775px + 21.127vw, 325px);
        top: -40%;
        left: 0;
        text-align: right;
        translate: 0 -50%;
    }

    #profile-page .slide-group div:first-child,
    #profile-page .slide-group div:nth-child(2),
    #profile-page .slide-group div:nth-child(3),
    #profile-page .slide-group div:nth-child(4) {
        max-width: none;
    }

    #profile-page .slide-group div:first-child,
    #profile-page .slide-group div:nth-child(4) {
        width: 28%;
    }

    #profile-page .slide-group div:first-child {
        margin-left: 10%;
    }

    #profile-page .slide-group div:nth-child(2),
    #profile-page .slide-group div:nth-child(3) {
        position: relative;
        margin-top: -5rem;
    }

    #profile-page .slide-group div:nth-child(2) {
        width: 41%;
    }

    #profile-page .slide-group div:nth-child(3) {
        width: 33%;
    }

    #profile-page .slide-group div:nth-child(4) {
        margin-right: 10%;
    }

    /* フッター */
    footer {
        background-image: url(../img/footer_pc.webp);
    }

    footer .inner {
        /* margin-left: auto;  */
        /* フッターを右寄せにしたい */
        margin-right: 15vw;
        align-items: flex-end;
        text-align: right;
        gap: 0;
        max-width: initial;
    }

    footer .inner .logo {
        display: block;
        padding-right: 0;
        max-width: 334px;
        margin: 0 0 0 auto;
    }

    .footer_content {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 5rem;
        margin-top: 77px;
    }

    footer .footer_menu {
        padding-bottom: 0;
        width: 50%;
    }

    .footer_sns {
        width: 50%;
        gap: 2.5rem;
    }

    small {
        margin-top: 40px;
    }

    .ig_post iframe {
        height: 510px;
        flex: 1;
    }
}