@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-color: #202020;
    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: 60px;
    height: 60px;
    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);
}


#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 3vw;
}
#page-top a {
    display: block;
    width: 80px;
    height: 80px;
    line-height: 5;
    text-align: center;
    background: #666;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
}
#page-top a:hover {
    opacity: 0.5;
}



/* メイン */

main {
    color: white;
}

/* btn */
.category {
    width: 90%;
    margin: 1% auto ;
    
    box-shadow: 0 0 0 2px #000000;
}

.category p {
    height: 150px;
    padding: 1%;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 4vw;
    color: white;
    background-color: black;
}


.choice {
    width: 30%;
    height: 90px;
    margin: -10% 0 0 60%;
    box-shadow: 0 0 0 2px #000000;
    border: 1px solid white;
    border-radius: 4px;
    background-color: #000000;
    z-index: 10;
}

.yes-no-btn01 a {
    color: white;
    font-size: 4vw;
}

.arrow01 {
    display: inline-block;
    width: 1em;
    font-size: 3vw;
    margin-left: 0.5em;
}

.yes-no-btn01:hover .arrow01::before {
    content: '▶';
}

.yes-no-btn02 a {
    color: white;
    font-size: 4vw;
}


.arrow02 {
    display: inline-block;
    width: 1em;
    font-size: 3vw;
    margin-left: 0.5em;
}

.yes-no-btn02:hover .arrow02::before {
    content: '▶';
}

.yes-no-btn03 a {
    color: white;
    font-size: 4vw;
}

.arrow03 {
    display: inline-block;
    width: 1em;
    font-size: 3vw;
    margin-left: 0.5em;
}

.yes-no-btn03:hover .arrow03::before {
    content: '▶';
}



.sticky-05 {
    position: sticky;
    top: 0; 
    left: 0;
    z-index: 100;

    width: 45%;
    margin-left: 5%;
    box-shadow: 0 0 0 2px #000000;
}

.category-05 {
    height: auto;
    padding: 2%;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    background-color: black;
}

.category-05 h2 {
    font-size: 3.5vw;
    line-height: 2;
}

.category-05 a {
    letter-spacing: 0.5em;
    font-size: 5vw;
    color: white;
}


.category-05 a.active {
    color: #ff0;
    text-shadow: 0 0 10px #ff0;
}



/* web制作物 */

.website {
    margin-top: 10%;

}

.picture01 {
    text-align: center;
}

.picture01 img {
    width: 100%;
}

.website-box {
    margin-top: 5%;
    padding-bottom: 20%;
}


table {
    width: 100%;
    line-height: 3;
    margin: 2% auto;
    color: white;
    background-color: #000000;
}

table th {
    width: 20%;
    text-align: left;
}

.dl-box dl {
    margin: 4% 0 ;
    display: flex;
    justify-content: center;
}

.dl-box dl dt {
    text-align: right;
    font-size: 3.5vw;
    
}

.dl-box dl dd {
    width: 60%;
    margin-left: 5%;
}
