/* ========================================
   Variables
======================================== */

:root{

    /* Color */

    --background-color:#faf8f5;
    --surface-color:#f7f4ef;

    --mint-color:#c9e4e2;
    --mint-light:#e7f4f3;
    --beige-color:#dbc9b8;

    --text-color:#333333;
    --sub-text-color:#7d7d7d;
    --border-color:#ece7df;

    /* Layout */

    --container:1200px;
    --section-space:140px;
    --content-space:80px;

    --header-height:80px;
    --header-space:30px;

    /* Radius */

    --radius-small:8px;
    --radius-medium:16px;
    --radius-large:28px;

    /* Shadow */

    --shadow-small:0 8px 24px rgba(0,0,0,.04);
    --shadow-medium:0 18px 50px rgba(0,0,0,.06);

    /* Transition */

    --transition:.4s ease;

}

/* ========================================
   Common
======================================== */

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    background:var(--background-color);
    color:var(--text-color);
    font-family:"Zen Kaku Gothic New",sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.8;
    letter-spacing:.05em;
}

img{
    display:block;
    width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

button{
    border:none;
    background:transparent;
    color:inherit;
    font:inherit;
    cursor:pointer;
}

ul{
    list-style:none;
}

/* ========================================
   Layout
======================================== */

.container{
    width:min(1080px,90%);
    margin-inline:auto;
    margin-top: 150px;
}

section{
    position:relative;
}

/* ========================================
   Section
======================================== */

.section-heading{
    margin-bottom:64px;
}

.section-title{
    display:inline-block;
    margin-bottom:16px;
    color:var(--mint-color);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.section-copy{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.5rem,7vw,4.5rem);
    font-weight:600;
    line-height:1.15;
}

/* ========================================
   Button
======================================== */

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:600;
    transition:var(--transition);
}

.button::after{
    content:"→";
    transition:transform .3s ease;
}

.button:hover::after{
    transform:translateX(6px);
}

/* ========================================
   Background
======================================== */

.background-decoration{
    position:fixed;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
}

/* ========================================
   Blob Common
======================================== */

.background-blob{
    position:absolute;
    will-change:transform;
    animation:blobFloat 24s ease-in-out infinite;
}

.background-light{
    position:absolute;
    will-change:transform;
    animation:lightFloat 18s ease-in-out infinite;
}
/* ========================================
   Mint Blue
======================================== */

.background-blob-blue01{
    width:560px;
    height:560px;
    top:-180px;
    left:-220px;
    background:radial-gradient(
        circle,
        rgba(207,229,238,.85) 0%,
        rgba(207,229,238,.45) 60%,
        transparent 100%
    );
    filter:blur(90px);
}

.background-blob-blue02{
    width:380px;
    height:380px;
    top:120px;
    right:-120px;
    background:radial-gradient(
        circle,
        rgba(207,229,238,.55) 0%,
        transparent 100%
    );
    filter:blur(80px);
}

.background-blob-blue03{
    width:260px;
    height:260px;
    bottom:120px;
    left:8%;
    background:radial-gradient(
        circle,
        rgba(207,229,238,.45) 0%,
        transparent 100%
    );
    filter:blur(70px);
}

.background-blob-blue04{
    width:220px;
    height:220px;
    top:40%;
    left:52%;
    background:radial-gradient(
        circle,
        rgba(207,229,238,.35) 0%,
        transparent 100%
    );
    filter:blur(65px);
}

/* ========================================
   Ivory
======================================== */

.background-blob-ivory01{
    width:420px;
    height:420px;
    top:18%;
    right:18%;
    background:radial-gradient(
        circle,
        rgba(255,250,242,.95) 0%,
        rgba(255,250,242,.45) 60%,
        transparent 100%
    );
    filter:blur(90px);
}

.background-blob-ivory02{
    width:320px;
    height:320px;
    bottom:8%;
    right:10%;
    background:radial-gradient(
        circle,
        rgba(255,250,242,.7) 0%,
        transparent 100%
    );
    filter:blur(75px);
}

