
/*
VARIANT
============================================ */
:root {
    --white: #ffffffdf; 
    --semiwhite: #ffffffb6;
    --black: #000000;
    --semiblack: #111212bf;
    --gray: #333333;
    --pink: #de5a79b1;
}

/*
GENERAL STYLING
============================================ */
body {
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family:'メイリオ', 'Meiryo','MS ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

h1, h2 {
    display: none;
}

p {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 2px;
    overflow-wrap: break-word;
}

li {
    list-style: none;
    color: var(--white);
}

a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
}

a:hover {
    text-decoration: underline var(--white);
    text-decoration-style: double;
    text-underline-offset: 5px;
}

/*
LOADING
============================================ */
#loading {
    background-color: var(--black);
    position: fixed;
    display: grid;
    inset: 0;
    z-index: 9999;
    place-items: center;
}

/*
#loading-screen {
    background-color: var(--white);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: -100vw 0;
}*/

#loading img {
    width: 20vw;
    height: auto;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*
HEADER
============================================ */

#grid {
    display: grid;
    justify-items: center;
}

#header {
    display: flex;
    width: 100%;
    height: 167px;
}

#title {
    display: block;
    position: fixed;
    width: 80%;
    background-image: url(../images/title_sp.png);
    height: 97px;
    margin: 42px 35px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
}

#g-nav {
    width: 100vw;
    height: auto;
    position: relative;
    top:0
}

.menu {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100vh;
    background-color: var(--semiwhite);
    transition: .5s ease;
    translate: -100vw 0;
    margin-top: 167px;
    z-index: 999;
}

#g-nav ul {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    padding: 10px 50px 50px 50px;
}

#g-nav li {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
    padding: 30px 0px;
    border-bottom: solid 1px var(--black);
}

#g-nav img {
    width: 40px;
}

#g-nav a {
    color: var(--gray);
    font-size: 2em;
}

/*
HUMBERGER MENU
============================================ */
.menu.open {
    translate: 0 0;
}

.Toggle {
    display: block;
    position: fixed;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 999;
    top: 35px;
    right: 35px;
    border: solid 2px var(--white);
    border-radius: 25px;
}
.Toggle span {
    display: block;
    position: absolute;
    width: 70px;
    right: 10px;
    border-bottom: solid 2px var(--white);
    transition: .30s ease-in-out;
}
.Toggle span:nth-child(1) {
    top: 23px;
}  
.Toggle span:nth-child(2) {
    top: 43px;
}
.Toggle span:nth-child(3) {
    top: 63px;
}
   
.Toggle.active span:nth-child(1) {
    top: 45px;
    transform: rotate(-45deg);
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 45px;
    transform: rotate(45deg);
}

/*
SCROLLDOWN PATH 
============================================ */
.scrolldown{
	position:absolute;
	left: 10%;
	bottom: 5%;
	height: 70px;
}

.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
    width: 1.5px;
	height: 50px;
	background: var(--black);
	animation: pathmove 1.5s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:70px;
		opacity: 0;
	}
}

/*
MAIN
============================================ */
#main-backimg {
    display: block;
    background-image: url(../images/background_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: -9999;
}

main {
    width: 100vw;
}

section {
    margin: 150px 5%;
    background-color: var(--semiblack);
    padding: 200px 2% 200px; 
    border-radius: 0px 45px 45px 45px;
    position: relative;
}

/*
SECTION01 - PLOFILE
============================================ */
#sec01 {
    margin-top: 2000px;
}

#profile img {
    position: absolute;
    top: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 400px;
    height: auto;
} 

.prf-img {
    display: block;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 50%;
}

.text-conteiner {
    padding: 50px 0;
}

.text-conteiner li {
    border-left: solid;
    text-shadow: 0px 1px 0px var(--semiblack);
    text-indent: -1em;
    padding-left: 25px;
}

.text-conteiner strong, 
.text-conteiner span {
    font-size: 1.8em;
    letter-spacing: 0.1em;
    color: var(--white);
    font-weight: bold;
    padding: 30px 5px 30px 15px;
}

