@charset "UTF-8";

/*共通設定*/
html{
    font-size: 62.5%;
    font-family: "HGMaruGothicMPRO";
}
.big-wrapper{
    max-width: 1080px;
    margin: 0 auto;
}
.wrapper{
    max-width: 880px;
    margin: 100px auto;
    box-sizing: border-box;
}
h1{
    font-size: 3.6rem;
    letter-spacing: 7.2px;
}
li,a,p,button,dt,dd{
    font-size: 1.6rem;
    letter-spacing: 3.2px;
}
li,a{
    color: #556473;
}
p,dt,dd{
    line-height: 32px;
    color: #fff;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.section-title-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title-flex img,
.contact-last-image{
    width: 150px;
    object-fit: contain;
}
.section-title{
    font-family: 'Tangerine', cursive;
    display: inline-block;
    color: #fff;
    font-size: 7.0rem;
    letter-spacing: 9.6px;
    text-shadow:
    1px  1px 0px #556473, -1px -1px 0px #556473,/*右下、左上*/
    -1px  1px 0px #556473, 1px -1px 0px #556473,/*右上、左下*/
     1px  0px 0px #556473, -1px  0px 0px #556473,/*下、上*/
     0px  1px 0px #556473,  0px -1px 0px #556473;  /*右、左*/
}
.sub-title{
    font-size: 2.4rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: 4.8px;
    margin: 10px auto 30px;
}
.text-content{
    width: 50%;
}
.btn-position{
    text-align: center;
}
.btn{
    font-weight: bold;
    display: inline-block;
    text-align: center;
    border: 1px solid #556473;
    border-radius: 50px;
    padding: 20px 50px;
}
.text-red{
    color: red;
}
.text-link{
    text-decoration:underline;
    color: blue;
    transition: all 0.3s;
}
.text-link:hover{
    opacity: 0.5;
}

/*ローディング画面*/
#loader-bg{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 99;
    display: none;
}
#loader-bg.active{
    display: block;
}
#loader-image{
    width: 300px;
    height: 300px;
    background: url("../img/loading-ankou.png");
    animation: stepsline 0.6s steps(4) alternate infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    z-index: 100;
    text-align: center;
}
@keyframes stepsline{
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: -1200px 0;
    }
}

/*ヘッダー*/
header{
    width: 100vw;
    height: 150px;
    padding: 50px 100px;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
}
.header-flex{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav{
    display: flex;
    align-items: center;
}
.header-nav a{
    padding: 5px 25px;
    border-left: 1px dashed #556473;
    transition: all 0.5s;
}
.header-nav a:hover{
    color: #00d5ff;
}
.header-nav .border-right-add{
    border-right: 1px dashed #556473;
}
#menu-btn{
    display: inline-block;
    width: 100px;
    height: 50px;
    font-size: 1.6rem;
    background-color: #DBEDFF;
    border: 1px solid #556473;
    border-radius: 5px;
    z-index: 15;
    display: none;
}
#close-btn{
    font-size: 2.4rem;
    display: none;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 30;
    display: none;
}