/* ========================================
   Beige
======================================== */

.background-blob-beige01{
    width:480px;
    height:480px;
    bottom:-140px;
    right:32%;
    background:radial-gradient(
        circle,
        rgba(234,223,211,.85) 0%,
        rgba(234,223,211,.45) 60%,
        transparent 100%
    );
    filter:blur(90px);
}

/* ========================================
   Light
======================================== */

.background-light-top{
    width:700px;
    height:700px;
    top:-260px;
    right:-120px;
    background:radial-gradient(
        circle,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.55) 40%,
        transparent 75%
    );
    filter:blur(120px);
}

.background-light-bottom{
    width:620px;
    height:620px;
    bottom:-180px;
    left:-120px;
    background:radial-gradient(
        circle,
        rgba(255,255,255,.85) 0%,
        rgba(255,255,255,.35) 45%,
        transparent 80%
    );
    filter:blur(110px);
}


/* ========================================
   Blob Float
======================================== */

@keyframes blobFloat{

    0%{
        transform:translate3d(0,0,0) scale(1);
        border-radius:58% 42% 60% 40% / 48% 52% 55% 45%;
    }

    25%{
        transform:translate3d(20px,-16px,0) scale(1.04);
        border-radius:46% 54% 42% 58% / 60% 40% 48% 52%;
    }

    50%{
        transform:translate3d(-16px,18px,0) scale(.98);
        border-radius:55% 45% 52% 48% / 42% 58% 60% 40%;
    }

    75%{
        transform:translate3d(14px,10px,0) scale(1.02);
        border-radius:40% 60% 55% 45% / 50% 50% 42% 58%;
    }

    100%{
        transform:translate3d(0,0,0) scale(1);
        border-radius:58% 42% 60% 40% / 48% 52% 55% 45%;
    }

}

/* ========================================
   Light Float
======================================== */

@keyframes lightFloat{

    0%{
        transform:translate3d(0,0,0) scale(1);
        opacity:.8;
    }

    50%{
        transform:translate3d(-20px,18px,0) scale(1.08);
        opacity:1;
    }

    100%{
        transform:translate3d(0,0,0) scale(1);
        opacity:.8;
    }

}
.background-blob-blue01{
    animation-duration:26s;
}

.background-blob-blue02{
    animation-duration:32s;
}

.background-blob-blue03{
    animation-duration:22s;
}

.background-blob-blue04{
    animation-duration:28s;
}

.background-blob-ivory01{
    animation-duration:34s;
}

.background-blob-ivory02{
    animation-duration:24s;
}

.background-blob-beige01{
    animation-duration:38s;
}

.background-light-top{
    animation-duration:18s;
}

.background-light-bottom{
    animation-duration:24s;
}
/* ========================================
   Header
======================================== */

.site-header{
    position: fixed;
    top: var(--header-space);
    right: var(--header-space);
    z-index: 1000;
}

.site-header.is-show{
    opacity: 1;
    visibility: visible;
}


/* ========================================
   Header Layout
======================================== */

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:var(--header-height);
}

/* ========================================
   Logo
======================================== */

.site-logo{
    font-family:"Cormorant Garamond",serif;
    font-size:1.5rem;
    font-weight:600;
    letter-spacing:.08em;
    line-height:1;
}

.site-logo a{
    display:inline-block;
    transition:opacity .3s ease;
}

.site-logo a:hover{
    opacity:.65;
}

/* ========================================
   Navigation
======================================== */
.top-menu{

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.top-menu.is-hide{
    opacity:0;
    transform:translateY(-20px);
    pointer-events:none;

}
.nav-item a{
    position:relative;
    display:inline-block;
    padding:4px 0;
    color:var(--text-color);
    text-decoration:none;
    transition:color .3s ease;
}

.nav-item a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-4px;
    width:0;
    height:1px;
    background:currentColor;
    transform:translateX(-50%);
    transition:width .35s ease;
}

