@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: DotGothic16;
    src: url(../../font/DotGothic16/DotGothic16-Regular.ttf);
}

@font-face {
    font-family: Zen_Maru_Gothic;
    src: url(../../font/Zen_Maru_Gothic/ZenMaruGothic-Regular.ttf);
}

html {
    scroll-behavior: smooth;
    font-family: DotGothic16;
}

a {
    text-decoration: none;
}

body {
    background-image: url(../../images/about.bark.jpg);
    background-size: cover;
    display: block;
}

nav.NavMenu{
    position: fixed;
    z-index: 2;
    top: 10%;
    right: 0; 
    text-align: center;
    width: 50%;
    transform: translateX(100%);
    transition: 0.6s;
}

nav.NavMenu ul{
    background: #0000008e;
}

nav.NavMenu ul li{
    font-size: 2.8vw;
    list-style-type: none;  
    border: 2px solid #ffffff9f;
}


nav.NavMenu ul li a{
    display: block;
    padding: 1em 0;
    color: white;
    text-decoration: none;
}


nav.NavMenu.active{
    transform: translateX(0)
}



.Toggle {
    position: fixed;  
    right: 13px;
    top: 18px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 3;
}

.Toggle span {
    display: block;
    position: absolute;
    left: 6px;
    width: 60px;
    border-bottom: solid 6px #ffffff;
    transition: .35s ease-in-out;
	
}

.Toggle span:nth-child(1) {
    top: 9px;
}

.Toggle span:nth-child(2) {
    top: 27px;
}

.Toggle span:nth-child(3) {
    top: 45px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(45deg);
}

/* about me */

.my-nameflex {
    width: 95%;
    margin: 5% auto 0 auto;
    justify-content: space-between;
    display: flex;
}

.my-nameflex img {
    width: 40%;
    box-shadow: 10px 10px 10px gray;
}

.name-box {
    width: 50%;
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray;
    background-color: rgba(226, 226, 226, 0.822);
}

.name01 dl {
    line-height: 1.1;
    margin-top: 5%;
}

.name01 dl dt {
    font-size: 4vw;
    margin-left: 2%;

}

.name01 dl dd {
    font-size: 2.3vw;
    margin-left: 3%;
}

.name01 p {
    line-height: 3;
    font-size: 2.4vw;
    margin-top: 5%;
    margin-left: 3%;
}

.name02 {
    margin-top: 5%;
}

.name02 p {
    line-height: 1;
    font-size: 2.4vw;
    margin-left: 3%;
}

.name03 {
    margin-top: 8%;
}

.name03 p {
    width: 90%;
    line-height: 1.8;
    margin-left: 3%;
}

.certification {
    margin-top: 5%;
    margin-left: 3%;
}

.certification p {
    font-size: 1.8vw;
    line-height: 2;
}

.about02 {
    border-radius: 50px;
    margin: 10% auto ;
    background-color: rgba(255, 255, 255, 0.671);
}

.about02 h2 {
    text-align: center;
}

.skill-picture {
    display: flex;
    justify-content: space-around;
}


.skill-picture dl dd {
    text-align: center;
    font-size: 2.3vw;
}


.about03 {
    border-radius: 50px;
    margin: 10% auto ;
    background-color: rgba(255, 255, 255, 0.671);
}

.about03 h2 {
    text-align: center;
}


.about03 dl {
    font-size: 3vw;
    display: flex;
}

.about03 dl dt {
    margin: 3% 5% ;
}

.about03 dl dd {
    margin: 3% 0 ;

}

