@charset "UTF-8";
body {
    background-color: rgb(247, 247, 247);
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-family: 'Roboto','Slab','Sawarabi','Mincho';
    text-transform: uppercase;
    width: 100vw;
}
main {
    padding: 0 4%;
}
p {
    text-decoration: none;
}
a {
    color: rgb(247, 247, 247);
    text-decoration: none;
}
a:hover {
    opacity: 50%;
}
#header {
    background-image: url(../images/fv-image.jpg);
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}
.header {
    display: none;
}
.header-nav {
    background-color: rgb(0, 0, 0);
    padding: 2% 5%;
    position: fixed;
    width: 100%;
}
.nav-list {
    display: flex;
    justify-content: space-around;
    width: 50%;
}
.header-title {
    color: rgb(247, 247, 247);
    text-shadow: 2px 1px rgba(0, 0, 0, .5);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.site-title {
    font-family: 'Slab';
    font-size: 4rem;
    line-height: 1em;
    margin: 1rem auto;
    text-align: center;
}
.site-title span {
    font-size: 3rem;
}
.header-title p {
    font-size: 1.5rem;
    text-align: center;
}
.section-title {
    border-bottom: 5px solid rgb(0, 0, 0);
    font-family: 'Slab';
    font-size: 2rem;
    margin: 5rem auto;
    padding-bottom: 3rem;
    text-align: center;
    width: 100%;
}
#about, #gallery, #blog, #contact {
    margin: 10rem auto;
    width: 90%;
}
.profile-container,
.skill-container {
    margin: 0 auto;
    padding: 5rem 0;
    text-align: center;
    width: 80%;
}
.profile-container h3,
.skill-container h3 {
    font-size: 1.5rem;
    padding-bottom: 3rem;
}
.profile-list, .skill-list {
    font-size: 1.25rem;
    text-transform: none;
    margin: 5rem auto;
    width: 80%;
}
dl{
    display:flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
}
dt{
    background-color: rgb(0, 0, 0);
    color: rgb(247, 247, 247);
    width: 30%;
    padding: 10px 0;
    box-sizing: border-box;
    border: 1px solid rgb(247, 247, 247); 
}
dd{
    padding: 10px 0;
    border: 1px solid rgb(0, 0, 0);
    margin: 0;
    width: 70%;
    box-sizing: border-box;
}
#gallery p,
#blog p,
#contact p {
    font-size: 1.25rem;
    line-height: 2em;
    text-transform: none;
    margin: 10rem auto;
    text-align: center;
}
#gallery a,
#blog a,
#contact a {
    background-color: rgb(0, 0, 0);
    border-radius: .5em;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 1em 2em;
    width: fit-content;
}
footer {
    background-color: rgb(0, 0, 0);
    color: rgb(247, 247, 247);
    text-align: center;
}
@media screen and (max-width: 800px){
    .header-nav {
        display: none;
    }
    body {
        font-size: 16px;
        margin: 0;
      }
      
      /*ハンバーガーメニュー*/
      
      .profile-list, .skill-list {
        font-size: 1rem;
        width: 100%;
      }
      #gallery p,
      #blog p,
      #contact p {
        font-size: 1rem;
      }
}