.nav-item a:hover{
    color:var(--mint-color);
}

.nav-item a:hover::after{
    width:100%;
}
/* ========================================
   Menu Overlay
======================================== */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:998;
}

.menu-overlay.is-open{
    opacity:1;
    visibility:visible;
}
/* ========================================
   Mobile Menu
======================================== */

.global-nav{
    position:fixed;
    top:0;
    right:0;
    width:320px;
    height:100vh;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transform:translateX(100%);
    transition:transform .55s cubic-bezier(.22,.61,.36,1);
    z-index:999;
    box-shadow:-10px 0 40px rgba(0,0,0,.08);

}

.global-nav.is-open{
    transform:translateX(0);
}

.nav-list{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:48px;

}
/* ========================================
   Navigation Animation
======================================== */

.nav-item{
    opacity:0;
    transform:translateY(20px);
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.global-nav.is-open .nav-item{
    opacity:1;
    transform:translateY(0);
}
.global-nav.is-open .nav-item:nth-child(1){
    transition-delay:.10s;
}

.global-nav.is-open .nav-item:nth-child(2){
    transition-delay:.18s;
}

.global-nav.is-open .nav-item:nth-child(3){
    transition-delay:.26s;
}

.global-nav.is-open .nav-item:nth-child(4){
    transition-delay:.34s;
}

.nav-item a{
    position:relative;
    display:inline-block;
    color:#8FBFCC;
    font-size:1rem;
    letter-spacing:.3em;
    transition:color .3s ease;
}
.nav-item a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    width:48px;
    height:1px;
    background:var(--text-color);
    transform:translateX(-50%) scaleX(0);
    transform-origin:center;
    transition:transform .35s ease;
}
.nav-item a:hover::after,
.nav-item a:focus-visible::after{
    transform:translateX(-50%) scaleX(1);
}
/* ========================================
   Mobile Menu Button
======================================== */
.menu-button{
    position:relative;
    width:42px;
    height:42px;
    background:transparent;
    border:none;
    cursor:pointer;
}

.menu-line{
    position:absolute;
    left:50%;
    top:50%;
    width:30px;
    height:1px;
    background:#333;
    transform-origin:center;
    transition:.35s;
}

.menu-line:nth-child(1){
    transform:translate(-50%,-5px);
}

.menu-line:nth-child(2){
    transform:translate(-50%,8px);
}

.menu-button.is-open .menu-line:nth-child(1){
    transform:translate(-50%,0) rotate(45deg);
}

.menu-button.is-open .menu-line:nth-child(2){
    transform:translate(-50%,0) rotate(-45deg);
}

/* ========================================
   Tablet
======================================== */

@media(min-width:768px){
    
    .menu-button{
        display:flex;
    }

}
/* ========================================
   Body Scroll Lock
======================================== */

body.menu-open{
    overflow:hidden;
}

/* ========================================
   Main Visual
======================================== */

.main-visual{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    padding-top:80px;
    padding-bottom:0;
    font-family: "Nothing You Could Do",cursive;
}

.main-visual .container{
    position:relative;
}

.main-visual-content{
    display:grid;
    grid-template-columns:1fr 440px 1fr;
    gap:0;
    align-items:stretch;
    min-height:calc(100vh - 80px);
}

/* ========================================
   Main Visual Left
======================================== */

.main-visual-subtitle{
    margin-bottom:20px;
    color:var(--mint-color);
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.main-visual-title{
    margin-bottom:28px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(3rem,7vw,5.6rem);
    font-weight:500;
    line-height:1.02;
    letter-spacing:.01em;
    
}

.main-visual-text{
    max-width:440px;
    margin-bottom:44px;
    color:var(--sub-text-color);
    font-size:1rem;
    line-height:2.1;
}

/* ========================================
   Main Visual Center
======================================== */

.main-visual-center{
    display:flex;
    justify-content:center;
    align-items:stretch;
    height:100%;
}

.main-visual-image{
    width:440px;
    height:100%;
    margin-top:-20px;
}

.main-visual-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.main-visual-image:hover img{
    transform:translateY(-8px);
    box-shadow:0 40px 90px rgba(0,0,0,.12);
}

.main-visual-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    padding-right:80px;
}

