 /*ナビゲーションバー*/
 * {
    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{
    display: flex;
    justify-content: space-around;
    width: 80%;
    transition: all 0.5s ease-in-out;
}

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

}

.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);
} 

/*質問*/

#QandA-1 {
    
	background-color: #e5e5e5;;
    margin:  0 auto; 
    height: auto; 
    width: 90%;
	font-size: 20px; /*全体のフォントサイズ*/
    margin-bottom: 100px;
}
#QandA-1 dt { 
	color: #000000; /* 「Q」タイトルの文字色 */
	padding: 8px;
	border-radius: 2px;
}
#QandA-1 dt:before {
	content: "Q.";
	font-weight: bold;
	margin-right: 8px;
}
#QandA-1 dd {
    background-color: white;
	margin: 24px 16px 40px 32px;
	line-height: 140%;
	text-indent: -24px;
}
#QandA-1 dd:before {
	content: "A.";
    color: black;
	font-weight: bold;
	margin-right: 8px;
}

#request {
    position: fixed;
    width:170px;
    height: 80px;
    text-align: center;
    font-size: 20px;
    bottom: 30px;
    right: 20px;
    background-color: #77787a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
}
#request:hover {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #039be5;
    color: white;
    opacity: 0.6;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

 /* ボタン全体 */
 /***トップへ戻るボタン***/
#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;
   }
   }