@charset "utf-8";

body {
    height: auto;
    position: relative;
    overflow-x: hidden;
    background-color: #fffaf2;
    background-image: radial-gradient(rgb(220, 160, 132, 0.2) 1px, transparent 5px);
    background-size: 22px 22px;
    margin: 0;
}

/* ローディングアニメーション */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fffaf2;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: opacity 1.5s ease;
}

.load-blob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: loadPoyo 0.6s ease-in-out infinite alternate;
}

.b1 {
    background-color: #FFEDAD;
    animation-delay: 0s;
}

.b2 {
    background-color: #E8A898;
    animation-delay: 0.2s;
}

.b3 {
    background-color: #C9A090;
    animation-delay: 0.4s;
}

.b4 {
    background-color: #E8D5C4;
    animation-delay: 0.6s;
}

.b5 {
    background-color: #FFEDAD;
    animation-delay: 0.8s;
}


.load-text {
    position: absolute;
    bottom: 40%;
    font-family: "Rock Salt", cursive;
    font-size: 20px;
    color: #C9A090;
    letter-spacing: 0.2em;
    animation: loadFade 1s ease-in-out infinite alternate;
}

@keyframes loadFade {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loadPoyo {
    0% {
        transform: scale(1) translateY(0);
        border-radius: 50%;
    }

    100% {
        transform: scale(1.3) translateY(-15px);
        border-radius: 40% 60% 55% 45% / 50% 60% 40% 55%;
    }
}

/* ローディングアニメーションここまで */


/* コンテンツが円の上に表示される */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 20px;
    line-height: 2rem;
}

h2 {
    font-size: 17px;
    font-family: "Rock Salt", cursive;
    color: #65574E;
}

.pc-area {
    width: 100%;
    max-width: 1440px;
    position: relative;
    margin: 0 auto
}

.logo-bg-sf {
    display: none;
}

.logo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-logo {
    position: fixed;
    width: 18%;
    height: auto;
    transform: rotate(-20deg);
    opacity: 0.4;
}


.name {
    font-family: "Rock Salt", cursive;
    color: #65574E;
    position: relative;
}

.name:hover {
    color: rgb(220, 160, 132, 1);
    transition: 0.8s;
}

.name-wrap {
    position: fixed;
    top: 15vh;
    left: 15vw;
}

.name::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 50%;
    left: -55%;
    z-index: -1;
    border-radius: 50%;
    animation: poyon 4s ease-in-out infinite;

}


.name::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 50px;
    height: 300px;
    background-color: rgb(220, 160, 132, 0.5);
    top: -300%;
    left: -10px;
    border-radius: 20px;
    animation: poyon 4s ease-in-out infinite;
}


.nav-wrap {
    position: fixed;
    top: 150px;
    right: 5vw;

}

.navigation {
    position: relative;
    top: 300px;
    right: 100px;
    line-height: 3rem;
    color: #65574E;
    z-index: 10;
}

.navigation h2:hover {
    color: rgb(220, 160, 132, 1);
    transition: 0.8s;
}

.navigation::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 50%;
    top: -10%;
    right: 1%;
    z-index: -10;
    animation: poyon 4s ease-in-out infinite;
}

.navigation::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 100px;
    background-color: rgb(220, 160, 132, 0.5);
    top: 80%;
    right: -130%;
    z-index: -10;
    border-radius: 20px;
    transform-origin: right center;
    animation: poyon 4s ease-in-out infinite;
}

p {
    font-family: "Koh Santepheap", serif;
    font-weight: 400;
    font-style: normal;
    color: #65574E;
}

.sf-area {
    width: 30%;
    background-color: #fffaf2;
    margin: 0 auto;
    height: auto;
    padding-left: 2.75%;
    padding-right: 2.75%;
    padding-top: 30px;
    position: relative;

}

.topimg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
}

/* マスキングテープ */
.maskingtape {
    position: absolute;
    top: 0.5%;
    z-index: 1;
    width: 27%;
    height: 2%;
    left: 30%;
    transform: rotate(105deg);
}

.name-sfonly {
    display: none;
}