.main-visual-right{
    justify-content:center;
    align-items:flex-start;
    padding-left:80px;
}
.main-visual-title img{
    width:100%;
    max-width:520px;
    height:auto;
    display:block;
}
/* ========================================
   Main Visual Right
======================================== */

.main-visual-right{
    display:none;
}

/* ========================================
   Scroll Guide
======================================== */

.scroll-guide{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.scroll-guide-line{
    width:1px;
    height:90px;
    background:rgba(0,0,0,.12);
}

.scroll-guide-text{
    writing-mode:vertical-rl;
    font-size:.72rem;
    letter-spacing:.24em;
    color:var(--sub-text-color);
}

/* ========================================
   Tablet
======================================== */

@media(min-width:768px){

    .main-visual{
        padding: 0px 0 120px;
    }

    .main-visual-content{
        grid-template-columns:1fr 380px;
        gap:60px;
    }

}

/* ========================================
   Desktop
======================================== */

@media(min-width:1100px){

    .main-visual-content{
    grid-template-columns:1fr 460px 1fr;
    }

    .main-visual-right{
        display:flex;
        justify-content:flex-end;
        align-items:flex-end;
    }

    .scroll-guide{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

    .scroll-guide-text{
        writing-mode:vertical-rl;
        color:var(--sub-text-color);
        font-size:.75rem;
        letter-spacing:.18em;
        text-transform:uppercase;
    }

    .scroll-guide-line{
        width:1px;
        height:80px;
        background:rgba(0,0,0,.15);
    }

}
/* ========================================
   Works Gallery
======================================== */

.works-gallery{
    padding:180px 0 80px;
    overflow:hidden;
}

.works-gallery-list{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.works-gallery-item{
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
}

.works-gallery-item:nth-child(even){
    flex-direction:row-reverse;
    margin-top:80px;
    margin-bottom: 100px;
}


/* ========================================
   Content
======================================== */
.works-gallery-content{
    width:50%;
    max-width:375px;
    transition:transform .45s cubic-bezier(.22,.61,.36,1);
}

.works-gallery-category{
    color:var(--mint-color);
    font-size:.8rem;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.works-gallery-title{
    margin-bottom:16px;
    font-family:"YakuHanJP_Narrow","Zen Kaku Gothic New",sans-serif;
    font-size:clamp(1.5rem,2vw,2.8rem);
    font-weight:500;
    line-height:1.3;
    transition:color .35s ease;
}

.works-gallery-text{
    color:var(--sub-text-color);
    line-height:2.1;
    font-size: .8rem;
}

.works-gallery-skill{
    margin-bottom:20px;
    color:#b5b5b5;
    font-size:.85rem;
    letter-spacing:.12em;
    font-size: .8rem;

}

.works-gallery-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    position:relative;
    width:fit-content;
    padding-bottom:8px;
    font-size:.9rem;
    font-weight:400;
    letter-spacing:.05em;
}

.works-gallery-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#8FBFCC;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .45s ease;
}

@media (hover:hover){

    .works-gallery-link:hover::after{
    transform:scaleX(1);
    }

    .works-gallery-item:has(.works-gallery-link:hover) .works-gallery-image img{
        transform:scale(1.08);
    }
    /*.works-gallery-item:hover .works-gallery-image{
        transform:translateY(-8px);
        box-shadow:0 30px 60px rgba(0,0,0,.12);
    }*/

    .works-gallery-item:hover .works-gallery-image img{
        transform:scale(1.05);
    }

    .works-gallery-item:hover .works-gallery-link{
        letter-spacing:.08em;
    }
    

}

/* ========================================
   Image
======================================== */

.works-gallery-image{
    width:40%;
    max-width:380px;
    overflow:hidden;
    border-radius:10px;
    transition:
        transform .5s cubic-bezier(.22,.61,.36,1),
        box-shadow .5s cubic-bezier(.22,.61,.36,1);
}

.works-gallery-image img{
    display:block;
    width:100%;
    aspect-ratio:5 / 5;
    object-fit:cover;
    box-shadow:0 24px 50px rgba(0,0,0,.08);
    transition:
        transform .7s cubic-bezier(.22,.61,.36,1);
}

/* ========================================
   View All
======================================== */

.works-gallery-button{
    margin-top:72px;
    text-align:center;
}

.works-gallery-button.fade-up{
    opacity:0;
    transform:translateY(40px);
}

.works-gallery-button.fade-up.is-show{
    opacity:1;
    transform:translateY(0);
}

/* ========================================
    Works Button
======================================== */

.works-button{
    display:flex;
    justify-content:center;
    transition:.4s ease-in-out;
}

.works-button-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:0;
}

/* ========================================
    Circle
======================================== */

.works-button-circle {
    position: relative;
    display: inline-block;
    width: 85px;
    height: 85px;
    vertical-align: middle;
    transition: transform .45s ease;
    will-change: transform;
}

/* 矢印アイコン */

.works-button-circle::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 28px;
    width: 30px;
    height: 24px;
    background: url(../images/btn-yazirushi.svg) no-repeat;
}

