@charset "utf-8";

/* 共通設定 */

html{
    font-size: 62.5%; /*1rem=10px*/
}

:root {
    --white: #fff;
    --black: #282828;
    --blue: #1D2088;
    --red: #c30D23;
    --svg-red: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(4738%) hue-rotate(348deg) brightness(80%) contrast(91%);
    --svg-blue: brightness(0) saturate(100%) invert(13%) sepia(62%) saturate(3303%) hue-rotate(232deg) brightness(94%) contrast(105%);
    --svg-wh:brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(249deg) brightness(103%) contrast(105%);
    /* PC (padding150*2-1440=内包1140)/1440*100=79.2% */
    --contentWidth-pc: 79.2%;
    /* PC (padding150) */
    --contentPadding-pc: 10.4%;
    /* SP (padding20*2-375=内包335)/375*100=89.3% */
    --contentWidth-sp: 89.3%;
    /* SP (padding20) */
    --contentPadding-sp: 5.3%;
}

/* フォント設定 */
body {
    font-family:
        "Noto Sans JP",
        "Fugaz One",
        sans-serif;
        color: var(--black);
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2;
        overflow-x: hidden;
        position: relative;

}

img {
    width: 100%;
}

/* ローディング */
/* ==== ローディング画面 ==== */
#loading {
    position: fixed;
    inset: 0;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
  }

/* loading-inner → テキストとバー */
#loading-inner {
    position: relative;
    z-index: 4; /* ← ここを上げてOK！ */
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeOutInner 1s ease 3s forwards;
  }  
  @keyframes fadeOutInner {
    to {
      opacity: 0;
    }
  }
  
  /* テキスト */
  .loading-text {
    font-size: 3rem;
    font-family: 'Fugaz One', sans-serif;
    color: var(--white);
    margin-bottom: 30px;
    -webkit-text-stroke: 0px var(--white);
    animation:
      glitchStroke 0.6s infinite steps(1),
      fontCycle 1.2s infinite steps(1),
      glitch 1s infinite;
  }
  
  /* グリッチ */
  @keyframes glitchStroke {
    0%, 100% {
      color: var(--white);
      -webkit-text-stroke: 0px var(--white);
    }
    50% {
      color: transparent;
      -webkit-text-stroke: 1px var(--white);
    }
  }
  @keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 2px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
  }
  @keyframes fontCycle {
    0%   { font-family: 'Fugaz One', sans-serif; }
    20%  { font-family: 'Black Ops One', sans-serif; }
    40%  { font-family: 'Rubik Mono One', sans-serif; }
    60%  { font-family: 'Bangers', sans-serif; }
    80%  { font-family: 'Staatliches', sans-serif; }
    100% { font-family: 'Fugaz One', sans-serif; }
  }
  
  /* バッテリーバー */
  .loading-bar {
    width: 60vw;
    height: 10px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  
  .loading-bar::before {
    content: "";
    display: block;
    height: 100%;
    width: 0%;
    background-color: #fff;
    animation: charge 3s ease-in-out forwards;
  }
  
  @keyframes charge {
    0% { width: 0%; }
    100% { width: 100%; }
  }
  
  /* シャッター */
  .shutter {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: var(--blue);
    z-index: 3; /* テキストの下に変更！ */
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); /* ←スッと開く感じ！ */
  }

    /* ノイズ */
    .shutter::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../images/setup/noise.webp');
        opacity: 0.2;
        mix-blend-mode: overlay;
        pointer-events: none;
        z-index: 0;
    }

  .shutter-top {
    top: 0;
  }
  
  .shutter-bottom {
    bottom: 0;
  }
  
  #loading.open .shutter-top {
    transform: translateY(-100%);
  }
  
  #loading.open .shutter-bottom {
    transform: translateY(100%);
  }
  




/* navのアンダーバー調整 */
.adjust-underscore {
    vertical-align: 10px; /* スペース */
    display: inline-block;
}

/* セクション余白 */
.section {
    padding:80px var(--contentPadding-sp);
}