.text-conteiner p {
    margin: 25px 24px 65px;
    padding: 0;
    font-size: 1.2em;
    line-height: 160%;
}

.text-conteiner a {
    text-decoration: underline;
    font-size: 0.9em;
    vertical-align: baseline;
}

.career-table {
    width: 100%;
    margin: 20px 0px 40px 12px;
    padding: 0;
    border-collapse: separate;
    border-spacing: 15px 10px;
}

.career-table td {
    color: var(--white);
    text-align: left;
    vertical-align: top;
    font-size: 1.9em;
    padding: 0;
    margin: 0;
    white-space: wrap;
}

.skill-icon {
    display: flex;
    gap: 2%;
    padding: 15px 15px 0px 15px;
    margin: 15px 10px 0px 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.skill-icon img {
    width: 75px;
    height: 75px;
}

/*
SECTION02 - DESIGN PORTFOLIO
============================================ */
#designportfolio img {
    position: absolute;
    top: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 100%;
    height: auto;
} 

.design-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
}

.box {
    width: 552px;
    height: auto;
}

.box img {
    width: 552px;
    height: auto;
    margin: 10px 0;
    border-radius: 10px;
}

.box a {
    margin: 5px;
    font-size: 1.5em;
    padding: 5px;
}

.box p {
    margin: 0;
}

.date {
    margin-bottom: 0;
}

.date time {
    padding-left: 5px;
    font-size: 1.5em;
}

/*
SECTION03 - WORKS
============================================ */
#works img {
    position: absolute;
    top: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 400px;
    height: auto;
}

.loop {
    display: flex;
    overflow: hidden;
    margin-top: 100px;
}

.loop_box {
    display: flex;
    margin: 0;
    padding: 0;
    animation: loop-list 50s linear infinite;
}

.loop_item {
    width: calc(100vw / 2);
    display: block;
}

.loop_item img {
    width: 100%;
}

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

.works-box {
    display: flex;
    gap: 5%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 150px auto;
}

.works-btn {
	border: 2px solid var(--white);
    border-radius: 45px;
    text-align: center;
    white-space: nowrap;
}

.works-btn:hover {
    background-color: var(--pink);
    border: 2px solid var(--semiblack);
}

.works-btn p {
    margin: 5px 20px;
    font-size: 1rem;
}

/*
SECTION04 - ONLINE STORE
============================================ */
#onlinestore img {
    position: absolute;
    top: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 700px;
    height: auto;
} 

.store-conteiner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 100px 0px;
}

.suzuri-widget-product {
    width: 300px;
    text-align: center;
}

.suzuri-widget-product img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.suzuri-widget-product-wrap
.suzuri-widget-product-info p {
    text-align: left;
    color: var(--white) !important;
    margin: 0 auto !important;
    font-size: 1.6em !important;
}

.store-box {
    margin: 150px auto;
    width: fit-content;
    border: 2px solid var(--white);
    border-radius: 45px;
}

.store-box:hover {
    background-color: var(--pink);
    border: 2px solid var(--semiblack);
}

.store-btn p {
    margin: 5px 20px;
    font-size: 1rem;
}

/*
SECTION05 - CONTACT
============================================ */
#contact img {
    position: absolute;
    top: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 500px;
    height: auto;
} 

form {
    width: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 15px;
    margin: 0 auto;
    padding: 100px 0;
}

.form-input {
    resize: vertical;
    width: 100%;
    background: var(--semiwhite);
    border: 2px solid #ffffffdc;
    border-radius: 10px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 15px;
}

.form-textarea {
    height: 250px;
    resize: vertical;
    width: 100%;
    background: var(--semiwhite);
    border: 2px solid var(--white);
    border-radius: 10px;
    font-size: 2em;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 15px;
}

.contact-btn {
	display: inline-block;
	vertical-align: middle;
	margin: 80px auto;
	padding: 7px 40px;
	color: var(--white);
	text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2.5px;
	background-color: transparent;
	border: 2px solid var(--white);
    border-radius: 40px;
	cursor: pointer;
}

