@charset "utf-8";
/* レイアウト */

@media screen and (max-width:640px) {
	.pc {
		display: none;
	}
}
@media screen and (min-width:641px) {
	.sp {
		display: none;
	}
}

*{
    box-sizing: border-box
}

body{
    background:fff;
    font-family: 'Noto Serif JP', serif;
	color: #555;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
    letter-spacing: 0.2em;
}

#container{
	width: 100%;
	position: relative;
	overflow: hidden;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #555;
	text-decoration: none;
    outline: none;
}

img{
    width:100%;
    height: auto;
    vertical-align: top;
}

h2,
h3,
p{
	text-align: center;
}


p {
	font-size: 1rem;
}

/*動画*/

video{
    position: relative;
    display: block;
    width: 50vw;
    height: 50vh;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (max-width:640px) {
    video{
        position: relative;
        display: block;
        width: 100%;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }
}