/* セクションタイトル */
.section__topic {
    color: var(--white);
    text-shadow: 4px 4px 0px var(--black);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--black);
    font-family: "Fugaz One";
    font-size: 12.8vw;
    line-height: normal; 
}

/*== anime */

.section__topic {
    opacity: 0;
    transform: translateY(80px);
  }
  
  .section__topic.animate {
    animation: bounceIn 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    opacity: 1;
  }
  
  
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    60% {
      opacity: 1;
      transform: translateY(-20px);
    }
    80% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
/* ボタン */
.Btn {
    display: block;
    border-radius: 30px;
    border: 2px solid var(--black);
    background: var(--white);
    box-shadow: 4px 5px 0px 0px var(--black);
}

.btn__title {
    font-family: "Fugaz One";
    font-size: min(6.4vw,3rem);
    line-height: normal;
}

/* PCMV非表示 */
.spMv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pcMv {
    display: none;
}

/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {


    /*共通*/
    body {
        font-size: 2rem;
        font-weight: 400;
    }
    .section {
        padding:120px var(--contentPadding-pc);
    }
    .section__topic {
        -webkit-text-stroke-width: 4px;
        font-size: 9.6rem;
    }

    /*ボタン*/
    .Btn {
        border-radius: 70px;
    }
    .btn__title {
        font-size: min(2.5vw,3.6rem);
        line-height: normal;
    }

    /*表示非表示関連*/
    .pcMv {
        display: block; 
    }
    .spMv {
        display: none;
    }
    .spBr {
        display: none;
    }  

}


/* ==============================
            nav
============================== */

.nav {
    position: relative;
    width: 272px;
    /* 余白 */
    padding: 100px 30px 20px;
    /* スタイル */
    border-radius: 20px;
    border: 2px solid #000;
    background-color: var(--blue);
    box-shadow: 4px 4px 0px 0px #000;
    /* フォント関係 */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    color: transparent;
    font-family: "Fugaz One";
    font-size: 3.2rem;
    line-height: 0.8;
    /* 固定 */
    position: fixed;
    top: -570px;
    left: 50%;
    transform: translateX(-50%); /* X方向の中央揃え */
    transition: 0.3s ease-in-out; 
    z-index: 100;
}

/* ========= オーバーレイノイズ */

.nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/setup/noise.webp');
    opacity: 0.2; /* 透明度 20% */
    pointer-events: none; /* クリックを邪魔しない */
    mix-blend-mode: overlay; /* オーバーレイ */
}

.nav__item {
    margin-top: 35px;
}


.nav__item img{
    width: 25px;
    margin-right: 15px;
}

.nav__item:first-of-type{
    margin-top: 0px;
}

.nav__item:nth-of-type(4) ,:nth-of-type(5){
    font-size: 2.4rem;
}

.nav__item:nth-of-type(5) {
    margin-top: 40px;
}

.nav__logo {
    margin-top: 30px;
    filter: var(--svg-red);
}

.nav__menu {
    display: block;
    margin: 30px auto 0;
}

/* ======== .navホバーでニュッ */
.nav:hover {
    transform: translate(-50%, 10px);
    transition: 0.3s ease-in-out; 
}

/* ========== JS */

.nav.active {
    top: -50px;
    transition: 0.3s ease-in-out; 
}

.nav.hidden-sp-nav {
    top: -700px !important;
}


/* ========= リンクホバーアニメーション */
.nav__item a {
    position: relative;
    display: inline-block;
}

.nav__item a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px; /* 下線の太さ */
    background-color: var(--red); /* 下線の色 */
    transition: width 0.3s ease; /* アニメーション */
}

.nav__item a:hover::before {
    width: 100%; /* ホバー時に下線が全幅に広がる */
}



/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .nav {
        position: relative;
        width: 352px;
        /* 余白 */
        padding: 100px 40px 30px;
        /* スタイル */
        box-shadow: 8px 8px 0px 0px #000;
        /* フォント関係 */
        font-size: 4rem;
        line-height: 0.8;
        /* 固定 */
        position: fixed;
        top: -675px;
        left: 82.5%;
        transform: translateX(-50%); /* X方向の中央揃え */
        z-index: 999;
    }
    .nav__item {
        margin-top: 50px;
    }
    .nav__item img{
        width: 35px;
    }
    .nav__item:nth-of-type(4) ,:nth-of-type(5){
        font-size: 3.2rem;
    }
}