.contact-btn:hover {
    background-color: var(--pink);
    border: 2px solid var(--semiblack);
}

.contact-btn p {
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

/*
FOOTER
============================================ */
#footer {
    margin: 150px 5% -20px;
    background-color: var(--semiblack);
    padding: 100px 5% 0; 
    border-radius: 45px 45px 0 0;
}

.footer-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
    gap: 5%;
    padding-left: 5px;
}

.footnav-child {
    padding: 0;
}

.footnav-child a {
    color: var(--semiwhite);
    text-align: center;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.footnav-child p {
    margin: 0;
    padding: 0;
}

.sns-btn {
    display: flex;
    gap: 10px;
}

.sns-btn img {
    width: 45px;
    margin: 5px;
}

.footer-copy {
    color: var(--semiwhite);
    text-align: center;
    padding: 5px;
    margin-top: 25px;
}

/* 
=======================================================================
DESIGN PORTFOLIOページのCSS
======================================================================= */
#design-portfolio {
    margin: 0;
    padding: 300px 5%; 
    background-color: transparent;
    border-radius: 0;
}

.design-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.design-title img {
    width: 419px;
    height: auto;
    padding-right: 15px;
}

.design-title p {
    font-size: 1rem;
    margin: 0;
    padding: 0 10px;
}

.footwear-top {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.icon-top {
    width: 300px;
    height: auto;
    padding: 80px 25% 50px;
}

.banner-top {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}

.web-top {
    width: 800px;
    height: auto;
    padding: 0;
}

.portfolio-top {
    width: 800px;
    height: auto;
    padding: 0;
}

.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 250px auto 0;
}

.Pagination a:hover {
    text-decoration: none;
}

.Pagination-Item-Link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 50px;
    height: 50px;
    background: transparent;
    font-size: .8rem;
    color: var(--semiwhite);
    font-weight: bold;
    transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
    width: 20px;
}

.Pagination-Item-Link.isActive {
    background: var(--pink);
    color: var(--semiwhite);
    pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
    background: transparent;
    color: var(--semiwhite);
}

/* 
=======================================================================
WORKSページのCSS
======================================================================= */
#main {
    background-color: var(--semiblack);
    margin: -200px;
}

#works-photo, #works-artwork, #works-music {
    margin: 100px auto;
    padding: 200px 5% 0; 
    background-color: transparent;
    border-radius: 0;

}

.works-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-bottom: 25px;
}

.works-title img {
    width: 155px;
    height: auto;
}

.works-title p {
    font-size: 2em;
    margin: 0;
    padding: 0 10px;
}

.gallery {
    columns: 3;
    padding:0 15px;
}
    
.gallery li {
    margin-bottom: 20px;
}
    
.gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;
}
    
.gallery ul {
    margin:0;
    padding: 0;
}
    
a:hover,a:active {
    text-decoration: none;
}
    
.gallery p {
    margin:0 10px 10px 10px;
}

.music-conteiner {
    display: flex;
    padding: 50px 0 1100px 0;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}