/*メイン画像*/
.main-visual{
    width: 100%;
    min-height: 400px;
    background-image: 
    url(../img/whale.png),
    linear-gradient(to bottom,  #fff 20%, #DBEDFF);
    background-position: right 10% bottom, top;
    background-size: 30%, auto;
}
.main-title{
    display: inline-block;
    position: relative;
    top: 10%;
    left: 15%;
    transform: translate(-15%,-10%);
}
.main-title h1{
    color: #556473;
    font-family: 'Tangerine', cursive;
    font-size: 15.0rem;
    letter-spacing: 2.0rem;
}
.main-title p{
    font-family: 'Tangerine', cursive;
    color: #556473;
    font-size: 5.0rem;
    text-align: center;
}


/*自己紹介*/
.about p,
.about .sub-title{
    color: #556473;
}
.about-back-image{
    background: linear-gradient(to bottom, #DBEDFF, #99ccff);
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    object-fit: contain;
    overflow: hidden;
}
.about-back{
    width: 100%;
    margin: 200px auto 100px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 50px 150px 80px;
    border-radius: 40% 60% 60% 40% / 50% 70% 50% 70%;
}
.about-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-photo-content{
    width: 50%;
    text-align: center;
}
.about-photo{
    width: 200px;
    margin: 0 auto;
    object-fit: contain;

}
.about-photo-content .text-link{
    display: inline-block;
    margin-top: 10px;
    font-size: 1.2rem;
}

/*できること*/
.skill-back-image{
    background: linear-gradient(to bottom, #99ccff,#3399ff);
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    overflow: hidden;

}
.skill-contents{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.skill-list{
    width: 30%;
}
.skill-list-image{
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 10px;
}
.skill-list img{
    width: 80%;
}
.skill dl{
    margin-top: 10px;
    text-align: center;
}
.skill dt{
    display: inline-block;
    font-size: 2.0rem;
    border-bottom: 2px dashed #DBEDFF;
    margin-bottom: 20px;
}
.skill dd{
    font-size: 1.4rem;
    text-align: left;
}

/*制作実績・作品集*/
.gallery-back-image{
    background: linear-gradient(to bottom, #3399ff, #0080ff);
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    overflow: hidden;
}
.gallery-content-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
.gallery-content{
    width: 45%;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    margin-bottom: 30px;
}
.gallery-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: 5px solid #DBEDFF;
    box-shadow: 5px 5px 10px #556473;
    margin-bottom: 10px;
}
.gallery-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.gallery-image:hover img{
    cursor: pointer;
    transform: scale(1.2,1.2);
    opacity: 0.8;
}
.gallery-btn{
    margin-top: 20px;
    background-color: #99e6ff;
    box-shadow: 0px 2px 5px #556473;
    transition: all 0.3s;
}
.gallery-btn:hover{
    background-color: #ccf2ff;
}



/*お問い合わせ*/
.contact-back-image{
    background: linear-gradient(to bottom, #0080ff, #0066cc);
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    overflow: hidden;
}
form{
    margin: 30px 0;
}
.contact-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px dashed #fff;
    padding: 14px 0;
}
.contact .text-link{
    color: lightblue;
}
label,input,select,textarea{
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 3.2px;

}
label{
    width: 22%;
}
input,select,textarea{
    width: 78%;
    border: 1px solid rgba(255,255,255,50%);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 20%);
    padding: 16px 10px;
}
textarea{
    height: 150px;
}
.border-bottom-add{
    border-bottom: 1px dashed #fff;
}
form p{
    text-align: center;
    margin: 30px 0;
}
option{
    width: 100%;
    color: #556473;
}
.confirm-btn{
    width: auto;
    background-color: #cccc00;
    color: #556473;
    box-shadow: 0 2px 5px #556473;
    transition: all 0.3s;
}
.confirm-btn:hover{
    background-color: #ffff00;
}

/*確認画面のデザイン*/
.confirm,
.conplete{
    padding-top: 150px;
}
.confirm-back-image{
    background: linear-gradient(to bottom, #0080ff, #0066cc);
    background-repeat: no-repeat;
    background-position: top;
    overflow: hidden;
}
.contact-content p{
    width: 78%;
    display: inline-block;
    padding: 16px 10px;
    text-align: left;
}
.back-btn,
.send-btn{
    width: auto;
    background-color: #cccc00;
    color: #556473;
    box-shadow: 0 2px 5px #556473;
    transition: all 0.3s;
}
.back-btn:hover,
.send-btn:hover{
    background-color: #ffff00;
}
.send-btn{
    margin-left: 10px;
}

/*完了画面*/
.conplete .text-link{
    display: inline-block;
    margin-top: 30px;
    color: lightblue;
}



/*フッター*/
footer{
    height: 170px;
    padding: 50px 0;
    text-align: center;
    background-color: #001a33;
}
footer p,
footer a{
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s;
}
footer a:hover{
    opacity: 0.7;
}
.footer-nav{
    display: flex;
    width: 323px;
    margin: 0 auto 30px;
    justify-content: space-between;
}

/*ページトップボタン*/
#page-top-link{
    display: block;
    position: fixed;
    bottom: 40px;
    right: -100px;
}
#page-top-link a{
    display: block;
    width: 100px;
    height: 100px;
    background: url(../img/while1.png) no-repeat center;
    background-size: contain;
}
#page-top-link span{
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 1rem;

}
#page-top-link.UpAnime a{
    display: block;
    width: 100px;
    height: 100px;
    background: url(../img/while2.png) no-repeat center;
    background-size: contain;
    animation: UpAnime 1s forwards;
}

/*レスポンシブ*/
@media(max-width: 1000px){
    header{
        padding: 50px 30px;
    }
    #menu-btn{
        display: block;
    }
    #header-nav{
        width: 65vw;
        height: 100vh;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        background-color: #DBEDFF;
        position: fixed;
        top: 0;
        right: -120%;
        z-index: 20;
        transition: all 0.6s;
    }
    #header-nav.open-nav{
        right: 0;
    }
    .header-nav a{
        border-left: none;
        border-bottom: 1px dashed #556473;
        padding: 10px 0;

    }
    .header-nav .border-right-add{
        border-right: none;
    }
    .header-nav{
        display: flex;
        align-items: center;
    }


}

@media(max-width: 768px){
    .wrapper{
        margin: 100px 10px 50px;
        text-align: center;
    }
    p{
        text-align: left;
    }
    .section-title-flex{
        flex-direction: column-reverse;
    }
    .section-title-flex img{
        width: 100px;
    }
    
    /*スマホ版メイン*/
    .main-visual{
        background-size: 50%, auto;
    }
    .main-title{
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }   
    

    /*スマホ版自己紹介*/
    .about-flex{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-back{
        margin: 100px auto 50px;
        padding: 25px;
    }
    .text-content,
    .about-photo-content{
        width: 100%;
    }
    .about-photo{
        margin: 20px auto 0;
    }
    .about-photo-content p{
        text-align: center;
    }

    /*スマホ版スキル*/
    .skill-contents{
        flex-direction: column;
    }
    .skill-list{
        width: 50%;
        margin: 0 auto 50px;
    }

    /*スマホ版ギャラリー*/
    .gallery-content-flex{
        flex-direction: column;
    }
    .gallery-content{
        width: 100%;
        margin-bottom: 30px;
    }
    .gallery-btn{
        margin-top: 0;
    }
    
    /*スマホ版お問い合わせ*/
    .contact-content{
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }
    label,input,select,textarea{
        width: 100%;
    }
    label{
        margin-bottom: 10px;
    }
    .contact-last-image{
        display: block;
        margin-left: 0;
    }

    footer p{
        text-align: center;
    }

}

@media(max-width: 375px){

    
    .main-title h1{
        font-size: 13.0rem;
    }
    .main-title p{
        font-size: 4.0rem;
    }
    .about-photo{
        width: 150px;
    }
    .skill-list{
        width: 100%;
    }

}