/* ==============================
            mv
============================== */


.article__header {
    position: relative;
    width: 100%;
    height: 100vh; /* 画面いっぱいの高さ */
    text-align: center;
    overflow: hidden; /* 画面外にはみ出るのを防ぐ */
}

.mainvisual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden; /* これはOK！ */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========= 乗算 */
.mainvisual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    mix-blend-mode: multiply; /* 乗算合成 */
    opacity: 0.5; /* 透明度50% */
    pointer-events: none; /* クリックなどの操作を邪魔しないように */
    }

.pcMv,
.spMv {
    position: absolute;
    top: 56%;
    left: 50%;
    width: 120%;  /* 拡大サイズ */
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%); /* 中心基準に移動 */
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: -1;
}  

.mainlogos {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* 中央揃え */
    width: fit-content; /* 必要な幅だけ確保 */
    text-align: center;
    z-index: 1; /* `.mainvisual` の上にくるように */
    display: flex; /* 横並びの影響をなくす */
    flex-direction: column; /* 縦方向に配置 */
    align-items: center; /* 中央揃え */
    gap:15px;
    margin-bottom: 15px;
}

.logo {
    width:150px;
    filter: var(--svg-wh);
}

.arrow {
    width: 30px;
    animation: bounceArrow 1s ease-in-out infinite alternate;
}

/* ========= arrowアニメーション */
@keyframes bounceArrow {
    0% { transform: translateY(-10px); }  /* 初期位置 */
    100% { transform: translateY(10px); } /* 下に10px移動 */
}

/* ========= mvアニメーション */

/* mainvisual ズームダウン */
.mainvisual.animate {
    animation: zoomDown 1s ease-out forwards;
  }
  
  @keyframes zoomDown {
    0% {
      transform: scale(1.2);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* mainlogos ふわっと出現 */
  .mainlogos {
    opacity: 0;
    transform: translateX(-50%) translateY(30px); /* ← X位置キープしてYだけ動かす！ */
    transition: opacity 1s ease, transform 1s ease;
    left: 50%; /* 中央位置キープ */
  }
  
  .mainlogos.animate {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* ← Y方向だけ戻す */
  }
  
  
  


/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .pcMv {
        display: block;
    }
    .mainlogos {
        bottom: 30px; 
        left: 50px; 
        transform: none; /* 中央揃え解除 */
        transform: translateY(30px);
        transition: opacity 1s ease, transform 1s ease;
        flex-direction: row; /* 横並びに変更 */
        align-items: center; /* 縦の中央揃え */
        gap: 30px;
        margin-bottom: 0;
    }
    .mainlogos.animate {
        opacity: 1;
        transform: none; /* ← Y方向だけ戻す */
    } 
    .logo {
        width:200px;
    }
    .arrow {
        width: 50px;
    }
}

/* ==============================
            line
============================== */

.wrapper {
    width: 100vw;
    overflow: hidden; /* はみ出た部分を隠す */
    position: relative;
    z-index: 10;
}

.line {
    display: flex;
    width: max-content; /* 子要素の合計サイズ分の幅を持つ */
    animation: loop 30s linear infinite; /* 10秒でループ */
}

.line img {
    width: 334px; /* 画像の横幅 */
    height: 50px;
    flex-shrink: 0; /* 画像のサイズを固定 */
}

@keyframes loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .line img {
        width: 668px; /* 画像の横幅 */
        height: 100px;
        flex-shrink: 0; /* 画像のサイズを固定 */
    }

}


/* ==============================
            works
============================== */

.section--Works {
    background-image: url('../images/setup/top-works-bg-2.webp');
    background-size: contain;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ========= 装飾 */

/* 稲妻 */
.section--Works::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: clamp(31px, 8.5vw, 190px);
    height: clamp(113px, 30vw, 223px);
    transform: rotate(-36.753deg);
    background-image: url('../images/mono-stk/tatoo_18.webp');
    background-size: contain; /* 画像のサイズを自動調整 */
    background-repeat: no-repeat;
}

