html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,a,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	box-sizing:border-box;
	font-size:100%;
	vertical-align:baseline;
}

body{
	font-family: 'Open Sans','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Meiryo',sans-serif;
	font-size: 16px;
	line-height: 1;
	color: #333;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow: hidden;

}

html,
body{height:100%;}

ol,ul{list-style:none;}

a{text-decoration: none;}

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

a, area, button, input, label, select, textarea, [tabindex] { -ms-touch-action: manipulation; touch-action: manipulation; }

button, input, select, textarea { font-family: inherit; font-style: inherit; font-weight: inherit; color: inherit; background-color: transparent; }

button { cursor: pointer; -webkit-appearance: button; -moz-appearance: button; appearance: button; overflow: visible; }

input, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

.main-wrapper {
    display: flex;
    height: 100vh;
}

.video-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-wrapper {
    position: relative;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 img {
    width: 400px;
}

.pdf {
    margin: 50px 0 30px;
}

.pdf a,
.contact a{
    color: #333;
    display: inline-block;
    position: relative;
}

.pdf a::before,
.contact a::before,
.pdf a::after,
.contact a::after{
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.2s ease-in;
}

.pdf a::before,
.contact a::before{
    left: -17px;
}

.pdf a::after,
.contact a::after{
    left: -22px;
}

.pdf a:hover:before,
.contact a:hover:before{
    left: -15px;
}

.pdf a:hover:after,
.contact a:hover:after{
    left: -20px;
}


footer {
    position: absolute;
    bottom: 15px;
    left: 75%;
    transform: translateX(-50%);
    font-size: 12px;
}

/* メディアクエリ */
@media (max-width: 1000px) {
    .video-wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .text-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        background: rgb(255 255 255 / 90%);
        padding: 40px 30px;
    }

    footer {
        display: none;
    }
}