/*
=======================================================================
for PC 
======================================================================= */
@media screen and (min-width:1000px) {

    /*
    GENERAL STYLING
    ============================================ */
    #title {
        background-image: url(../images/title_pc.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: fixed;
        width: 245px;
        height: 150px;
        top: 80px;
        left: 101px;
    }
    
    #main-backimg {
        background-image: url(../images/background_pc.png);
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        width: 100vw;
        height: 100vh;
    }

    main {
        width: 100%;
    }
    
    #grid {
        grid-template-columns: 1fr 2fr;
        justify-content: end;
        gap: 10px;
        margin:0;
        padding: 0;
    }
    
    section {
        max-width: 50vw;
        margin: 100px 50px;
        padding: 150px 45px;
    }
    
    /*
    HEADER
    ============================================ */
    #header {
        width: auto;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .menu {
        position: fixed;
        text-align:right;
        background-color: transparent;
        transition: none;
        translate: 0;
        border-radius: 0 25px 25px;
        height: 318px;
        width: 258px;
    }
    
    #g-nav {
        width: auto;
        top: 137px;
        right: 125px;
    }
    
    #g-nav ul {
        width: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 35px;
        margin-top: -10px;
    }
    
    #g-nav li {
        display: flex;
        width: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 15px 10px;
        border-bottom: none;
        border-radius: 15px;
    }
    
    #g-nav li:hover {
        box-shadow: 0 3px 6px 0 var(--gray);
        transform: translateY(-0.1875em);
    }
    
    #g-nav img {
        width: 20px;
    }
    
    #g-nav a {
        color: var(--semiblack);
        text-shadow: 0.2px 0.2px 15px var(--semiwhite);
        font-size: .8rem;
    }
    
    .Toggle {
        display: none;
    }
    
    .scrolldown{
        left: 40%;
        bottom: 0;
        height: 70px;
    }
    
    /*
    SECTION01 - PLOFILE
    ============================================ */
    #sec01 {
        margin-top: 1000px;
    }
    
    #profile img {
        width: 250px;
    } 
    
    .prf-container {
        width: fit-content;
        margin-top: 0;
    }
    
    .prf-img {
        margin: 0 5%;
        width: 150px;
        height: 150px;
    }
    
    .text-conteiner {
        padding: 27px 0;
    }

    .text-conteiner p {
        font-size: .9rem;
        white-space: wrap;
        line-height: 2rem;
    }
    
    .text-conteiner a {
        text-decoration: underline;
        font-size: .7rem;
    }
    
    .career-table {
        margin: 20px 0 60px 12px;
        padding-right: 0;
    }
    
    .career-table td {
        font-size: .9rem;
        white-space: wrap;
        border-spacing: 12px 20px;
    }
    
    .skill-icon img {
        width: 40px;
        height: 41px;
    
    }
    /*
    SECTION02 - DESIGN PORTFOLIO
    ============================================ */
    #designportfolio img {
        width: 500px;
        top: 0px;
        left: -34px;
    } 
    
    .design-container {
        width: 100%;
        margin: 0 auto 100px;
    }
    
    .box {
        width: auto;
    }
    
    .box img {
        width: 450px;
    }
    
    .box a {
        margin: 5px;
        font-size: .9rem;
        padding: 5px;
    }
    
    .date time {
        padding-left: 5px;
        font-size: .9rem;
    }
    
    #works img {
        left: -31px;
        width: 240px;
    }
    
    .loop_item {
        width: 100%;
    }
    
    .loop_item img {
        width: 500px;
        height: auto;
    }
    
    /*
    SECTION04 - ONLINE STORE
    ============================================ */
    #onlinestore img {
        left: -30px;
        width: 420px;
    }
    
    .store-conteiner {
        width: 100%;
        margin: 0 auto;
    }
    
    .suzuri-widget-product {
        width: auto;
        text-align: center;
    }
    
    .suzuri-widget-product img {
        width: 200px;
        height: 200px;
        border-radius: 10px;
    }
    
    /*
    SECTION05 - CONTACT
    ============================================ */
    #contact img {
        top: -20px;
        left: -27px;
        width: 290px;
    }
    
    form {
        width: 70%;
    }
    
    .form-input {
        font-size: 1.2em;
    }
    
    .form-textarea {
        font-size: 1.4em;
    }
    
    #footer-a {
        margin-left: 47px;
        width: 50vw;
        padding: 60px 50px 0;
        border-radius: 0 25px 0 0;
    }
    
    .footnav-child {
        display: block;
        padding: 0;
    }
    
    .footnav-child a {
        color: var(--semiwhite);
        text-align: center;
        padding: 0;
        margin: 0;
    }
    
    .sns-btn img {
        width: 35px;
        margin: 5px 0;
    }
    
    /* 
    =======================================================================
    DESIGN PORTFOLIOページのCSS
    ======================================================================= */
   #design-portfolio {
        margin: 300px 10% 100px;
        padding: 70px 2%;
    }
    
    .Pagination-Item-Link {
        font-size: 1em;
    }
    
    /* 
    =======================================================================
    WORKSページのCSS
    ======================================================================= */
    .gallery {
        columns: 4;
    }
    
}