/* タイガー */
.section--Works::after {
    content: '';
    position: absolute;
    top: -1%;
    right: -23px;
    width: 30.9vw;
    max-width: 200px;
    height: 48.5vw;
    transform: rotate(-31.519deg);
    background-image: url('../images/mono-stk/tatoo_24.webp');
    background-size: contain; /* 画像のサイズを自動調整 */
    background-repeat: no-repeat;
}

.section--Works .section__topic {
    position: relative;
}

/* 王冠タトゥー配置 */
.section--Works .section__topic::before {
    content: '';
    position: absolute;
    top: clamp(-52px, -50%, -34px);
    left: 18%;
    width: clamp(39px, 10.6vw, 80px); /* 最小50px、通常は10.6vw、最大90px */
    height: clamp(49px, 13.3vw, 85px); /* 最小65px、通常は13.3vw、最大103px */
    transform: rotate(-33.364deg);
    background-image: url('../images/mono-stk/tatoo_20.webp');
    background-size: contain; /* 画像のサイズを自動調整 */
    background-repeat: no-repeat;
}

/* ========= */

.works {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.works__item {
    width: 40vw;
    max-width: 250px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px 0px var(--black);
    overflow: hidden; /* はみ出た部分を隠す */
    position: relative;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    z-index: 10;
}

.works__item img {
    max-width: 100%; /* `.works__item` の幅いっぱいに */
    height: 100%; /* `.works__item` の高さいっぱいに */
    object-fit: cover; /* 画像の比率を維持しつつ、はみ出す部分をカット */
    transition: transform 0.3s ease-in-out; /* ズームアニメーション */
    will-change: transform;
}

/* ========= ホバー時のアニメーション */
.works__item:hover {
    border: 4px solid var(--red);
}
.works__item:hover img {
    transform: scale(1.2); /* 1.2倍に拡大 */
}


/* ========= works btn*/

.Btn--Works {
    margin: 50px auto 0;
    padding: 5px 0;
    max-width: 68vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
}

.btn__arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

/* =========　▶色 */
.btn__arrow img {
    display: inline-block; /* transformを効かせるために追加 */
    filter: var(--svg-blue);
    animation: wave 1s ease-in-out infinite alternate; /* 常に波打つ */
}

/* 2個目のimgだけ色を変える */
.btn__arrow img:nth-child(2) {
    filter: var(--svg-red);
}


/* =========　<anime(1)> btn__arrow 全体が右に動く */
.Btn--Works:hover .btn__arrow {
    animation: moveArrow 0.4s ease-in-out infinite alternate;
}

/* 0px → 8px の間で動く */
@keyframes moveArrow {
    0% { transform: translateX(0px); }
    100% { transform: translateX(8px); }
}

/* =========　<anime(2)>背景色変更 */
.Btn--Works:hover::before {
    left: 0;
}

/* テキストと矢印の上に重なるように */
.Btn--Works p,
.Btn--Works .btn__arrow {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

/* ボタンのホバー時の背景アニメーション */
.Btn--Works::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #c30D23; /* ホバー時の背景色 */
    transition: left 0.4s ease-in-out;
    z-index: 0;
}

/* =========　<anime(3)>2つめの矢印の色を変更 */
.Btn--Works:hover .btn__arrow img:nth-child(2) {
    filter: brightness(0) saturate(100%) invert(92%) sepia(3%) saturate(1298%) hue-rotate(298deg) brightness(111%) contrast(78%);
}

/* =========　<anime(4)>ホバー時に .btn__title の文字色を変更 */
.Btn--Works:hover .btn__title {
    color: #E3E2E3;
}


/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .section--Works {
        text-align: left;
    }
    
    /* ========= 装飾 */

    /* 稲妻 */
    .section--Works::before {
        content: '';
        position: absolute;
        top: 47px;
        left: 73.1%;
        width: clamp(31px, 4.9vw, 250px);
        height: clamp(113px, 17.6vw, 300px);
        transform: rotate(-62.968deg);
        background-image: url('../images/mono-stk/tatoo_18.webp');
        background-size: contain; /* 画像のサイズを自動調整 */
        background-repeat: no-repeat;
    }

    /* タイガー */
    .section--Works::after {
        content: '';
        position: absolute;
        top: -1%;
        right: 22px;
        width: 17.7vw;
        max-width: 320px;
        height: 27.7vw;
        transform: rotate(-31.519deg);
        background-image: url('../images/mono-stk/tatoo_24.webp');
        background-size: contain; /* 画像のサイズを自動調整 */
        background-repeat: no-repeat;
    }

    /* 王冠タトゥー配置 */
    .section--Works .section__topic::before {
        content: '';
        position: absolute;
        top: max(-64%, -82px);
        left: max(-9%, -67px);
        width: 91px;
        height: 140px;
        transform: rotate(-33.364deg);
        background-image: url('../images/mono-stk/tatoo_20.webp');
        background-size: contain; /* 画像のサイズを自動調整 */
        background-repeat: no-repeat;
    }


    .works {
        margin-top: 50px;
        gap: 2.08vw;
    }
    
    .works__item {
        width: 24.3vw;
        max-width: none;
    }

    /* ========= works btn*/

    .Btn--Works {
        margin: 50px 0 0 auto;
        padding: 5px 0;
        max-width: 25vw;
        min-width: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease-in-out;
    }
    .btn__arrow {
        margin-left: 30px;
    }
    .btn__arrow img {
        width: 15px;
    }

    /* 下部チェーン */
    .works::after {
        content: '';
        position: absolute;
        bottom: -3%;
        left: -5%;
        width: 41vw;
        max-width: 500px;
        height: 13.3vw;
        transform: rotate(33.572deg);
        background-image: url('../images/mono-stk/tatoo_27.webp');
        background-size: contain; /* 画像のサイズを自動調整 */
        background-repeat: no-repeat;
    }
    
}





