*{
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1rem;
}

h2{
    font-size: 20px;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    margin-bottom: 20px;
    color:#fff;
    font-weight: 400;
}
p.normal{
    color:#fff;
    font-weight: 400;
    margin-bottom: 20px; 
}
body{
    background-color:#000;
}
.inner{
    width:100%;
    padding:0 19px;
	max-width:1080px;
    margin:0 auto;
}
.flex{
    display: flex;
    flex-wrap:wrap;
}
.flexa{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-around;
}
.flexb{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
.flexc{
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

.pc-only{
    display:block;
}
.sp-only{
    display:none !important;
}
.pc-flex{
    display: flex;
}
.sp-flex{
    display: none !important;
}
@media (min-width: 769px){
		h2{
    font-size: 24px;
    margin-bottom: 70px;
}
	.inner{
    width:1080px;
    margin:0 auto;
		padding:0;
}
}
@media (max-width: 768px){

    .pc-only{
        display:none !important;
    }
    .sp-only{
        display:block !important;
    }
    .pc-flex{
        display:none !important;
    }
    .sp-flex{
        display:flex !important;
    }
}

.btn{
    width: 295px;
    height: 40px;
    border-radius: 20px;
    border:1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
	transition:ease 0.3s;
}
button.btn{
	background:transparent;
	cursor:pointer;
}
input.btn{
	background:transparent;
	cursor:pointer;
}
.btn:hover{
	opacity:0.5;
}
.two-btn .btn{
    width:138px;
    margin:0 10px;
}
@media (min-width: 769px){
	.btn{
		height:60px;
		border-radius:60px;
	}
}