@charset "UTF-8";

@media screen and (min-width:750px){
    .topimg{
    display: none;
    }
}

/*COMMON
-----------------------------*/

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body{         
    font-family: 'SF Mono', sans-serif;   
    font-size: 16px;   
    line-height:1.5;
    font-weight: 100;
    color: blue
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*HEADER
-----------------------------*/

.page-header {
    position: fixed;
    display: flex;
    border-radius: 30px;
    height: 48px;
    z-index: 30;
    margin-left: 12px;
    margin-top: 12px;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    background: rgba(0, 0, 255, 0.15);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    justify-content: space-between;
}

.title {
    display: flex;
    list-style: none;
    color: blue;
}

.title:hover {
    color:yellow
}

.info {
    display: flex;
    list-style: none;
    margin-left: 24px;
    color: blue;
}

.info:hover {
    color:yellow
}

.background {
    position: fixed;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;

    background: rgb(245, 245, 245); 
    background-image:
    radial-gradient(rgb(0, 0, 255) 8%, transparent 8%),
    radial-gradient(rgb(0, 0, 255) 8%, transparent 8%);
    background-size: 12px 12px;
    background-position: center;
    min-height: 100%;
    overflow: hidden;
}

.img-sp {
    display: none;
}

@media screen and (max-width:750px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}

/*work01
-----------------------------*/
main {
    position: relative;
}

.fixed_btn { 
    position: fixed;
    display: flex;
    top: 12px;
    right: 0px;
    z-index: 20;
    }

.btn {
    display: flex;
    align-items: center; 
    height: 48px; 
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 60px;
    font-size: 32px;
}

.page-top {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 255, 0.15);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

#page-top {
    position: absolute;
    top: 50%;                  
    left: 50%;                 
    transform: translateY(-50%) translateX(-50%);
  }

#page-top a {
    display: block;
    color: blue;
    line-height: 1;
    width: 12px;
    height: 12px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(-45deg);
}
  
#page-top a:hover {
    color: yellow;
}

#zoomback {

    /* 絶対位置に配置 */
    position:fixed;
    top:0;
    z-index: 20;
    
    /* 画面いっぱいに */
    width:100vw;
    height:100vh;
    
    /* 背景を少し透過 */
    background-color:rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    
    /* 中のimgを中央揃え */
    display:flex;
    justify-content:center;
    align-items:center;
    }
    
    /* 拡大画像のサイズを調整 */
    #zoomimg {
        max-height: 80%;
        max-width: 80%;
    }

#zoomback {
    display:none;
    }

.wip-image-wrap {
    display: flex;
    flex-wrap: wrap;
    padding-top: 90px;
    padding-left: 9px;
    padding-right: 9px;
    padding-bottom: 90px;
    margin:0 auto
}

.zoom {
    width: 100%;
    height: 100%;
    width: calc(100% / 3);
    padding: 3px;
}

/*FOOTER
-----------------------------*/
.page-footer {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    border-radius: 60px;
    background: rgba(0, 0, 255, 0.15); 
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.instagram {
    display: flex;
    margin-left: 15px;
    list-style: none;
    color: blue;
}

.instagram:hover {
    color:yellow
}

.mail {
    display: flex;
    margin-left: 24px;
    margin-right: 24px;
    list-style: none;
    color: blue;
}

.mail:hover {
    color:yellow
}

.c {
    color: blue;
    padding-right: 15px;
}

footer {
    position: fixed;
    left: 6px;
    bottom: 6px
}