.top-img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: left top;
    padding: 10px;
    padding-bottom: 80px;
    background-color: #FFFEF9;
    box-shadow: 4px 4px 12px rgba(101, 87, 78, 0.2);
}



/* アバウトエリア */

.about-area {
    position: relative;
    color: #65574E;
    padding-top: 40px;
}

.about {
    position: absolute;
    top: 4%;
    left: -9%;
}

.profile {
    margin-top: 110px;
    text-align: center;
    line-height: 1.5rem;
    font-size: 16px;

}

/* 名前の丸 */
.profile::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 237, 173, 0.5);
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: poyopoyo 4s ease-in-out infinite;
}


/* 名前の三角 */
.profile::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 124 104'%3E%3Cdefs%3E%3Cpattern id='dots' width='8' height='8' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='0.8' fill='%23DCA084' fill-opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Cpolygon points='60,0 120,100 0,100' fill='url(%23dots)'/%3E%3Cpolygon points='60,0 120,100 0,100' fill='none' stroke='%23DCA084' stroke-width='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 20;
    transform: rotate(10deg);
    top: 11%;
    left: 22.5%;
}


/* アバウト半丸 */
.about-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 90px;
    height: 110px;
    background-color: rgba(220, 160, 132, 0.4);
    border-radius: 0 80px 80px 0;
    top: -1%;
    left: -11.5%;
    transform-origin: left center;
    /* 左を固定して右だけ伸び縮み */
    animation: stretch 4s ease-in-out infinite;
}

/* 前のGIF画像 */
.person-gif {
    position: absolute;
    z-index: 1;
    width: 30%;
    height: auto;
    top: 20%;
    right: -8%;
}

/* GIF後ろの四角 */
.profile-img-wrap::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: rgba(220, 160, 132, 0.4);
    top: 40%;
    right: -8%;
    z-index: -10;
    animation: poyopoyo-square 3s ease-in-out infinite;
}


.about-text {
    position: relative;
    margin-bottom: 200px;
    margin-top: 140px;
    text-align: center;
    line-height: 1.5rem;
    font-size: 14px;

}

/* 行間 */

.mb-20 {
    display: block;
    margin-bottom: 20px;
}

/*  アバウト後ろの三角 */
.about-text::after {
    content: "";
    position: absolute;
    width: 88%;
    aspect-ratio: 1 / 1.5;
    z-index: -1;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 180'%3E%3Cdefs%3E%3Cpattern id='dots' width='8' height='8' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='0.8' fill='%23DCA084' fill-opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Cpolygon points='60,180 120,0 0,0' fill='url(%23dots)'/%3E%3Cpolygon points='60,180 120,0 0,0' fill='none' stroke='%23DCA084' stroke-width='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* アバウト後ろの丸 */
.about-text::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: 38%;
    right: -10%;
    transform: translateX(-50%);
    animation: poyopoyo 4s ease-in-out infinite;
}

/* アバウト後ろの四角 */
.about-deco {
    position: absolute;
    width: 300px;
    height: 500px;
}

.about-deco::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(220, 160, 132, 0.4);
    top: 58%;
    left: 10%;
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}


.about-area,
.Biography-area,
.skill-area,
.works-area {
    position: relative;
    z-index: 1;
}


/* ここからバイオグラフィー */


.Biography-area {
    display: flex;
    position: relative;
    height: 350px;
    margin-top: 200px;
    margin-bottom: 50px;
    min-height: 100px;
    flex-direction: column;
}

.Biography {
    position: absolute;
    left: -9%;
    top: -0.8%;
}

/* バイオグラフィー半丸 */
.Biography-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 110px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 0 80px 80px 0;
    top: -12%;
    left: -11.5%;
    transform-origin: left center;
    animation: stretch 4s ease-in-out infinite;
}

.Biography-taxt {
    position: absolute;
    font-size: 14px;
    width: 80%;
    text-align: start;
    line-height: 2rem;
    top: 50%;
    left: 15%;

}

/*  バイオグラフィー後ろの三角 */

.Biography-taxt::after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 124 104'%3E%3Cdefs%3E%3Cpattern id='dots' width='8' height='8' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='0.8' fill='%23DCA084' fill-opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Cpolygon points='60,0 120,100 0,100' fill='url(%23dots)'/%3E%3Cpolygon points='60,0 120,100 0,100' fill='none' stroke='%23DCA084' stroke-width='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
}


