@charset "UTF-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif;
	text-align: justify;
	text-justify: inter-ideograph;
	font-weight: 900;
	font-feature-settings: "palt";
}

::-webkit-scrollbar{
  width: 7.5px;
}
::-webkit-scrollbar-track{
  background: #000000;
  border: none;
}
::-webkit-scrollbar-thumb{
  background: #8f8f8f;
  box-shadow: none;
}

.wrap{
    position: relative;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
}


.pc{
    display: block;
}
.sp{
    display: none;
}

img{
    width: 100%;
	height: auto;
}

.wrapper{
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.flex{
	display: flex;
	justify-content: space-between;
}


.nav{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
}

.nav p{
    font-size: 2.4rem;
    padding: 15px;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    letter-spacing: 1px;
}

.nav ul li a{
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    padding: 5px;
    display: block;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 7.5px;
}

main{
    position: relative;
}

.top-area{
    height: 100vh;
}

.top{
    width: 110%;
    height: fit-content;
    position: fixed;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -9999;
    background-color: #ffffff;
    text-align: center;
}

.top h1{
    color: #000000;
    font-family: 'Noto serif JP', serif;
    text-align: center;
    font-size: 14.5vw;
    font-weight: 700;
    margin: 50px 0 60px 0;
}

.top p{
    text-align: center;
    font-size: 2vw;
    font-weight: 700;
    color: #000000;
}

.top .smart{
    font-size: 1.5vw;
    font-weight: 400;
    color: #727171;
}



footer{
    width: 100%;
    padding: 50px 0;
    background-color: #000000;
}

footer ul{
    width: 90%;
    max-width: 1100px;
    text-align: right;
    margin: 0 auto 30px auto;
}

footer ul li {
    width: fit-content;
    margin-left: auto;
    margin-bottom: 15px;
}

footer ul li a{
    display: block;
    background-color: #ffffff;
    color: #000000;
    padding: 3px;
}

footer small{
    display: block;
    color: #ffffff;
    font-family: 'Noto serif JP', serif;
    font-weight: 700;
    letter-spacing: 0.5rem;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 1100px;
    text-align: left;
}



@media (max-width: 500px){
    .pc{
        display: none!important;
    }
    .sp{
        display: block!important;
    }

}