/* ========================================
    SVG Circle
======================================== */

.works-button-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 背景の円 */

.works-button-svg.works-button-bg circle {
    stroke: rgb(221, 221, 221);
}

/* アニメーション用の円 */

.works-button-svg.works-button-progress {
    z-index: 1;
}

.works-button-svg.works-button-progress circle {
    stroke: rgb(221, 221, 221);
    stroke-dasharray: 0;
    transition: stroke 0.3s;
}

/* 円共通 */

.works-button-svg circle {
    fill: transparent;
    stroke-width: 1px;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center center;
}

/* ========================================
    Button Text
======================================== */

.works-button-text{
    color:rgb(132,181,197);
    font-size:14px;
    font-weight:500;
    letter-spacing:.1em;
    margin:0;
    white-space:nowrap;
}

/* ========================================
   Works Gallery（Mobile）
======================================== */

@media (max-width:767px){

    .works-gallery{
        padding:120px 0 60px;
    }

    .works-gallery-list{
        gap:80px;
    }

    .works-gallery-item,
    .works-gallery-item:nth-child(even){
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
        margin:0;
    }

    .works-gallery-image{
        order:1;
        width:100%;
        max-width:none;
    }

    .works-gallery-content{
        order:2;
        width:100%;
        max-width:none;
    }

    .works-gallery-image img{
        width:100%;
        aspect-ratio:4 / 3;
    }
    .works-gallery-category{
        margin-bottom:10px;
        font-size:.72rem;
        letter-spacing:.16em;
    }

    .works-gallery-title{
        margin-bottom:14px;
        font-size:1.9rem;
        line-height:1.3;
    }

    .works-gallery-text{
        margin-bottom:18px;
        font-size:.9rem;
        line-height:2;
    }

    .works-gallery-skill{
        margin-bottom:22px;
        font-size:.78rem;
    }

    .works-gallery-link{
        font-size:.9rem;
    }

    .works-gallery-image{
        border-radius:18px;
    }

    .works-gallery-image img{
        box-shadow:0 20px 40px rgba(0,0,0,.08);
    }

    .works-gallery{
        padding-bottom:100px;
    }

    /*button*/
    .works-button{
        display:flex;
        justify-content:center;
        margin-top:70px;
    }

    .works-button-link{
        display:inline-flex;
        align-items:center;
        gap:10px;
        padding:0;
    }

    .works-button-text{
        width:auto;
        padding: 0;
        margin: 0;
        white-space:nowrap;
    }

}

/* ========================================
   About
======================================== */

.about{
    overflow:hidden;
    padding: 0px 0 180px;
}