/* バイオグラフィー正方形 */
.Biography-taxt::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    background-color: rgba(255, 237, 173, 0.5);
    top: 90%;
    right: -25%;
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}


/* バイオグラフィー正方形 */

.Biography-deco::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(220, 160, 132, 0.4);
    top: 35%;
    left: 1%;
    z-index: -10;
    animation: poyopoyo-square 3s ease-in-out infinite;
}

/* バイオグラフィー丸下ピンク */

.Biography-deco::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(220, 160, 132, 0.4);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: -20%;
    right: -20%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}


.skill-area {
    display: flex;
    margin-top: 150px;
    padding: 0px 20px 0px;
    min-height: 200px;
    flex-direction: column;
}

.skill {
    position: absolute;
    left: -9%;
    top: -12%;
}

/* スキルー半丸 */
.skill-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 90px;
    height: 110px;
    background-color: rgba(220, 160, 132, 0.4);
    border-radius: 0 80px 80px 0;
    top: -20%;
    left: -11.5%;
    transform-origin: left center;
    animation: stretch 4s ease-in-out infinite;
}

/* スキル後ろ丸 */

.skill-deco::before {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: 5%;
    right: -13%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}

/* スキル四角 */

.skill-deco::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(220, 160, 132, 0.4);
    top: 50%;
    left: -4%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo-square 3s ease-in-out infinite;
}

/* スキルカード */

.Illustrator img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

.Photoshop img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

.Figma img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

.WordPress img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}


/* ここからワークス */

.works-area {
    display: flex;
    margin-top: 50px;
    padding: 30px 20px 30px;
    min-height: 200px;
    margin-bottom: 0px;
    flex-direction: column;
}

.works {
    position: absolute;
    left: -9%;
    top: -3.3%;
}

/* ワークスー半丸 */
.works-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 95px;
    height: 110px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 0 80px 80px 0;
    top: -5%;
    left: -11.5%;
    transform-origin: left center;
    animation: stretch 4s ease-in-out infinite;
}

/* ワークス四角(下）*/
.works-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 90px;
    height: 90px;
    background-color: rgba(255, 237, 173, 0.5);
    top: 29%;
    right: -10%;
    animation: poyopoyo 4s ease-in-out infinite;
}


/* ワークス丸 */
.works-deco::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 237, 173, 0.5);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: -6%;
    right: -13%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}

/* ワークス四角 */

.works-deco::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(220, 160, 132, 0.4);
    top: 13%;
    left: 10%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}


/* ラベル*/
.works-label {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 50%;
    background-color: rgba(220, 160, 132, 0.4);
    box-shadow: 0px 0px 0px 5px rgba(220, 160, 132, 0.4);
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    color: #65574E;
    text-align: center;
}




/* フライヤーカード1*/

.flier-card-1 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

/* フライヤーカード2*/

.flier-card-2 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

/* フライヤーカード3*/

.flier-card-3 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}



/* バナーカード1*/


.banner-card-1 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}


/* バナーカード2*/

.banner-card-2 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}

/* バナーカード3*/

.banner-card-3 img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}



/* バナー丸 */
.banner-deco::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(220, 160, 132, 0.4);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: 45%;
    left: 6%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}

/* バナー四角*/
.banner-deco::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 237, 173, 0.5);
    top: 58%;
    right: -6%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo-square 3s ease-in-out infinite;
}

/* サイトカード*/


.site-card img {
    background-image: radial-gradient(circle,
            rgba(220, 160, 132, 0.15) 2px,
            transparent 1px);
    background-size: 12px 12px;
}


/*サイトー丸 */
.site-deco::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(220, 160, 132, 0.4);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    top: 75%;
    left: 10%;
    transform: translateX(-50%);
    z-index: -10;
    animation: poyopoyo 4s ease-in-out infinite;
}

/* サイトー四角 */
.site-deco::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 237, 173, 0.5);
    top: 95%;
    right: -2%;
    z-index: -10;
    animation: poyopoyo-square 3s ease-in-out infinite;
}


