@charset "utf-8";
/* レイアウトのためのCSS */


/* heading */

.heading-block{
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    width: max-content;
}

.heading-block h1 {
    font-weight: normal;
    font-size:5rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color: #fff;
	text-align: center;
}

.dst-panel h2 {
    font-family: 'Homemade Apple', cursive;
    font-weight: normal;
    font-size:6vw;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
	text-align: center;
}

.dst-panel .dst_jp {
    font-family: 'Slackside One', cursive;
    font-weight: normal;
    font-size:4vw;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
	text-align: center;
	margin-top: -8vw;
}

.heading-block p{
    font-size:1.2vw;
    letter-spacing: 0.5em;
}


/*横幅が768px以下になった際の指定*/
@media only screen and (max-width:768px) {
.heading-block h1,
    h2{
    font-size:4em;
    line-height: 1.5;
    }
.heading-block p{
    font-size:1.5em;
    letter-spacing: 0.2em;
    }
}


.point-item-wrapper {
	display: flex;
}

@media screen and (max-width:768px) { 
.point-item-wrapper {
	display: block;
} 
}



/* point-item*/

.point-item{
    background:rgba(255,255,255,0.8);
    padding:40px;
    margin: 0 0 0 40px;
    text-align: left;
    letter-spacing: 0.03em;
	border-radius: 12px;
	width: 33.3%;
}

@media screen and (max-width:768px) { 
.point-item{
     margin:0;
    } 
}


.point-item h2{
    font-size: 1.3rem;
    margin: 0 0 40px 0;
    line-height: 1.8;
    color: #003366;
    font-family: Noto Sans Japanese;
    text-align: center;
    font-weight: bold;
}

.point-item h2 span{
    font-size: 2rem;
     display: block;
    text-transform: uppercase;
}

.point-item p{
    margin:0 0 40px 0;
}