.about-content{
    display:grid;
    grid-template-columns:1fr;
    gap:48px;
    align-items:center;
    margin-top:56px;
}

/* ========================================
   About Image
======================================== */

.about-image{
    position:relative;
    justify-self:center;
    width:min(100%,390px);
    overflow:visible;
}

.about-image img{
    display:block;
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow-medium);
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.04);
}

/* ========================================
   Rotate Text
======================================== */

.rotate-text{
    position:absolute;
    top:-30px;
    right:-30px;
    width:110px;
    height:110px;
    animation:rotateText 20s linear infinite;
    z-index:2;
}

.rotate-text img{
    width:100%;
    height:100%;
    display:block;
}

@keyframes rotateText{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}
/* ========================================
   About Text
======================================== */

.about-text{
    max-width:560px;
}

.about-name{
    margin-bottom:28px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.2rem,5vw,3.5rem);
    font-weight:500;
    line-height:1.1;
}

.about-message{
    margin-bottom:10px;
    line-height:1.9;
    color:var(--text-color);
}

.about-message:last-of-type{
    margin-bottom:20px;
}

/* ========================================
   Skill List
======================================== */

.about-skill-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap: 10px;
    margin-top: 20px;
}

/* ========================================
   Skill Item
======================================== */

.about-skill-item{
    padding:18px;
    border:1px solid var(--border-color);
    border-radius:24px;
    background:var(--card-color);
    box-shadow:var(--shadow-small);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.about-skill-item:hover{
    border-color:var(--mint-color);
    box-shadow:var(--shadow-medium);
}

/* ========================================
   Skill Head
======================================== */

.about-skill-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:4px;
}

.about-skill-name{
    font-family:"Cormorant Garamond",serif;
    font-size:.95rem;
    font-weight:500;
    line-height:1;
    color:var(--text-color);
}

.about-skill-percent{
    font-size:.8rem;
    font-weight:600;
    color:var(--mint-color);
}

/* ========================================
   Skill Bar
======================================== */

.about-skill-bar{
    width:100%;
    height:4px;
    border-radius:999px;
    overflow:hidden;
    background:var(--border-color);
}

/* ========================================
   Skill Fill
======================================== */

.about-skill-fill{
    display:block;
    width:0;
    height:100%;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        #b9dde3 0%,
        #cde8ed 100%
    );
    transition:width .9s cubic-bezier(.22,.61,.36,1);
}
/* ========================================
   Skill Animation
======================================== */