/* ==============================
            profile
============================== */

.section--Profile {
    background-image: url('../images/setup/top-prof-bg.webp');
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: contain;
    padding: 80px 9.3%; /*左右35px*/
}

/* pc用section__topic非表示 */
.section__detail .section__topic {
    display: none;
}

.section__img {
    margin: 50px auto 0;
    width: 53.3vw;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px 0px var(--black);
    position: relative;
}

.prfimg {
    width:100%;
    border-radius: 20px;
}

.section__title {
    margin-top: 20px;
    font-size: 2.4rem;
    font-weight: 700;
}

.section__txt {
    margin-top: 10px;
    text-align: left;
}

.section__sns {
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.section__sns img {
    margin-right:10px;
    width: 20px;
    filter:  var(--svg-blue)
}

.section__sns a:nth-of-type(2) img {
    filter: var(--svg-red);
}

.section__sns a {
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* ========= sns下線アニメーション */
.section__sns a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* 初期状態では下線が見えない */
    height: 2px; /* 下線の太さ */
    background-color: var(--black); /* 下線の色 */
    transition: width 0.3s ease; /* 幅の変化にアニメーションを追加 */
}

/* ホバー時に左から右へ下線が引かれる */
.section__sns a:hover::after {
    width: 100%; /* ホバー時に下線が全体に広がる */
}


/* ========= contact btn */

.Btn--Contact {
    margin: 50px auto;
    padding: 15px 0;
    border-radius: 500px;
    position: relative;
    overflow: hidden;
}

.Btn--Contact .btn__title {
    font-family: "Fugaz One";
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 100%;
}

.Btn--Contact .btn__txt {
    font-weight: 500;
    line-height: 150%;
}

.Btn--Contact .btn__title,
.Btn--Contact .btn__txt {
    margin: 0;
    position: relative;
    z-index: 1; /* テキストが円の下に隠れないように */
}

/* ========= ホバーアニメ */
.Btn--Contact::before {
    content: '';
    position: absolute;
    top:0;
    left:50%;
    transform: translate(-50%, -50%); /* 自身の幅と高さを基準にして完全に中央揃え */
    width:0;
    height:0;
    border-radius: 50%;
    background-color: #1D2088;
}

.Btn--Contact:hover {
    color: var(--white);
    transition: 0.5s ease-in-out;
}

.Btn--Contact:hover::before {
    width:110vw;
    height:110vw;
    transition: 0.5s ease-in-out;
}

/* ========= 装飾 */

/* HNY */
.hny {
    content: '';
    position: absolute;
    top: -40%;
    right: max(-31vw, -186px);
    width: min(40.9vw, 180px);
    transform: rotate(-26.854deg);
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

/* nametag */
.nametag {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -19vw;
    width: min(32vw, 175px);
    transform: rotate(20.767deg);
    background-size: contain;
    background-repeat: no-repeat;
}

/*anime*/

.nametag img.spin {
    animation: spinIn 0.6s ease;
  }
  
  @keyframes spinIn {
    0% {
      transform: rotateY(0deg);
      opacity: 1;
    }
    50% {
      transform: rotateY(90deg);
      opacity: 0;
    }
    51% {
      transform: rotateY(270deg);
      opacity: 0;
    }
    100% {
      transform: rotateY(360deg);
      opacity: 1;
    }
  }

/* leftsticker */


.cross {
    position: absolute;
    bottom: calc(394px + (601 - 394) * (100vw - 375px) / (768 - 375));
    left: calc( -4px + ((81 - (-4)) * (100vw - 375px) / (768 - 375)) );
    width: min(9.9vw,74px);
    transform: rotate(20.533deg);
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

.choker {
    position: absolute;
    bottom: calc(344px + (553 - 344) * (100vw - 375px) / (768 - 375));
    left: calc( 0px + ((96 - 0) * (100vw - 375px) / (768 - 375)) );
    width: min(19.7vw,108px);
    transform: rotate(-17.111deg);
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

.star {
    position: absolute;
    bottom: calc(357px + (568 - 357) * (100vw - 375px) / (768 - 375));
    left: calc( -6px + ((90 - (-6)) * (100vw - 375px) / (768 - 375)) );
    width: min(14.7vw,74px);
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

.hand {
    position: absolute;
    bottom: calc(381px + (600 - 381) * (100vw - 375px) / (768 - 375));
    left: calc( 22px + ((135 - 22) * (100vw - 375px) / (768 - 375)) );
    width: min(23.2vw,120px);
    transform: rotate(30.363deg);
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

/*right sticker */

.kerberos {
    position: absolute;
    bottom: calc(317px + (541 - 317) * (100vw - 375px) / (768 - 375));
    right: calc( -16px + ((69 - (-16)) * (100vw - 375px) / (768 - 375)) );
    width: min(40vw,155px);
    transform: rotate(-13.465deg);
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

/* leftsticker2 */

.thunder {
    position: absolute;
    width: min(10.4vw,155px);
    transform: rotate(-36.955deg);
    bottom: calc(161px + (285 - 161) * (100vw - 375px) / (768 - 375));
    left: 3px;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

.soccer {
    position: absolute;
    width: min(10.9vw,117px);
    transform: rotate(21.369deg);
    bottom: 109px;
    right: 3px;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .section--Profile {
        padding: 120px var(--contentPadding-pc);
    }

    .section__detail .section__topic {
        display: block;
    }
    .pcnone .section__topic {
        display: none;
    }
    
    .profile__flex {
        display: flex;
        align-items: center;
    }

    .section__detail {
        margin-left: 2.7vw;
        padding-left: 2.7vw;
        text-align: left;
        border-left: 2px solid var(--black);
    }
    .section__img {
        margin: 0 auto;
        width: 71vw;
        min-width: 220px;
        max-width: 350px;
    }


    .section__title {
        font-size: 4rem;
    }
    
    .section__txt {
        margin-top: 20px;
    }
    
    .section__sns {
        margin-top: 20px;
        font-size: 2.4rem;
        justify-content: left;
        flex-wrap: wrap;
        row-gap: 0px; /* 縦になったときの間隔 */
    }
    
    .section__sns img {
        margin-right:10px;
        width: 35px;
        filter:  var(--svg-blue)
    }

    /* ========= contact btn */

    .Btn--Contact {
        padding: 20px 0;
    }

    .Btn--Contact .btn__title {
        font-size: 6.4rem;
    }

    .Btn.Btn--Contact {
        border: 3px solid var(--black);
        box-shadow: 6px 6px 0px 0px var(--black);
    }

    /* ========= 装飾 */

    /* HNY */
    .hny {
        content: '';
        position: absolute;
        top: max(-19vh, -175px);
        right: max(-69.9vw, -1920px);
        width: min(19vw, 280px);
        transform: rotate(-26.854deg);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    /* nametag */
    .nametag {
        content: '';
        position: absolute;
        bottom: -14%;
        left: -4.4vw;
        width: min(15vw, 200px);
        transform: rotate(20.767deg);
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* leftsticker */


    .cross {
        position: absolute;
        bottom: calc(665px + (1650 - 665) * (100vw - 769px) / (2560 - 769));
        left: calc(612px + ((2071 - 612) * (100vw - 769px) / (2560 - 769)));
        width: min(6.8vw,98px);
        transform: rotate(20.533deg);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    .choker {
        position: absolute;
        bottom: calc(610px + (1635 - 610) * (100vw - 769px) / (2560 - 769));
        left: calc(88px + ((473 - 88) * (100vw - 769px) / (2560 - 769)));
        width: min(13.4vw, 165px);
        transform: rotate(-17.111deg);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    .star {
        position: absolute;
        bottom: calc(660px + (1667 - 660) * (100vw - 769px) / (2560 - 769));
        left: calc(64px + ((473 - 71) * (100vw - 769px) / (2560 - 769)));
        width: min(10.4vw, 121px);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
        z-index: 1;
    }


    .hand {
        position: absolute;
        bottom: calc(669px + (1644 - 669) * (100vw - 769px) / (2560 - 769));
        left: calc(127px + ((573 - 127) * (100vw - 769px) / (2560 - 769)) );
        width: min(13.3vw,192px);
        transform: rotate(30.363deg);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    /*right sticker */

    .kerberos {
        position: absolute;
        bottom: calc(579px + (1545 - 579) * (100vw - 769px) / (2560 - 769));
        right: calc(114px + ((424 - 114) * (100vw - 769px) / (2560 - 769)));
        width: min(18.9vw,273px);
        transform: rotate(0);
        filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    /* leftsticker2 */

    .thunder {
        position: absolute;
        width: min(5.9vw, 130px);
        transform: rotate(-36.955deg);
        bottom: calc(340px + (945 - 340) * (100vw - 769px) / (2560 - 769));
        left: 10.4vw;
        filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

    .soccer {
        position: absolute;
        width: min(7.4vw, 150px);
        transform: rotate(21.369deg);
        bottom: calc(180px + (295 - 180) * (100vw - 769px) / (2560 - 769));
        right: 5.5vw;
        filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    }

}


/* ==============================
            footer
============================== */

.footer {
    position: relative;
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.footer__logo {
    padding-top: 30px;
}

.footer__menu {
    margin: 20px 50px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px; /* 横の間隔 */
}

.menu__txt {
    color: var(--white);
    font-family: "Fugaz One";
    font-size: 2rem;
}

.copy {
    color: var(--white);
    font-size: 1rem;
}


/* ===== リンクホバーアニメ */
.menu__txt a {
    position: relative;
    display: inline-block;
    color: transparent;
    background-image: linear-gradient(to right, var(--red) 50%, var(--white) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.4s ease;
    text-decoration: none;
}

.menu__txt a:hover {
    background-position: left bottom;
}


/* ========= 装飾 */

/* mogu */
.mogu {
    position: absolute;
    width: min(40.5vw,192px);
    bottom: calc(216px + (161 - 216) * (100vw - 375px) / (768 - 375));
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
    transition: transform 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー */

.popup {
    position: absolute;
    bottom: calc(100px + (153 - 100) * (100vw - 375px) / (768 - 375));
    right: -30px;
    width: 100px;
    opacity: 0;
    transform: scale(0.5); /* 小さくしておく */
    pointer-events: none; /* 表示される前はマウスイベントを無効に */
    transition: 
      opacity 0.3s ease,
      transform 0.4s cubic-bezier(0.25, 1.5, 0.5, 1); /* ぼよよん */
    z-index: 10;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25));
  }
  
  .mogu:hover .popup {
    opacity: 1;
    transform: scale(1); /* 元の大きさに */
  }

  
/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {

    .footer__logo {
        padding-top: 60px;
    }
    .footer__menu {
        margin: 0px 0 30px;
    }
    .menu__txt {
        font-size: 3.2rem;
    }

    /* ========= 装飾 */

    /* mogu */
    .mogu {
        position: absolute;
        width: min(26.4vw,400px);
        bottom: calc(264px + (180 - 264) * (100vw - 769px) / (2560 - 769));
        left: 15%;
        transform: translateX(-50%);
        z-index: 20;
        filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
        transition: transform 0.3s ease; /* ホバー時のアニメーション */
    }
    .popup {
        position: absolute;
        bottom: 9.7vh;
        right: -3.6vw;
        z-index: 10;
        transition: right 0.3s ease;
        width: min(13.8vw, 300px);
        filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
        opacity: 0; /* 最初は透明にして非表示 */
    }
    .mogu:hover .popup {
        transform: scale(1.1);
        opacity: 1;
        z-index: 10;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}


/* ==========JS-ステッカー追加移動 */

.moveimg {
    position: absolute;
    cursor: grab;
    user-select: none;
    touch-action: none; /*スマホのスクロール・ズーム防止*/
}

.hidden {
    display: none;
}

.summoned {
    position: absolute;
    width: clamp(100px,15vw,150px);
    z-index: 19;
    cursor: grab;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25)); /* シャドウの適用 */
}

.summoned.minisize {
    width: clamp(70px,10vw,100px);
}

/* ////////////////////////////
    pc 769px～
//////////////////////////// */

@media screen and (min-width:769px) {
    .summoned {
        width: clamp(100px,15vw,200px);
    }
    .summoned.minisize {
        width: clamp(100px,10vw,120px);
    }
}

@keyframes arcIn {
    0% {
      transform: translate(var(--tx, -50px), var(--ty, -80px)) rotate(var(--rdeg, -20deg)) scale(0.6);
      opacity: 0;
    }
    60% {
      transform: translate(10px, 20px) rotate(var(--middeg, 10deg)) scale(1.05);
      opacity: 1;
    }
    100% {
      transform: translate(0, 0) rotate(0deg) scale(1);
      opacity: 1;
    }
  }
  
  .arc-move {
    animation: arcIn 0.8s cubic-bezier(0.25, 1.5, 0.5, 1) forwards;
  }

  /*リセット*/
  .reset-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: -200px;
    z-index: 999;
    transition: right 0.5s ease-out, background-color 0.3s ease;
    padding: 2vw;
    background-color: var(--red);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 4px 4px 0 var(--black);
    color: var(--white);
    font-family: "Fugaz One";
    font-size: min(5vw, 3rem);
  }
  
  /* リセット出現アニメーション */
  .reset-btn.show {
    right: 10px;/* 右下にニュッと出てくる */
    animation: shake-horizontal 1s ease-in-out infinite;
  }

  /* リセットホバー*/
  .reset-btn:hover {
    background-color: var(--blue);
  }
  
  /* リセット揺れるアニメーション（左右ブルブル） */
  @keyframes shake-horizontal {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
  }
  

/* ==========JS-ステッカーゆらゆら */

@keyframes yuraYura {
    0%   { transform: rotate(1.98deg); }
    25%  { transform: rotate(0.18deg); }
    50%  { transform: rotate(0.24deg); }
    75%  { transform: rotate(3.71deg); }
    100% { transform: rotate(1.98deg); }
  }
  
  .yura {
    animation: yuraYura 3s ease-in-out infinite alternate;
    transform-origin: center center; /* 中心を基準に回転 */
  }

  
