 /*ナビゲーションバー*/
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wrapper {
    overflow: hidden;
  }
  

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #ffffff;
}

.nav-links :hover{
    color: #039be5;

}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 80%;
    transition: all 0.5s ease-in-out;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: black;
    font-weight: bold;
   
}

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 5px;
    transition: all 0.5s ease-in-out;
}

.nav-active{
    transform: translateX(0%) !important;
}



@media screen and (max-width: 950px) {
    
    body{
        overflow-x: hidden;
    }
    
   .nav-links{
       position: absolute;
       z-index: 20;
       right: 0;
       height: 92vh;
       top: 8vh;
       background-color: #ffffff;
       flex-direction: column;
       align-items: center;
       width: 30%;
       transform: translateX(100%);
    }
    .nav-links li{
        opacity: 0;
    }

    .burger{
        display: block;
    }
}

@keyframes navLinksFade{
    0%{
        opacity: 0;
        transform: translateX(50px);
    }
    100%{
         opacity: 1;
    }

}

.toggle .line1{
    transform: rotate(-405deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px);
} 

.overview{
    background-color: #fff;
    padding-left: 200px;
    font-size:20px ;
}

.overview p{
   line-height: 30px;
    padding-left: 50px;

}

.profile p{
    margin-top: 20px;
    line-height: 30px;
     padding-left: 50px;
     padding-right: 200px;
     font-size:20px
 }

.overview p u{
    line-height: 50px;
    font-size: 20px;
}
@media only screen and (max-width: 880px) {
.overview{
    text-align: left;
    padding-left: 50px;
}    
}

 /* ボタン全体 */
 /***トップへ戻るボタン***/
#page-top {
    display: block;
    font-weight: bold;
    padding: .7em;
    text-align: center;
    background: #fff; /*背景色*/
    color: #666; /*文字色*/
    transition: .3s;
}
/***マウスオーバー時***/
#page-top:hover {
    background: #666; /*背景色*/
    color: #fff; /*文字色*/
}
 
 /*フッター*/

  .footer07 {
    color: #808080;
    background: #e5e5e5;
    padding: 30px;
   }
   .footer07 a {
    color: #808080;
    text-decoration: none;
   }
   .footer07 li a:hover {
    text-decoration: underline;
   }
   .footer07 .wrap {
    width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   }
   .footer07 .wrap h3 {
    margin: 0 0 10px 0;
    padding: 0;
    border-bottom: 1px #c4c4c4 solid;
   }
   .footer07 .wrap p {
    margin: 0;
    padding: 0 0 20px 0;
   }
   .footer07 .wrap .box:first-child {
    width: 30%;
   }
   .footer07 .wrap .box:nth-child(2) {
    width: 65%;
   }
   .footer07 .wrap .box ul {
    margin: 0;
    padding: 0 0 20px 0;
    list-style: none;
   }
   .footer07 .wrap .copyright {
    width: 100%;
    padding: 20px 0 0 0;
   }
   
   @media only screen and (max-width: 880px) {
   .footer07 .wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
   }
   .footer07 .wrap h3 {
    border: none;
   }
   .footer07 .wrap .box:first-child,
   .footer07 .wrap .box:nth-child(2) {
    width: 100%;
   }
   .footer07 .wrap .box ul {
    border-top: 1px #c4c4c4 solid;
   }
   .footer07 .wrap .box ul li a {
    display: block;
    padding: 5px 15px;
    border-bottom: 1px #c4c4c4 solid;
   }
   }

  .head-border {
    display: flex;
    align-items: center;
}

.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
   
   