.about-skill-percent{
    opacity:0;
    transform:translateY(8px);
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.about-skill-percent.is-show{
    opacity:1;
    transform:translateY(0);
    color: var(--text-color);
}
/* ========================================
   Skill Width
======================================== */

.about-skill-fill.html-css.is-show{
    width:90%;
}

.about-skill-fill.javascript.is-show{
    width:75%;
}

.about-skill-fill.photoshop.is-show{
    width:90%;
}

.about-skill-fill.illustrator.is-show{
    width:75%;
}

.about-skill-fill.google-sites.is-show{
    width:70%;
}

.about-skill-fill.responsive.is-show{
    width:80%;
}

/* ========================================
   Button
======================================== */
.about-button{
    margin-top:32px;
}

/* ========================================
   Responsive
======================================== */

@media(max-width:768px){

    .about-skill-list{
        margin-top:36px;
        border-radius:20px;
        grid-template-columns:1fr;
        gap:18px;
    }

    .about-skill-item{
        padding:20px 30px;
    }

    .about-skill-head{
        margin-bottom:10px;
    }

    .about-skill-name{
        font-size:1.2rem;
    }

    .about-skill-percent{
        font-size:.92rem;
    }

    .about-skill-bar{
        height:6px;
    }

/* ========================================
    About Image（Mobile）
======================================== */

    .about-image{
        width:min(100%,300px);
        margin:0 auto;
    }

    .rotate-text{
        width: 90px;
        height: 90px;
        top: -18px;
        right: -18px;
    }
/* ========================================
   Button
======================================== */

    .about-button{
    margin-top:60px;
}
}

/* ========================================
   Tablet
======================================== */

@media(min-width:768px){

    .about-content{
        grid-template-columns: 360px 1fr;
        gap: 50px;
    }

}

/* ========================================
   Desktop
======================================== */

@media(min-width:1100px){

    .about-content{
        grid-template-columns:420px 1fr;
        gap:120px;
    }
}

/* ========================================
   Features
======================================== */

.features{
    overflow:hidden;
    padding: 0px 0 150px;
}

.features-list{
    display:grid;
    grid-template-columns:1fr;
    gap:32px;
    margin-top:72px;
}

/* ========================================
   Feature Card
======================================== */

.feature-card{
    position:relative;
    overflow:hidden;
    padding:40px 32px;
    background:var(--card-color);
    border:1px solid var(--border-color);
    border-radius:var(--radius-large);
    box-shadow:var(--shadow-small);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    }

.feature-card:hover{
    transform:translateY(-8px);
    border-color:var(--mint-color);
    box-shadow:var(--shadow-medium);
}

/* ========================================
   Number
======================================== */

.feature-number{
    display:block;
    margin-bottom:24px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(3rem,8vw,5rem);
    font-weight:600;
    line-height:1;
    color:var(--mint-light);
    transition:
        color .35s ease,
        transform .35s ease;
}

/* ========================================
   Title
======================================== */

.feature-title{
    margin-bottom:20px;
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    font-weight:600;
    line-height:1.2;
    transition:color .35s ease;
}

/* ========================================
   Text
======================================== */

.feature-text{
    color:var(--sub-text-color);
    line-height:2;
    transition:color .35s ease;
}


/* ========================================
   Hover
======================================== */

.feature-card:hover{
    transform:translateY(-8px);
    border-color:var(--mint-color);
    box-shadow:var(--shadow-medium);
}

.feature-card:hover .feature-title{
    color:var(--mint-color);
}

.feature-card:hover .feature-number{
    color:var(--mint-color);
    transform:translateY(-4px);
}

.feature-card:hover .feature-text{
    color:var(--text-color);
}

/* ========================================
   Tablet
======================================== */

@media(min-width:768px){

    .features-list{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

/* ========================================
   Desktop
======================================== */

@media(min-width:1100px){

    .features-list{
        grid-template-columns:repeat(3,1fr);
        gap:48px;
    }

    .feature-card{
        min-height:360px;
        display:flex;
        flex-direction:column;
    }

    .feature-text{
        margin-top:auto;
    }

}

/* ========================================
   Card Effect
======================================== */

.feature-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    opacity:0;
    transition:opacity .35s ease;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.18)
    );
}

.feature-card:hover::after{
    opacity:1;
}

/* ========================================
   Footer
======================================== */

.footer{
    position:relative;
    margin-top:180px;
}

/* ========================================
   Contact Area
======================================== */

.footer-contact{
    position:relative;
    overflow:visible;
    padding: 110px 0 80px;
    background:
        url("../images/footer_bg.png")
        no-repeat
        top center / cover;
}

.footer-contact::before{
    content:"";
    position:absolute;
    top:-160px;
    left:50%;
    width:1px;
    height:120px;
    z-index: 3;
    background:#37383c;
    transform:translateX(-50%);
    animation:footerLineMove 2s ease-in-out infinite;
}
/* ========================================
   Line Animation
======================================== */
@keyframes footerLineMove{
0% {
    height: 0;
    top: -160px;
    opacity: 0;
}

30% {
    height: 120px;
    opacity: 1;
}
100% {
    height: 0;
    top: 160px;
    opacity: 0;
}
}
/* ========================================
   Contact Inner
======================================== */

.footer-contact-inner{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    max-width:720px;
    margin:0 auto;
}
/* ========================================
   Thanks
======================================== */

