@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    color: rgb(62, 62, 62);
}

.pop {
    font-family: "Shippori Mincho B1", serif;
    letter-spacing: 0.05em;
    font-size: 24px;
    text-align: center;
}

#wrapper {
    width: 1300px;
    background-color: #fff;
    margin: 0 auto;
    align-items: center;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 2;
}

main {
    align-items: center;
}

nav ul {
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: #aeadad 1px solid;
}

nav ul li a {
    display: block;
    transition: .2s;
}

nav ul a:hover {
transition: .2s;
opacity: .7;
}

#works {
    align-items: center;
    text-align: center;
}

#works p {
    text-align: left;
    margin: 10px;
    
} 

#works a {
    display: block;
    margin: auto 0;
}

#works span {
    border: #aeadad 1px solid;
    padding: 0.5em 1em;
    border-radius: 20px;
    margin-right: 5px;
}

#works .span {
    /* border-bottom: #aeadad 1px solid; */
    border-top: #aeadad 1px solid;
    padding: 10px 0;
    font-size: 13px;
}

#skill span {
    border: #aeadad 1px solid;
    padding: 0.5em 1em;
    border-radius: 20px;
    margin-right: 5px;
}

/* セクションの枠組み */
.left {
    width: 50%;
    padding-left: 30px;
    /* padding-right: 30px; */
    margin: auto;
}

.right {
    width: 50%;
    margin: auto;
}

.flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-bottom: #aeadad 1px solid;
    padding: 50px 0;

}

#aboutme {
    margin-top: 50px;
}

.left_me {
    width: 60%;
    padding-left: 10px;
}

.right_me {
    width: 40%;
    margin: auto;
}

.about {
    margin-bottom: 50px;
    background-color: rgb(255, 255, 255,0.8);
}

.name {
    font-size: 18px;
}


.skill {
    text-align: left;
    padding-bottom: 20px;
}

#MyValues .seizitsu {
    border-top: #aeadad 1px solid;
    border-bottom: #aeadad 1px solid;
    padding: 10px 0 20px 0;
    margin: 20px 0;

}


/* WEBサイト、LP、バナーなどタイトル */
main .title {
    font-size: 20px;
    margin-bottom: 20px;
}
/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 30px;
    bottom: 40px;
    height: 50px;
    text-decoration: none;
    font-weight: medium;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

/* 下からふわっと */
.box {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s;
    transform: translateY(150px);
}

.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* プロフ写真ふわっと */
.fa-moon {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fa-moon.animate {
    opacity: 1;
}