/* ボタン */
.flier-btn {
    display: inline-block;
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 28px;
    border: 1px solid rgba(220, 160, 132, 0.4);
    border-radius: 10px;
    color: rgba(220, 160, 132, 1);
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    background-color: #fffaf2;
    font-family: "Koh Santepheap", serif;
    z-index: 1;
    box-shadow: 1px 1px 3px rgba(220, 160, 132, 0.6);
}

.flier-btn:hover {
    background-color: rgba(220, 160, 132, 0.4);
    color: #fffaf2;
    transition: 0.3s;
}

.site-btn {
    bottom: 5%;
}



/* 縦ピンクライン */
.sf-area::before {
    content: "";
    position: absolute;
    top: -50px;
    height: calc(99.6% + 70px);
    left: -10px;
    width: 10px;
    background: #DCA084;
    opacity: 0.7;
}

/* 縦ピンクライン */
.sf-area::after {
    content: "";
    position: absolute;
    top: -50px;
    height: calc(99.6% + 70px);
    right: -10px;
    width: 10px;
    background: #DCA084;
    opacity: 0.7;
}

/* 横の流れる文字 */
.side-text {
    position: fixed;
    /* 画面に固定 */
    top: 0;
    writing-mode: vertical-rl;
    font-size: 20px;
    letter-spacing: 0.2em;
    white-space: nowrap;
    animation: scrollText 45s linear infinite;
    z-index: 10;
    color: #DCA084;
    font-family: "Koh Santepheap", serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 13px;
    padding-right: 13px;
    background-color: rgb(220, 160, 132, 0.3);
}

.side-text.left {
    left: 0%;
}

.side-text.right {
    right: 0%;
    animation-direction: reverse;
    /* 右側は逆方向に流す */
}



/* 横の流れる文字ここまで */

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


/* 擬似要素ポヨポヨ */

@keyframes poyopoyo {
    0% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
        transform: translateX(-50%) scale(1);
    }

    25% {
        border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
        transform: translateX(-50%) scale(1.08);
    }

    50% {
        border-radius: 70% 30% 60% 40% / 40% 70% 30% 60%;
        transform: translateX(-50%) scale(0.93);
    }

    75% {
        border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
        transform: translateX(-50%) scale(1.06);
    }

    100% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
        transform: translateX(-50%) scale(1);
    }
}

/* 擬似要素ポヨポヨ四角 */
@keyframes poyopoyo-square {
    0% {
        border-radius: 20% 20% 20% 20%;
        transform: rotate(0deg) scale(1);
    }

    20% {
        border-radius: 30% 15% 35% 15%;
        transform: rotate(3deg) scale(1.08);
    }

    40% {
        border-radius: 15% 35% 15% 30%;
        transform: rotate(-3deg) scale(0.92);
    }

    60% {
        border-radius: 35% 15% 30% 15%;
        transform: rotate(2deg) scale(1.06);
    }

    80% {
        border-radius: 15% 30% 15% 35%;
        transform: rotate(-2deg) scale(0.94);
    }

    100% {
        border-radius: 20% 20% 20% 20%;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes poyon {

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

    30% {
        transform: scale(1.2, 0.8) translateY(-20px);
    }

    50% {
        transform: scale(0.8, 1.2) translateY(0);
    }

    70% {
        transform: scale(1.1, 0.9) translateY(-10px);
    }

    90% {
        transform: scale(0.9, 1.1) translateY(0);
    }
}

@keyframes poyon {

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

    30% {
        transform: scale(1.2, 0.8) translateY(-20px);
    }

    50% {
        transform: scale(0.8, 1.2) translateY(0);
    }

    70% {
        transform: scale(1.1, 0.9) translateY(-10px);
    }

    90% {
        transform: scale(0.9, 1.1) translateY(0);
    }
}

@keyframes poyon {

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

    30% {
        transform: scale(1.2, 0.8) translateY(-20px);
    }

    50% {
        transform: scale(0.8, 1.2) translateY(0);
    }

    70% {
        transform: scale(1.1, 0.9) translateY(-10px);
    }

    90% {
        transform: scale(0.9, 1.1) translateY(0);
    }
}

@keyframes poyon {

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

    30% {
        transform: scale(1.2, 0.8) translateY(-20px);
    }

    50% {
        transform: scale(0.8, 1.2) translateY(0);
    }

    70% {
        transform: scale(1.1, 0.9) translateY(-10px);
    }

    90% {
        transform: scale(0.9, 1.1) translateY(0);
    }
}

@keyframes scrollText {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes stretch {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.4);
    }

    /* 1.4倍まで伸びる */
}


/* =============================================
   Swiper 共通（スキル・ワークス全スライダー）
============================================= */
.swiper {
    width: 100%;
    padding-bottom: 100px !important;
    margin-top: 50px;
}

/* Swiperのpaginationをswiper内の一番下に固定 */
.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 8px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.3s ease !important;
}