.footer-thanks{
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    font-family: "Nothing You Could Do", cursive;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: var(--text-color);
}
/* ========================================
   Contact Title
======================================== */

.footer-contact-title{
    width:min(100%,900px);
    margin: 0 auto 30px;
}

.footer-contact-title img{
    width:100%;
    opacity:.95;
}

/* ========================================
   Message
======================================== */

.footer-message{
    margin-bottom:48px;
    color:var(--text-color);
    line-height:2;
    font-size: .8rem;
}

/* ========================================
   Button
======================================== */

.footer-button{
    display:flex;
    justify-content:center;
}

/* ========================================
   Contact Button
======================================== */

.footer-button .button{
    min-width:220px;
    padding:18px 42px;
    border:1px solid var(--text-color);
    border-radius:999px;
    background:rgba(255,255,255,.6);
    backdrop-filter:blur(8px);
    font-size:.95rem;
    letter-spacing:.12em;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        border-color .35s ease;
}

.footer-button .button:hover{
    background:var(--text-color);
    color:#ffffff;
    transform:translateY(-4px);
}

.footer-button .button::after{
    transition:transform .35s ease;
}

.footer-button .button:hover::after{
    transform:translateX(8px);
}

/* ========================================
   Footer Bottom
======================================== */

.footer-bottom{
    padding: 10px 0 10px;

}

.footer-bottom .container{
    display: flex;
    justify-content: space-between;
    margin-top:0;
}

/* ========================================
   Footer Navigation
======================================== */


.footer-nav-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:42px;
    flex-wrap:wrap;
    font-size: 0.8rem;
}

.footer-nav-list a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:currentColor;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.footer-nav-list a:hover::after{
    transform:scaleX(1);
}

.footer-copy{
    text-align:center;
    font-size: .7rem;
    letter-spacing:.15em;
    color:#8c8c8c;
}
/* ========================================
   Scroll Animation
======================================== */

.fade-up{
    opacity:0;
    transform:translateY(80px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-up.is-show{
    opacity:1;
    transform:translateY(0);
}
/* ========================================
   Header（Mobile）
======================================== */

@media (max-width:959px){

.site-header{
    top:16px;
    right:16px;
}

}

/* ========================================
   Footer（Tablet）
======================================== */

@media (max-width:959px){

    .footer-contact{
        padding:90px 0 70px;
    }

    .footer::before{
        top:50px;
        height:80px;
    }

    .footer-contact-title{
        width:min(100%,680px);
    }

    .footer-nav-list{
        gap:24px;
    }

}

/* ========================================
   Footer（Mobile）
======================================== */

@media (max-width:767px){

    .footer-contact{
        padding:70px 0 60px;
    }

    .footer-contact-title{
        width:100%;
    }

    .footer-nav{
        display:none;
    }

    .footer-copy{
        line-height:1.8;
    }

    .footer-bottom .container {
        justify-content: center;
    }

}
/* ========================================
   Footer Animation
======================================== */

.footer-contact-inner,
.footer-bottom{
    opacity:0;
    transform:translateY(50px);
    transition:
        opacity .9s ease,
        transform .9s ease;

}

.footer-contact-inner.is-show,
.footer-bottom.is-show{

    opacity:1;
    transform:translateY(0);

}
/* ========================================
   Page Top
======================================== */

.page-top{
    position:fixed;
    right:15px;
    bottom:40px;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    color:var(--text-color);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
}

.page-top.is-show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.page-top-arrow{
    position:relative;
    width:1px;
    height:50px;
    background:var(--text-color);
}

.page-top-arrow::before{
    content: "";
    position: absolute;
    top: 4px;
    left: 48%;
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--text-color);
    /* border-left: 1px solid var(--text-color); */
    transform: translateX(-50%) rotate(45deg);
}

.page-top-text{
    writing-mode:vertical-rl;
    font-size:.75rem;
    letter-spacing:.35em;
    text-transform:uppercase;
}

.page-top:hover{
    transform:translateY(-6px);
}


