@charset "utf-8";
html{
    scroll-behavior: smooth;
}
body{
    font-size: 15px;
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif,"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
/* 
共通 
*/
.container{
    width: 90%;
    margin: 0 auto;
}

/* 
header 
*/
.header-list{
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
.header-title{
    margin-right: auto;
    padding: 10px 10px 10px 30px;
}
.header-title a{
    text-decoration: none;
    color: #333333;
    font-family: 'Amatic SC', cursive;
    font-size: 20px;
    font-weight: bold;
}
.sns-item{
    margin: 15px;
}
.sns-item-1{
    text-decoration: none;
    color: #333333;
    opacity: 0.7;
    transition: 0.5s;
}
.sns-item-1:hover{
    opacity: 1.0;
}
.fa-brands{}
.nav{}
.nav-list{
    display: flex;
    justify-content: right;
    list-style: none;
}
.nav-item{
    margin: 10px 10px 10px 30px;
}
.nav-item-1{
    text-decoration: none;
    color: #333333;
    opacity: 0.7;
    transition: 0.5s;
}
.nav-item-1:hover{
    opacity: 1.0;
    text-decoration: underline;
}

/* 
main-visual 
*/
.main-visual{
    position: relative;
}
.main-visual img{
    width: 100%;
}
.main-visual-text1,.main-visual-text2{
    text-decoration: none;
    color: #333333;
    font-family: 'Amatic SC', cursive;
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 100%;
}

/* 
about 
*/
.title{
    font-size: 25px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.about-description{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.about-img{
    width: 25%;
    border-radius: 50%;
}
.about-wrapper-text{
    width: 50%;
    height: auto;
    margin-left: 40px;
}
.about-text{
    padding-top: 20px;
}

/* 
skills 
*/
.grid{
    display: flex;
} 
.grid-col-2 > .grid-list{
    width: 40%;
}
.grid-list{
    list-style: none;
    margin: 0 auto;
    text-align: center;
}
.skills-dl{}
.skills-dl dd{
    margin-bottom: 20px;
}
.sub-title{
    font-size: 20px;
    margin-bottom: 20px;
}
.sub-img{
    margin-bottom: 20px;
    border-radius: 20%;
}
.sub-text{
    text-align: left;
}

/* 
works 
*/
.works-text{
    text-align: center;
}
.works-list{
    margin: 0 auto;
    text-align: center;
}
.works-item{
    display: inline-block;
    width: 400px;
    height: 170px;
    border: solid 1px #d3d3d3;
    border-radius: 1%;
    margin: 20px;
    overflow: hidden;
}
.works-item > a > img{
    width: 100%;
    height: 100%;
    border-radius: 1%;
    transition: all 0.5s;
}
.works-item > a > img:hover{
    transform: scale(1.05);
}

/* 
contact 
*/
.contact-container .header-list{
    justify-content: center;
    margin: 20px;
}
.contact-container .sns-item{
    justify-content: center;
    margin: 20px;
}

/* 
footer 
*/
.footer-text{
    text-align: right;
}