.swiper-slide img {
    /* 画像をスライド内でセンタリング */
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;

}

.swiper-slide img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}

/* ドットナビゲーション */
.swiper-pagination-bullet {
    background: #C9A090 !important;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #C9A090 !important;
    opacity: 1;
}

.swiper skill-swiper {
    position: absolute;


}

.skill-swiper .swiper-slide img {
    width: 80%;
}

.works-swiper-flier .swiper-slide img {
    width: 80%;
}

.works-swiper-banner .swiper-slide img {
    width: 80%;
}

.works-swiper-site .swiper-slide img {
    width: 80%;
}




/* =============================================
   コピーライト
============================================= */
.copyright {
    text-align: center;
    padding: 20px 0 12px;
    font-size: 0.75rem;
}



/* ここからスマホ */


@media (max-width: 800px) {

    .blob-stage {
        display: none;
    }

    #loading {
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
        position: fixed;
    }


    .logo-bg-sf {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .logo-bg-sf .bg-logo {
        position: absolute;
        width: 30%;

    }



    .side-text {
        display: none;
    }

    .name-wrap {
        display: none;
    }

    .nav-wrap {
        display: none;
    }

    .sf-area {
        width: 100%;
        padding-left: 28px;
        padding-right: 28px;
        box-sizing: border-box;
        margin: 0;
    }

    .sf-area::before {
        left: 0px;
    }

    .sf-area::after {
        right: 0px;
    }

    .name-sfonly {
        display: block;
        text-align: center;

    }

    .name-sfonly p {
        position: absolute;
        top: 83%;
        right: 6.5%;
        font-size: 16px;
        font-family: "Rock Salt", cursive;
        color: #65574E;
        line-height: 1.5rem;
        z-index: 10;
        transform: rotate(20deg);

    }


    .about {
        position: absolute;
        left: -3%;
    }

    /* 名前の三角 */
    .profile::after {
        top: 11%;
        left: 21%;
    }

    .person-gif {
        position: absolute;
        z-index: 1;
        width: 25%;
        height: auto;
        top: 30%;
        right: 1%;
    }

    /* GIF後ろの四角 */
    .profile-img-wrap::before {
        right: -3%;

    }

    .Biography {
        top: -1.5%;
        left: -3%;

    }


    /* バイオグラフィー丸下ピンク */

    .Biography-deco::before {
        right: -15%;
    }

    .Biography-taxt::after {
        width: 90%;

    }

    .Biography-taxt::before {
        width: 100px;
        height: 100px;
        right: -30%;
    }

    .skill {
        left: -3%;

    }

    .skill-deco::after {
        left: 3%;
    }

    .works {
        left: -3%;
    }

    .works-deco::after {
        width: 100px;
        height: 100px;
        left: 15%;
    }


    .flier-card-1::before,
    .flier-card-2::before,
    .flier-card-3::before {
        width: 240px;
    }

    .banner-deco::before {
        left: 12%;
    }

    .banner-deco::after {
        right: 1.5%;
    }


    .banner-card-1::before,
    .banner-card-2::before,
    .banner-card-3::before {
        width: 240px;
    }

    .site-deco::before {
        width: 100px;
        height: 100px;
        top: 81%;
        left: 12%;
    }

    .site-deco::after {
        right: 2%;
    }

    .site-card::before {
        width: 240px;
    }



}